mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-07 13:32:35 +02:00
fix(translations): convert all keys to pascal case
This commit is contained in:
parent
190c4cd8bb
commit
d3af1cc0cb
39 changed files with 2904 additions and 4086 deletions
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<h4>{{ $t("Certificate Info") }}</h4>
|
<h4>{{ $t("CertificateInfo") }}</h4>
|
||||||
{{ $t("Certificate Chain") }}:
|
{{ $t("Certificate Chain") }}:
|
||||||
<div
|
<div
|
||||||
v-if="valid"
|
v-if="valid"
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
<input id="remember" v-model="$root.remember" type="checkbox" value="remember-me" class="form-check-input">
|
<input id="remember" v-model="$root.remember" type="checkbox" value="remember-me" class="form-check-input">
|
||||||
|
|
||||||
<label class="form-check-label" for="remember">
|
<label class="form-check-label" for="remember">
|
||||||
{{ $t("Remember me") }}
|
{{ $t("RememberMe") }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="monitor-list" :class="{ scrollbar: scrollbar }">
|
<div class="monitor-list" :class="{ scrollbar: scrollbar }">
|
||||||
<div v-if="Object.keys($root.monitorList).length === 0" class="text-center mt-3">
|
<div v-if="Object.keys($root.monitorList).length === 0" class="text-center mt-3">
|
||||||
{{ $t("No Monitors, please") }} <router-link to="/add">{{ $t("add one") }}</router-link>
|
{{ $t("NoMonitorsPlease") }} <router-link to="/add">{{ $t("AddOne") }}</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<router-link v-for="(item, index) in sortedMonitorList" :key="index" :to="monitorURL(item.id)" class="item" :class="{ 'disabled': ! item.active }">
|
<router-link v-for="(item, index) in sortedMonitorList" :key="index" :to="monitorURL(item.id)" class="item" :class="{ 'disabled': ! item.active }">
|
||||||
|
|
|
@ -5,20 +5,20 @@
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h5 id="exampleModalLabel" class="modal-title">
|
<h5 id="exampleModalLabel" class="modal-title">
|
||||||
{{ $t("Setup Notification") }}
|
{{ $t("SetupNotification") }}
|
||||||
</h5>
|
</h5>
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close" />
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close" />
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="notification-type" class="form-label">{{ $t("Notification Type") }}</label>
|
<label for="notification-type" class="form-label">{{ $t("NotificationType") }}</label>
|
||||||
<select id="notification-type" v-model="notification.type" class="form-select">
|
<select id="notification-type" v-model="notification.type" class="form-select">
|
||||||
<option v-for="type in notificationTypes" :key="type" :value="type">{{ $t(type) }}</option>
|
<option v-for="type in notificationTypes" :key="type" :value="type">{{ $t(type) }}</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="notification-name" class="form-label">{{ $t("Friendly Name") }}</label>
|
<label for="notification-name" class="form-label">{{ $t("FriendlyName") }}</label>
|
||||||
<input id="notification-name" v-model="notification.name" type="text" class="form-control" required>
|
<input id="notification-name" v-model="notification.name" type="text" class="form-control" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -30,17 +30,17 @@
|
||||||
|
|
||||||
<div class="form-check form-switch">
|
<div class="form-check form-switch">
|
||||||
<input v-model="notification.isDefault" class="form-check-input" type="checkbox">
|
<input v-model="notification.isDefault" class="form-check-input" type="checkbox">
|
||||||
<label class="form-check-label">{{ $t("Default enabled") }}</label>
|
<label class="form-check-label">{{ $t("DefaultEnabled") }}</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-text">
|
<div class="form-text">
|
||||||
{{ $t("enableDefaultNotificationDescription") }}
|
{{ $t("EnableDefaultNotificationDescription") }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<div class="form-check form-switch">
|
<div class="form-check form-switch">
|
||||||
<input v-model="notification.applyExisting" class="form-check-input" type="checkbox">
|
<input v-model="notification.applyExisting" class="form-check-input" type="checkbox">
|
||||||
<label class="form-check-label">{{ $t("Apply on all existing monitors") }}</label>
|
<label class="form-check-label">{{ $t("ApplyOnAllExistingMonitors") }}</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -63,7 +63,7 @@
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<Confirm ref="confirmDelete" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="deleteNotification">
|
<Confirm ref="confirmDelete" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="deleteNotification">
|
||||||
{{ $t("deleteNotificationMsg") }}
|
{{ $t("DeleteNotificationMsg") }}
|
||||||
</Confirm>
|
</Confirm>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -85,7 +85,7 @@ export default {
|
||||||
y: {
|
y: {
|
||||||
title: {
|
title: {
|
||||||
display: true,
|
display: true,
|
||||||
text: this.$t("respTime"),
|
text: this.$t("RespTime"),
|
||||||
},
|
},
|
||||||
offset: false,
|
offset: false,
|
||||||
grid: {
|
grid: {
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
@keydown.enter.prevent="onEnter"
|
@keydown.enter.prevent="onEnter"
|
||||||
/>
|
/>
|
||||||
<div class="invalid-feedback">
|
<div class="invalid-feedback">
|
||||||
{{ $t("Tag with this name already exist.") }}
|
{{ $t("TagWithThisNameAlreadyExist") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="w-50 ps-2">
|
<div class="w-50 ps-2">
|
||||||
|
@ -100,7 +100,7 @@
|
||||||
@keydown.enter.prevent="onEnter"
|
@keydown.enter.prevent="onEnter"
|
||||||
/>
|
/>
|
||||||
<div class="invalid-feedback">
|
<div class="invalid-feedback">
|
||||||
{{ $t("Tag with this value already exist.") }}
|
{{ $t("TagWithThisValueAlreadyExist") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="mb-2">
|
<div class="mb-2">
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h5 class="modal-title">
|
<h5 class="modal-title">
|
||||||
{{ $t("Setup 2FA") }}
|
{{ $t("Setup2Fa") }}
|
||||||
<span v-if="twoFAStatus == true" class="badge bg-primary">{{ $t("Active") }}</span>
|
<span v-if="twoFAStatus == true" class="badge bg-primary">{{ $t("Active") }}</span>
|
||||||
<span v-if="twoFAStatus == false" class="badge bg-primary">{{ $t("Inactive") }}</span>
|
<span v-if="twoFAStatus == false" class="badge bg-primary">{{ $t("Inactive") }}</span>
|
||||||
</h5>
|
</h5>
|
||||||
|
@ -15,25 +15,25 @@
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<div v-if="uri && twoFAStatus == false" class="mx-auto text-center" style="width: 210px;">
|
<div v-if="uri && twoFAStatus == false" class="mx-auto text-center" style="width: 210px;">
|
||||||
<vue-qrcode :key="uri" :value="uri" type="image/png" :quality="1" :color="{ light: '#ffffffff' }" />
|
<vue-qrcode :key="uri" :value="uri" type="image/png" :quality="1" :color="{ light: '#ffffffff' }" />
|
||||||
<button v-show="!showURI" type="button" class="btn btn-outline-primary btn-sm mt-2" @click="showURI = true">{{ $t("Show URI") }}</button>
|
<button v-show="!showURI" type="button" class="btn btn-outline-primary btn-sm mt-2" @click="showURI = true">{{ $t("ShowUri") }}</button>
|
||||||
</div>
|
</div>
|
||||||
<p v-if="showURI && twoFAStatus == false" class="text-break mt-2">{{ uri }}</p>
|
<p v-if="showURI && twoFAStatus == false" class="text-break mt-2">{{ uri }}</p>
|
||||||
|
|
||||||
<button v-if="uri == null && twoFAStatus == false" class="btn btn-primary" type="button" @click="prepare2FA()">
|
<button v-if="uri == null && twoFAStatus == false" class="btn btn-primary" type="button" @click="prepare2FA()">
|
||||||
{{ $t("Enable 2FA") }}
|
{{ $t("Enable2Fa") }}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button v-if="twoFAStatus == true" class="btn btn-danger" type="button" :disabled="processing" @click="confirmDisableTwoFA()">
|
<button v-if="twoFAStatus == true" class="btn btn-danger" type="button" :disabled="processing" @click="confirmDisableTwoFA()">
|
||||||
{{ $t("Disable 2FA") }}
|
{{ $t("Disable2Fa") }}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<div v-if="uri && twoFAStatus == false" class="mt-3">
|
<div v-if="uri && twoFAStatus == false" class="mt-3">
|
||||||
<label for="basic-url" class="form-label">{{ $t("twoFAVerifyLabel") }}</label>
|
<label for="basic-url" class="form-label">{{ $t("TwoFaVerifyLabel") }}</label>
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<input v-model="token" type="text" maxlength="6" class="form-control">
|
<input v-model="token" type="text" maxlength="6" class="form-control">
|
||||||
<button class="btn btn-outline-primary" type="button" @click="verifyToken()">{{ $t("Verify Token") }}</button>
|
<button class="btn btn-outline-primary" type="button" @click="verifyToken()">{{ $t("VerifyToken") }}</button>
|
||||||
</div>
|
</div>
|
||||||
<p v-show="tokenValid" class="mt-2" style="color: green">{{ $t("tokenValidSettingsMsg") }}</p>
|
<p v-show="tokenValid" class="mt-2" style="color: green">{{ $t("TokenValidSettingsMsg") }}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -50,11 +50,11 @@
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<Confirm ref="confirmEnableTwoFA" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="save2FA">
|
<Confirm ref="confirmEnableTwoFA" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="save2FA">
|
||||||
{{ $t("confirmEnableTwoFAMsg") }}
|
{{ $t("ConfirmEnableTwoFaMsg") }}
|
||||||
</Confirm>
|
</Confirm>
|
||||||
|
|
||||||
<Confirm ref="confirmDisableTwoFA" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="disable2FA">
|
<Confirm ref="confirmDisableTwoFA" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="disable2FA">
|
||||||
{{ $t("confirmDisableTwoFAMsg") }}
|
{{ $t("ConfirmDisableTwoFaMsg") }}
|
||||||
</Confirm>
|
</Confirm>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ export default {
|
||||||
return Math.round(this.$root.uptimeList[key] * 10000) / 100 + "%";
|
return Math.round(this.$root.uptimeList[key] * 10000) / 100 + "%";
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.$t("notAvailableShort");
|
return this.$t("NotAvailableShort");
|
||||||
},
|
},
|
||||||
|
|
||||||
color() {
|
color() {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<div class="input-group mb-3">
|
<div class="input-group mb-3">
|
||||||
<input id="telegram-chat-id" v-model="$parent.notification.telegramChatID" type="text" class="form-control" required>
|
<input id="telegram-chat-id" v-model="$parent.notification.telegramChatID" type="text" class="form-control" required>
|
||||||
<button v-if="$parent.notification.telegramBotToken" class="btn btn-outline-secondary" type="button" @click="autoGetTelegramChatID">
|
<button v-if="$parent.notification.telegramBotToken" class="btn btn-outline-secondary" type="button" @click="autoGetTelegramChatID">
|
||||||
{{ $t("Auto Get") }}
|
{{ $t("AutoGet") }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -1,181 +1,128 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Български",
|
LanguageName: "Български",
|
||||||
checkEverySecond: "Проверявай на всеки {0} секунди.",
|
CheckEverySecond: "Проверявай на всеки {0} секунди.",
|
||||||
retryCheckEverySecond: "Повторен опит на всеки {0} секунди.",
|
RetryCheckEverySecond: "Повторен опит на всеки {0} секунди.",
|
||||||
retriesDescription: "Максимакен брой опити преди услугата да бъде маркирана като недостъпна и да бъде изпратено известие",
|
RetriesDescription: "Максимакен брой опити преди услугата да бъде маркирана като недостъпна и да бъде изпратено известие",
|
||||||
ignoreTLSError: "Игнорирай TLS/SSL грешки за HTTPS уебсайтове",
|
IgnoreTlsError: "Игнорирай TLS/SSL грешки за HTTPS уебсайтове",
|
||||||
upsideDownModeDescription: "Обърни статуса от достъпен на недостъпен. Ако услугата е достъпна се вижда НЕДОСТЪПНА.",
|
UpsideDownModeDescription: "Обърни статуса от достъпен на недостъпен. Ако услугата е достъпна се вижда НЕДОСТЪПНА.",
|
||||||
maxRedirectDescription: "Максимален брой пренасочвания, които да бъдат следвани. Въведете 0 за да изключите пренасочване.",
|
MaxRedirectDescription: "Максимален брой пренасочвания, които да бъдат следвани. Въведете 0 за да изключите пренасочване.",
|
||||||
acceptedStatusCodesDescription: "Изберете статус кодове, които се считат за успешен отговор.",
|
AcceptedStatusCodesDescription: "Изберете статус кодове, които се считат за успешен отговор.",
|
||||||
passwordNotMatchMsg: "Повторената парола не съвпада.",
|
PasswordNotMatchMsg: "Повторената парола не съвпада.",
|
||||||
notificationDescription: "Моля, задайте известието към монитор(и), за да функционира.",
|
NotificationDescription: "Моля, задайте известието към монитор(и), за да функционира.",
|
||||||
keywordDescription: "Търсете ключова дума в обикновен html или JSON отговор - чувствителна е към регистъра",
|
KeywordDescription: "Търсете ключова дума в обикновен html или JSON отговор - чувствителна е към регистъра",
|
||||||
pauseDashboardHome: "Пауза",
|
PauseDashboardHome: "Пауза",
|
||||||
deleteMonitorMsg: "Наистина ли желаете да изтриете този монитор?",
|
DeleteMonitorMsg: "Наистина ли желаете да изтриете този монитор?",
|
||||||
deleteNotificationMsg: "Наистина ли желаете да изтриете известието за всички монитори?",
|
DeleteNotificationMsg: "Наистина ли желаете да изтриете известието за всички монитори?",
|
||||||
resoverserverDescription: "Cloudflare е сървърът по подразбиране, можете да промените сървъра по всяко време.",
|
ResoverserverDescription: "Cloudflare е сървърът по подразбиране, можете да промените сървъра по всяко време.",
|
||||||
rrtypeDescription: "Изберете ресурсния запис, който желаете да наблюдавате",
|
RrtypeDescription: "Изберете ресурсния запис, който желаете да наблюдавате",
|
||||||
pauseMonitorMsg: "Наистина ли желаете да поставите в режим пауза?",
|
PauseMonitorMsg: "Наистина ли желаете да поставите в режим пауза?",
|
||||||
enableDefaultNotificationDescription: "За всеки нов монитор това известие ще бъде активирано по подразбиране. Можете да изключите известието за всеки отделен монитор.",
|
EnableDefaultNotificationDescription: "За всеки нов монитор това известие ще бъде активирано по подразбиране. Можете да изключите известието за всеки отделен монитор.",
|
||||||
clearEventsMsg: "Наистина ли желаете да изтриете всички събития за този монитор?",
|
ClearEventsMsg: "Наистина ли желаете да изтриете всички събития за този монитор?",
|
||||||
clearHeartbeatsMsg: "Наистина ли желаете да изтриете всички записи за честотни проверки на този монитор?",
|
ClearHeartbeatsMsg: "Наистина ли желаете да изтриете всички записи за честотни проверки на този монитор?",
|
||||||
confirmClearStatisticsMsg: "Наистина ли желаете да изтриете всички статистически данни?",
|
ConfirmClearStatisticsMsg: "Наистина ли желаете да изтриете всички статистически данни?",
|
||||||
importHandleDescription: "Изберете 'Пропусни съществуващите', ако искате да пропуснете всеки монитор или известие със същото име. 'Презапис' ще изтрие всеки съществуващ монитор и известие.",
|
ImportHandleDescription: "Изберете 'Пропусни съществуващите', ако искате да пропуснете всеки монитор или известие със същото име. 'Презапис' ще изтрие всеки съществуващ монитор и известие.",
|
||||||
confirmImportMsg: "Сигурни ли сте за импортирането на архива? Моля, уверете се, че сте избрали правилната опция за импортиране.",
|
ConfirmImportMsg: "Сигурни ли сте за импортирането на архива? Моля, уверете се, че сте избрали правилната опция за импортиране.",
|
||||||
twoFAVerifyLabel: "Моля, въведете вашия токен код, за да проверите дали 2FA работи",
|
TwoFaVerifyLabel: "Моля, въведете вашия токен код, за да проверите дали 2FA работи",
|
||||||
tokenValidSettingsMsg: "Токен кодът е валиден! Вече можете да запазите настройките за 2FA.",
|
TokenValidSettingsMsg: "Токен кодът е валиден! Вече можете да запазите настройките за 2FA.",
|
||||||
confirmEnableTwoFAMsg: "Сигурни ли сте, че желаете да активирате 2FA?",
|
ConfirmEnableTwoFaMsg: "Сигурни ли сте, че желаете да активирате 2FA?",
|
||||||
confirmDisableTwoFAMsg: "Сигурни ли сте, че желаете да изключите 2FA?",
|
ConfirmDisableTwoFaMsg: "Сигурни ли сте, че желаете да изключите 2FA?",
|
||||||
Settings: "Настройки",
|
NewUpdate: "Нова актуализация",
|
||||||
Dashboard: "Табло",
|
CheckUpdateOnGitHub: "Провери за актуализация в GitHub",
|
||||||
"New Update": "Нова актуализация",
|
AddNewMonitor: "Добави монитор",
|
||||||
Language: "Език",
|
QuickStats: "Кратка статистика",
|
||||||
Appearance: "Изглед",
|
NoImportantEvents: "Няма важни събития",
|
||||||
Theme: "Тема",
|
CertExp: "Вал. сертификат",
|
||||||
General: "Общи",
|
Days: "дни",
|
||||||
Version: "Версия",
|
Day: "ден",
|
||||||
"Check Update On GitHub": "Провери за актуализация в GitHub",
|
Hour: "час",
|
||||||
List: "Списък",
|
MonitorType: "Монитор тип",
|
||||||
Add: "Добави",
|
FriendlyName: "Псевдоним",
|
||||||
"Add New Monitor": "Добави монитор",
|
Url: "URL Адрес",
|
||||||
"Quick Stats": "Кратка статистика",
|
HeartbeatInterval: "Честота на проверка",
|
||||||
Up: "Достъпни",
|
HeartbeatRetryInterval: "Честота на повторните опити",
|
||||||
Down: "Недостъпни",
|
UpsideDownMode: "Обърнат режим",
|
||||||
Pending: "В изчакване",
|
MaxRedirects: "Макс. брой пренасочвания",
|
||||||
Unknown: "Неизвестни",
|
AcceptedStatusCodes: "Допустими статус кодове",
|
||||||
Pause: "В пауза",
|
NotAvailablePleaseSetup: "Не е налично. Моля, настройте.",
|
||||||
Name: "Име",
|
SetupNotification: "Настройка за известяване",
|
||||||
Status: "Статус",
|
ThemeHeartbeatBar: "Тема - поле проверки",
|
||||||
DateTime: "Дата и час",
|
SearchEngineVisibility: "Видимост за търсачки",
|
||||||
Message: "Съобщение",
|
AllowIndexing: "Разреши индексиране",
|
||||||
"No important events": "Няма важни събития",
|
DiscourageSearchEnginesFromIndexingSite: "Обезкуражи индексирането на сайта от търсачките",
|
||||||
Resume: "Възобнови",
|
ChangePassword: "Промени парола",
|
||||||
Edit: "Редактирай",
|
CurrentPassword: "Текуща парола",
|
||||||
Delete: "Изтрий",
|
NewPassword: "Нова парола",
|
||||||
Current: "Текущ",
|
RepeatNewPassword: "Повторете новата парола",
|
||||||
Uptime: "Време на работа",
|
UpdatePassword: "Актуализирай парола",
|
||||||
"Cert Exp.": "Вал. сертификат",
|
DisableAuth: "Изключи удостоверяване",
|
||||||
days: "дни",
|
EnableAuth: "Включи удостоверяване",
|
||||||
day: "ден",
|
IUnderstandPleaseDisable: "Разбирам. Моля, изключи",
|
||||||
DaysInMonth: "30-ден",
|
RememberMe: "Запомни ме",
|
||||||
hour: "час",
|
NoMonitorsPlease: "Моля, без монитори",
|
||||||
HoursInDay: "24-час",
|
AddOne: "добави един",
|
||||||
Response: "Отговор",
|
NotificationType: "Тип известяване",
|
||||||
Ping: "Пинг",
|
CertificateInfo: "Информация за сертификат",
|
||||||
"Monitor Type": "Монитор тип",
|
ResolverServer: "Преобразуващ (DNS) сървър",
|
||||||
Keyword: "Ключова дума",
|
ResourceRecordType: "Тип запис",
|
||||||
"Friendly Name": "Псевдоним",
|
LastResult: "Последен резултат",
|
||||||
URL: "URL Адрес",
|
CreateYourAdminAccount: "Създаване на администриращ акаунт",
|
||||||
Hostname: "Име на хост",
|
RepeatPassword: "Повторете паролата",
|
||||||
Port: "Порт",
|
ImportBackup: "Импорт на архив",
|
||||||
"Heartbeat Interval": "Честота на проверка",
|
ExportBackup: "Експорт на архив",
|
||||||
Retries: "Повторни опити",
|
RespTime: "Време за отговор (ms)",
|
||||||
"Heartbeat Retry Interval": "Честота на повторните опити",
|
NotAvailableShort: "Няма",
|
||||||
Advanced: "Разширени",
|
DefaultEnabled: "Включен по подразбиране",
|
||||||
"Upside Down Mode": "Обърнат режим",
|
ApplyOnAllExistingMonitors: "Приложи върху всички съществуващи монитори",
|
||||||
"Max. Redirects": "Макс. брой пренасочвания",
|
ClearData: "Изчисти данни",
|
||||||
"Accepted Status Codes": "Допустими статус кодове",
|
AutoGet: "Автоматияно получаване",
|
||||||
Save: "Запази",
|
BackupDescription: "Можете да архивирате всички монитори и всички известия в JSON файл.",
|
||||||
Notifications: "Известявания",
|
BackupDescription2: "PS: Данни за история и събития не са включени.",
|
||||||
"Not available, please setup.": "Не е налично. Моля, настройте.",
|
BackupDescription3: "Чувствителни данни, като токен кодове за известяване, се съдържат в експортирания файл. Моля, бъдете внимателни с неговото съхранение.",
|
||||||
"Setup Notification": "Настройка за известяване",
|
AlertNoFile: "Моля, изберете файл за импортиране.",
|
||||||
Light: "Светла",
|
AlertWrongFileType: "Моля, изберете JSON файл.",
|
||||||
Dark: "Тъмна",
|
ClearAllStatistics: "Изчисти всички статистики",
|
||||||
Auto: "Автоматично",
|
SkipExisting: "Пропусни съществуващите",
|
||||||
"Theme - Heartbeat Bar": "Тема - поле проверки",
|
KeepBoth: "Запази двете",
|
||||||
Normal: "Нормално",
|
VerifyToken: "Проверка на токен код",
|
||||||
Bottom: "Долу",
|
Setup2Fa: "Настройка 2FA",
|
||||||
None: "Без",
|
Enable2Fa: "Включи 2FA",
|
||||||
Timezone: "Часова зона",
|
Disable2Fa: "Изключи 2FA",
|
||||||
"Search Engine Visibility": "Видимост за търсачки",
|
TwoFaSettings: "Настройки 2FA",
|
||||||
"Allow indexing": "Разреши индексиране",
|
TwoFactorAuthentication: "Двуфакторно удостоверяване",
|
||||||
"Discourage search engines from indexing site": "Обезкуражи индексирането на сайта от търсачките",
|
ShowUri: "Покажи URI",
|
||||||
"Change Password": "Промени парола",
|
AddNewBelowOrSelect: "Добави нов по-долу или избери...",
|
||||||
"Current Password": "Текуща парола",
|
TagWithThisNameAlreadyExist: "Етикет с това име вече съществува.",
|
||||||
"New Password": "Нова парола",
|
TagWithThisValueAlreadyExist: "Етикет с тази стойност вече съществува.",
|
||||||
"Repeat New Password": "Повторете новата парола",
|
Color: "цвят",
|
||||||
"Update Password": "Актуализирай парола",
|
ValueOptional: "стойност (по желание)",
|
||||||
"Disable Auth": "Изключи удостоверяване",
|
Search: "Търси...",
|
||||||
"Enable Auth": "Включи удостоверяване",
|
AvgPing: "Ср. пинг",
|
||||||
Logout: "Изход от профила",
|
AvgResponse: "Ср. отговор",
|
||||||
Leave: "Напускам",
|
EntryPage: "Основна страница",
|
||||||
"I understand, please disable": "Разбирам. Моля, изключи",
|
StatusPageNothing: "Все още няма нищо тук. Моля, добавете група или монитор.",
|
||||||
Confirm: "Потвърди",
|
NoServices: "Няма Услуги",
|
||||||
Yes: "Да",
|
AllSystemsOperational: "Всички системи функционират",
|
||||||
No: "Не",
|
PartiallyDegradedService: "Частично влошена услуга",
|
||||||
Username: "Потребител",
|
DegradedService: "Влошена услуга",
|
||||||
Password: "Парола",
|
AddGroup: "Добави група",
|
||||||
"Remember me": "Запомни ме",
|
AddAMonitor: "Добави монитор",
|
||||||
Login: "Вход",
|
EditStatusPage: "Редактирай статус страница",
|
||||||
"No Monitors, please": "Моля, без монитори",
|
GoToDashboard: "Към Таблото",
|
||||||
"add one": "добави един",
|
Telegram: "Telegram",
|
||||||
"Notification Type": "Тип известяване",
|
Webhook: "Webhook",
|
||||||
Email: "Имейл",
|
Smtp: "Email (SMTP)",
|
||||||
Test: "Тест",
|
Discord: "Discord",
|
||||||
"Certificate Info": "Информация за сертификат",
|
Teams: "Microsoft Teams",
|
||||||
"Resolver Server": "Преобразуващ (DNS) сървър",
|
Signal: "Signal",
|
||||||
"Resource Record Type": "Тип запис",
|
Gotify: "Gotify",
|
||||||
"Last Result": "Последен резултат",
|
Slack: "Slack",
|
||||||
"Create your admin account": "Създаване на администриращ акаунт",
|
RocketChat: "Rocket.chat",
|
||||||
"Repeat Password": "Повторете паролата",
|
Pushover: "Pushover",
|
||||||
"Import Backup": "Импорт на архив",
|
Pushy: "Pushy",
|
||||||
"Export Backup": "Експорт на архив",
|
Octopush: "Octopush",
|
||||||
Export: "Експорт",
|
Lunasea: "LunaSea",
|
||||||
Import: "Импорт",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
respTime: "Време за отговор (ms)",
|
Pushbullet: "Pushbullet",
|
||||||
notAvailableShort: "Няма",
|
Line: "Line Messenger",
|
||||||
"Default enabled": "Включен по подразбиране",
|
Mattermost: "Mattermost"
|
||||||
"Apply on all existing monitors": "Приложи върху всички съществуващи монитори",
|
|
||||||
Create: "Създай",
|
|
||||||
"Clear Data": "Изчисти данни",
|
|
||||||
Events: "Събития",
|
|
||||||
Heartbeats: "Проверки",
|
|
||||||
"Auto Get": "Автоматияно получаване",
|
|
||||||
backupDescription: "Можете да архивирате всички монитори и всички известия в JSON файл.",
|
|
||||||
backupDescription2: "PS: Данни за история и събития не са включени.",
|
|
||||||
backupDescription3: "Чувствителни данни, като токен кодове за известяване, се съдържат в експортирания файл. Моля, бъдете внимателни с неговото съхранение.",
|
|
||||||
alertNoFile: "Моля, изберете файл за импортиране.",
|
|
||||||
alertWrongFileType: "Моля, изберете JSON файл.",
|
|
||||||
"Clear all statistics": "Изчисти всички статистики",
|
|
||||||
"Skip existing": "Пропусни съществуващите",
|
|
||||||
Overwrite: "Презапиши",
|
|
||||||
Options: "Опции",
|
|
||||||
"Keep both": "Запази двете",
|
|
||||||
"Verify Token": "Проверка на токен код",
|
|
||||||
"Setup 2FA": "Настройка 2FA",
|
|
||||||
"Enable 2FA": "Включи 2FA",
|
|
||||||
"Disable 2FA": "Изключи 2FA",
|
|
||||||
"2FA Settings": "Настройки 2FA",
|
|
||||||
"Two Factor Authentication": "Двуфакторно удостоверяване",
|
|
||||||
Active: "Активно",
|
|
||||||
Inactive: "Неактивно",
|
|
||||||
Token: "Токен код",
|
|
||||||
"Show URI": "Покажи URI",
|
|
||||||
Tags: "Етикети",
|
|
||||||
"Add New below or Select...": "Добави нов по-долу или избери...",
|
|
||||||
"Tag with this name already exist.": "Етикет с това име вече съществува.",
|
|
||||||
"Tag with this value already exist.": "Етикет с тази стойност вече съществува.",
|
|
||||||
color: "цвят",
|
|
||||||
"value (optional)": "стойност (по желание)",
|
|
||||||
Gray: "Сиво",
|
|
||||||
Red: "Червено",
|
|
||||||
Orange: "Оранжево",
|
|
||||||
Green: "Зелено",
|
|
||||||
Blue: "Синьо",
|
|
||||||
Indigo: "Индиго",
|
|
||||||
Purple: "Лилаво",
|
|
||||||
Pink: "Розово",
|
|
||||||
"Search...": "Търси...",
|
|
||||||
"Avg. Ping": "Ср. пинг",
|
|
||||||
"Avg. Response": "Ср. отговор",
|
|
||||||
"Entry Page": "Основна страница",
|
|
||||||
statusPageNothing: "Все още няма нищо тук. Моля, добавете група или монитор.",
|
|
||||||
"No Services": "Няма Услуги",
|
|
||||||
"All Systems Operational": "Всички системи функционират",
|
|
||||||
"Partially Degraded Service": "Частично влошена услуга",
|
|
||||||
"Degraded Service": "Влошена услуга",
|
|
||||||
"Add Group": "Добави група",
|
|
||||||
"Add a monitor": "Добави монитор",
|
|
||||||
"Edit Status Page": "Редактирай статус страница",
|
|
||||||
"Go to Dashboard": "Към Таблото",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Danish",
|
Also apply to existing monitors: "Anvend også på eksisterende overvågere",
|
||||||
Settings: "Indstillinger",
|
LanguageName: "Danish",
|
||||||
Dashboard: "Dashboard",
|
CheckEverySecond: "Tjek hvert {0} sekund",
|
||||||
"New Update": "Opdatering tilgængelig",
|
RetryCheckEverySecond: "Prøv igen hvert {0} sekund.",
|
||||||
Language: "Sprog",
|
RetriesDescription: "Maksimalt antal gentagelser, før tjenesten markeres som inaktiv og sender en meddelelse.",
|
||||||
Appearance: "Udseende",
|
IgnoreTlsError: "Ignorere TLS/SSL web fejl",
|
||||||
Theme: "Tema",
|
UpsideDownModeDescription: "Håndter tilstanden omvendt. Hvis tjenesten er tilgængelig, vises den som inaktiv.",
|
||||||
General: "Generelt",
|
MaxRedirectDescription: "Maksimalt antal omdirigeringer, der skal følges. Indstil til 0 for at deaktivere omdirigeringer.",
|
||||||
Version: "Version",
|
AcceptedStatusCodesDescription: "Vælg de statuskoder, der stadig skal vurderes som vellykkede.",
|
||||||
"Check Update On GitHub": "Tjek efter opdateringer på Github",
|
PasswordNotMatchMsg: "Adgangskoderne er ikke ens.",
|
||||||
List: "Liste",
|
NotificationDescription: "Tildel underretninger til Overvåger(e), så denne funktion træder i kraft.",
|
||||||
Add: "Tilføj",
|
KeywordDescription: "Søg efter et søgeord i almindelig HTML- eller JSON -output. Bemærk, at der skelnes mellem store og små bogstaver.",
|
||||||
"Add New Monitor": "Tilføj ny Overvåger",
|
PauseDashboardHome: "Standset",
|
||||||
"Quick Stats": "Oversigt",
|
DeleteMonitorMsg: "Er du sikker på, at du vil slette overvågeren?",
|
||||||
Up: "Aktiv",
|
DeleteNotificationMsg: "Er du sikker på, at du vil slette denne underretning for alle overvågere? ",
|
||||||
Down: "Inaktiv",
|
ResoverserverDescription: "Cloudflare er standardserveren, den kan til enhver tid ændres.",
|
||||||
Pending: "Afventer",
|
RrtypeDescription: "Vælg den type RR, du vil overvåge.",
|
||||||
Unknown: "Ukendt",
|
PauseMonitorMsg: "Er du sikker på, at du vil standse Overvågeren?",
|
||||||
Pause: "Stands",
|
EnableDefaultNotificationDescription: "For hver ny overvåger aktiveres denne underretning som standard. Du kan stadig deaktivere underretningen separat for hver skærm.",
|
||||||
pauseDashboardHome: "Standset",
|
ClearEventsMsg: "Er du sikker på vil slette alle events for denne Overvåger?",
|
||||||
Name: "Navn",
|
ClearHeartbeatsMsg: "Er du sikker på vil slette alle heartbeats for denne Overvåger?",
|
||||||
Status: "Status",
|
ConfirmClearStatisticsMsg: "Vil du helt sikkert slette ALLE statistikker?",
|
||||||
DateTime: "Dato / Tid",
|
ImportHandleDescription: "Vælg 'Spring over eksisterende', hvis du vil springe over hver overvåger eller underretning med samme navn. 'Overskriv' sletter alle eksisterende overvågere og underretninger.",
|
||||||
Message: "Beskeder",
|
ConfirmImportMsg: "Er du sikker på at importere sikkerhedskopien? Sørg for, at du har valgt den rigtige importindstilling.",
|
||||||
"No important events": "Inden vigtige begivenheder",
|
TwoFaVerifyLabel: "Indtast venligst dit token for at bekræfte, at 2FA fungerer",
|
||||||
Resume: "Fortsæt",
|
TokenValidSettingsMsg: "Token er gyldigt! Du kan nu gemme 2FA -indstillingerne.",
|
||||||
Edit: "Rediger",
|
ConfirmEnableTwoFaMsg: "Er du sikker på at du vil aktivere 2FA?",
|
||||||
Delete: "Slet",
|
ConfirmDisableTwoFaMsg: "Er du sikker på at du vil deaktivere 2FA?",
|
||||||
Current: "Aktuelt",
|
NewUpdate: "Opdatering tilgængelig",
|
||||||
Uptime: "Oppetid",
|
CheckUpdateOnGitHub: "Tjek efter opdateringer på Github",
|
||||||
"Cert Exp.": "Certifikatets udløb",
|
AddNewMonitor: "Tilføj ny Overvåger",
|
||||||
days: "Dage",
|
QuickStats: "Oversigt",
|
||||||
day: "Dag",
|
NoImportantEvents: "Inden vigtige begivenheder",
|
||||||
DaysInMonth: "30-Dage",
|
CertExp: "Certifikatets udløb",
|
||||||
hour: "Timer",
|
Days: "Dage",
|
||||||
HoursInDay: "24-Timer",
|
Day: "Dag",
|
||||||
checkEverySecond: "Tjek hvert {0} sekund",
|
Hour: "Timer",
|
||||||
Response: "Respons",
|
MonitorType: "Overvåger Type",
|
||||||
Ping: "Ping",
|
FriendlyName: "Visningsnavn",
|
||||||
"Monitor Type": "Overvåger Type",
|
Url: "URL",
|
||||||
Keyword: "Nøgleord",
|
HeartbeatInterval: "Taktinterval",
|
||||||
"Friendly Name": "Visningsnavn",
|
HeartbeatRetryInterval: "Heartbeat Gentagelsesinterval",
|
||||||
URL: "URL",
|
UpsideDownMode: "Omvendt tilstand",
|
||||||
Hostname: "Hostname",
|
MaxRedirects: "Maks. Omdirigeringer",
|
||||||
Port: "Port",
|
AcceptedStatusCodes: "Tilladte HTTP-Statuskoder",
|
||||||
"Heartbeat Interval": "Taktinterval",
|
NotAvailablePleaseSetup: "Ikke tilgængelige, opsæt venligst.",
|
||||||
Retries: "Gentagelser",
|
SetupNotification: "Opsæt underretninger",
|
||||||
retriesDescription: "Maksimalt antal gentagelser, før tjenesten markeres som inaktiv og sender en meddelelse.",
|
ThemeHeartbeatBar: "Tema - Tidslinje",
|
||||||
Advanced: "Avanceret",
|
SearchEngineVisibility: "Søgemaskine synlighed",
|
||||||
ignoreTLSError: "Ignorere TLS/SSL web fejl",
|
AllowIndexing: "Tillad indeksering",
|
||||||
"Upside Down Mode": "Omvendt tilstand",
|
DiscourageSearchEnginesFromIndexingSite: "Frabed søgemaskiner at indeksere webstedet",
|
||||||
upsideDownModeDescription: "Håndter tilstanden omvendt. Hvis tjenesten er tilgængelig, vises den som inaktiv.",
|
ChangePassword: "Ændre adgangskode",
|
||||||
"Max. Redirects": "Maks. Omdirigeringer",
|
CurrentPassword: "Nuværende adgangskode",
|
||||||
maxRedirectDescription: "Maksimalt antal omdirigeringer, der skal følges. Indstil til 0 for at deaktivere omdirigeringer.",
|
NewPassword: "Ny adgangskode",
|
||||||
"Accepted Status Codes": "Tilladte HTTP-Statuskoder",
|
RepeatNewPassword: "Gentag den nye adgangskode",
|
||||||
acceptedStatusCodesDescription: "Vælg de statuskoder, der stadig skal vurderes som vellykkede.",
|
UpdatePassword: "Opdater adgangskode",
|
||||||
Save: "Gem",
|
DisableAuth: "Deaktiver autentificering",
|
||||||
Notifications: "Underretninger",
|
EnableAuth: "Aktiver autentificering",
|
||||||
"Not available, please setup.": "Ikke tilgængelige, opsæt venligst.",
|
IUnderstandPleaseDisable: "Jeg er indforstået, deaktiver venligst",
|
||||||
"Setup Notification": "Opsæt underretninger",
|
RememberMe: "Husk mig",
|
||||||
Light: "Lys",
|
NoMonitorsPlease: "Ingen Overvågere",
|
||||||
Dark: "Mørk",
|
AddOne: "tilføj en",
|
||||||
Auto: "Auto",
|
NotificationType: "Underretningstype",
|
||||||
"Theme - Heartbeat Bar": "Tema - Tidslinje",
|
CertificateInfo: "Certifikatoplysninger",
|
||||||
Normal: "Normal",
|
ResolverServer: "Navne-server",
|
||||||
Bottom: "Bunden",
|
ResourceRecordType: "Resource Record Type",
|
||||||
None: "Ingen",
|
LastResult: "Seneste resultat",
|
||||||
Timezone: "Tidszone",
|
CreateYourAdminAccount: "Opret din administratorkonto",
|
||||||
"Search Engine Visibility": "Søgemaskine synlighed",
|
RepeatPassword: "Gentag adgangskoden",
|
||||||
"Allow indexing": "Tillad indeksering",
|
ImportBackup: "Importer Backup",
|
||||||
"Discourage search engines from indexing site": "Frabed søgemaskiner at indeksere webstedet",
|
ExportBackup: "Eksporter Backup",
|
||||||
"Change Password": "Ændre adgangskode",
|
RespTime: "Resp. Tid (ms)",
|
||||||
"Current Password": "Nuværende adgangskode",
|
NotAvailableShort: "N/A",
|
||||||
"New Password": "Ny adgangskode",
|
DefaultEnabled: "Standard aktiveret",
|
||||||
"Repeat New Password": "Gentag den nye adgangskode",
|
ApplyOnAllExistingMonitors: "Anvend på alle eksisterende overvågere",
|
||||||
passwordNotMatchMsg: "Adgangskoderne er ikke ens.",
|
ClearData: "Ryd Data",
|
||||||
"Update Password": "Opdater adgangskode",
|
AutoGet: "Auto-hent",
|
||||||
"Disable Auth": "Deaktiver autentificering",
|
BackupDescription: "Du kan sikkerhedskopiere alle Overvågere og alle underretninger til en JSON-fil.",
|
||||||
"Enable Auth": "Aktiver autentificering",
|
BackupDescription2: "PS: Historik og hændelsesdata er ikke inkluderet.",
|
||||||
Logout: "Log ud",
|
BackupDescription3: "Følsom data, f.eks. underretnings-tokener, er inkluderet i eksportfilen. Gem den sikkert.",
|
||||||
notificationDescription: "Tildel underretninger til Overvåger(e), så denne funktion træder i kraft.",
|
AlertNoFile: "Vælg en fil der skal importeres.",
|
||||||
Leave: "Verlassen",
|
AlertWrongFileType: "Vælg venligst en JSON-fil.",
|
||||||
"I understand, please disable": "Jeg er indforstået, deaktiver venligst",
|
ClearAllStatistics: "Ryd alle Statistikker",
|
||||||
Confirm: "Bekræft",
|
SkipExisting: "Spring over eksisterende",
|
||||||
Yes: "Ja",
|
KeepBoth: "Behold begge",
|
||||||
No: "Nej",
|
VerifyToken: "Verificere Token",
|
||||||
Username: "Brugernavn",
|
Setup2Fa: "Opsæt 2FA",
|
||||||
Password: "Adgangskode",
|
Enable2Fa: "Aktiver 2FA",
|
||||||
"Remember me": "Husk mig",
|
Disable2Fa: "Deaktiver 2FA",
|
||||||
Login: "Log ind",
|
TwoFaSettings: "2FA Indstillinger",
|
||||||
"No Monitors, please": "Ingen Overvågere",
|
TwoFactorAuthentication: "To-Faktor Autentificering",
|
||||||
"add one": "tilføj en",
|
ShowUri: "Vis URI",
|
||||||
"Notification Type": "Underretningstype",
|
AddNewBelowOrSelect: "Tilføj Nyt nedenfor eller Vælg ...",
|
||||||
Email: "E-Mail",
|
TagWithThisNameAlreadyExist: "Et Tag med dette navn findes allerede.",
|
||||||
Test: "Test",
|
TagWithThisValueAlreadyExist: "Et Tag med denne værdi findes allerede.",
|
||||||
"Certificate Info": "Certifikatoplysninger",
|
Color: "farve",
|
||||||
keywordDescription: "Søg efter et søgeord i almindelig HTML- eller JSON -output. Bemærk, at der skelnes mellem store og små bogstaver.",
|
ValueOptional: "værdi (valgfri)",
|
||||||
deleteMonitorMsg: "Er du sikker på, at du vil slette overvågeren?",
|
Search: "Søg...",
|
||||||
deleteNotificationMsg: "Er du sikker på, at du vil slette denne underretning for alle overvågere? ",
|
AvgPing: "Gns. Ping",
|
||||||
resoverserverDescription: "Cloudflare er standardserveren, den kan til enhver tid ændres.",
|
AvgResponse: "Gns. Respons",
|
||||||
"Resolver Server": "Navne-server",
|
EntryPage: "Entry Side",
|
||||||
rrtypeDescription: "Vælg den type RR, du vil overvåge.",
|
StatusPageNothing: "Intet her, tilføj venligst en Gruppe eller en Overvåger.",
|
||||||
"Last Result": "Seneste resultat",
|
NoServices: "Ingen Tjenester",
|
||||||
pauseMonitorMsg: "Er du sikker på, at du vil standse Overvågeren?",
|
AllSystemsOperational: "Alle Systemer i Drift",
|
||||||
"Create your admin account": "Opret din administratorkonto",
|
PartiallyDegradedService: "Delvist Forringet Service",
|
||||||
"Repeat Password": "Gentag adgangskoden",
|
DegradedService: "Forringet Service",
|
||||||
"Resource Record Type": "Resource Record Type",
|
AddGroup: "Tilføj Gruppe",
|
||||||
respTime: "Resp. Tid (ms)",
|
AddAMonitor: "Tilføj en Overvåger",
|
||||||
notAvailableShort: "N/A",
|
EditStatusPage: "Rediger Statusside",
|
||||||
Create: "Opret",
|
GoToDashboard: "Gå til Dashboard",
|
||||||
clearEventsMsg: "Er du sikker på vil slette alle events for denne Overvåger?",
|
Telegram: "Telegram",
|
||||||
clearHeartbeatsMsg: "Er du sikker på vil slette alle heartbeats for denne Overvåger?",
|
Webhook: "Webhook",
|
||||||
confirmClearStatisticsMsg: "Vil du helt sikkert slette ALLE statistikker?",
|
Smtp: "Email (SMTP)",
|
||||||
"Clear Data": "Ryd Data",
|
Discord: "Discord",
|
||||||
Events: "Events",
|
Teams: "Microsoft Teams",
|
||||||
Heartbeats: "Heartbeats",
|
Signal: "Signal",
|
||||||
"Auto Get": "Auto-hent",
|
Gotify: "Gotify",
|
||||||
enableDefaultNotificationDescription: "For hver ny overvåger aktiveres denne underretning som standard. Du kan stadig deaktivere underretningen separat for hver skærm.",
|
Slack: "Slack",
|
||||||
"Default enabled": "Standard aktiveret",
|
RocketChat: "Rocket.chat",
|
||||||
"Also apply to existing monitors": "Anvend også på eksisterende overvågere",
|
Pushover: "Pushover",
|
||||||
Export: "Eksport",
|
Pushy: "Pushy",
|
||||||
Import: "Import",
|
Octopush: "Octopush",
|
||||||
backupDescription: "Du kan sikkerhedskopiere alle Overvågere og alle underretninger til en JSON-fil.",
|
Lunasea: "LunaSea",
|
||||||
backupDescription2: "PS: Historik og hændelsesdata er ikke inkluderet.",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription3: "Følsom data, f.eks. underretnings-tokener, er inkluderet i eksportfilen. Gem den sikkert.",
|
Pushbullet: "Pushbullet",
|
||||||
alertNoFile: "Vælg en fil der skal importeres.",
|
Line: "Line Messenger",
|
||||||
alertWrongFileType: "Vælg venligst en JSON-fil.",
|
Mattermost: "Mattermost"
|
||||||
twoFAVerifyLabel: "Indtast venligst dit token for at bekræfte, at 2FA fungerer",
|
|
||||||
tokenValidSettingsMsg: "Token er gyldigt! Du kan nu gemme 2FA -indstillingerne.",
|
|
||||||
confirmEnableTwoFAMsg: "Er du sikker på at du vil aktivere 2FA?",
|
|
||||||
confirmDisableTwoFAMsg: "Er du sikker på at du vil deaktivere 2FA?",
|
|
||||||
"Apply on all existing monitors": "Anvend på alle eksisterende overvågere",
|
|
||||||
"Verify Token": "Verificere Token",
|
|
||||||
"Setup 2FA": "Opsæt 2FA",
|
|
||||||
"Enable 2FA": "Aktiver 2FA",
|
|
||||||
"Disable 2FA": "Deaktiver 2FA",
|
|
||||||
"2FA Settings": "2FA Indstillinger",
|
|
||||||
"Two Factor Authentication": "To-Faktor Autentificering",
|
|
||||||
Active: "Aktive",
|
|
||||||
Inactive: "Inaktive",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Vis URI",
|
|
||||||
"Clear all statistics": "Ryd alle Statistikker",
|
|
||||||
retryCheckEverySecond: "Prøv igen hvert {0} sekund.",
|
|
||||||
importHandleDescription: "Vælg 'Spring over eksisterende', hvis du vil springe over hver overvåger eller underretning med samme navn. 'Overskriv' sletter alle eksisterende overvågere og underretninger.",
|
|
||||||
confirmImportMsg: "Er du sikker på at importere sikkerhedskopien? Sørg for, at du har valgt den rigtige importindstilling.",
|
|
||||||
"Heartbeat Retry Interval": "Heartbeat Gentagelsesinterval",
|
|
||||||
"Import Backup": "Importer Backup",
|
|
||||||
"Export Backup": "Eksporter Backup",
|
|
||||||
"Skip existing": "Spring over eksisterende",
|
|
||||||
Overwrite: "Overskriv",
|
|
||||||
Options: "Valgmuligheder",
|
|
||||||
"Keep both": "Behold begge",
|
|
||||||
Tags: "Tags",
|
|
||||||
"Add New below or Select...": "Tilføj Nyt nedenfor eller Vælg ...",
|
|
||||||
"Tag with this name already exist.": "Et Tag med dette navn findes allerede.",
|
|
||||||
"Tag with this value already exist.": "Et Tag med denne værdi findes allerede.",
|
|
||||||
color: "farve",
|
|
||||||
"value (optional)": "værdi (valgfri)",
|
|
||||||
Gray: "Grå",
|
|
||||||
Red: "Rød",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Grøn",
|
|
||||||
Blue: "Blå",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Lilla",
|
|
||||||
Pink: "Pink",
|
|
||||||
"Search...": "Søg...",
|
|
||||||
"Avg. Ping": "Gns. Ping",
|
|
||||||
"Avg. Response": "Gns. Respons",
|
|
||||||
"Entry Page": "Entry Side",
|
|
||||||
"statusPageNothing": "Intet her, tilføj venligst en Gruppe eller en Overvåger.",
|
|
||||||
"No Services": "Ingen Tjenester",
|
|
||||||
"All Systems Operational": "Alle Systemer i Drift",
|
|
||||||
"Partially Degraded Service": "Delvist Forringet Service",
|
|
||||||
"Degraded Service": "Forringet Service",
|
|
||||||
"Add Group": "Tilføj Gruppe",
|
|
||||||
"Add a monitor": "Tilføj en Overvåger",
|
|
||||||
"Edit Status Page": "Rediger Statusside",
|
|
||||||
"Go to Dashboard": "Gå til Dashboard",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,181 +1,128 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "German",
|
LanguageName: "German",
|
||||||
Settings: "Einstellungen",
|
CheckEverySecond: "Überprüfe alle {0} Sekunden",
|
||||||
Dashboard: "Dashboard",
|
RetryCheckEverySecond: "Versuche alle {0} Sekunden",
|
||||||
"New Update": "Update Verfügbar",
|
RetriesDescription: "Maximale Anzahl von Wiederholungen, bevor der Dienst als inaktiv markiert und eine Benachrichtigung gesendet wird.",
|
||||||
Language: "Sprache",
|
IgnoreTlsError: "Ignoriere TLS/SSL Fehler von Webseiten",
|
||||||
Appearance: "Erscheinung",
|
UpsideDownModeDescription: "Drehe den Modus um, ist der Dienst erreichbar, wird er als Inaktiv angezeigt.",
|
||||||
Theme: "Thema",
|
MaxRedirectDescription: "Maximale Anzahl von Weiterleitungen, denen gefolgt werden soll. Setzte auf 0, um Weiterleitungen zu deaktivieren.",
|
||||||
General: "Allgemein",
|
AcceptedStatusCodesDescription: "Wähle die Statuscodes aus, welche trotzdem als erfolgreich gewertet werden sollen.",
|
||||||
Version: "Version",
|
PasswordNotMatchMsg: "Passwörter stimmen nicht überein. ",
|
||||||
"Check Update On GitHub": "Überprüfen von Updates auf Github",
|
NotificationDescription: "Weise den Monitor(en) eine Benachrichtigung zu, damit diese Funktion greift.",
|
||||||
List: "Liste",
|
KeywordDescription: "Suche nach einem Schlüsselwort in der HTML oder JSON Ausgabe. Bitte beachte, es wird in der Groß-/Kleinschreibung unterschieden.",
|
||||||
Add: "Hinzufügen",
|
PauseDashboardHome: "Pausiert",
|
||||||
"Add New Monitor": "Neuer Monitor",
|
DeleteMonitorMsg: "Bist du sicher das du den Monitor löschen möchtest?",
|
||||||
"Quick Stats": "Übersicht",
|
DeleteNotificationMsg: "Möchtest du diese Benachrichtigung wirklich für alle Monitore löschen?",
|
||||||
Up: "Aktiv",
|
ResoverserverDescription: "Cloudflare ist als der Standardserver festgelegt, dieser kann jederzeit geändern werden.",
|
||||||
Down: "Inaktiv",
|
RrtypeDescription: "Wähle den RR-Typ aus, welchen du überwachen möchtest.",
|
||||||
Pending: "Ausstehend",
|
PauseMonitorMsg: "Bist du sicher das du den Monitor pausieren möchtest?",
|
||||||
Unknown: "Unbekannt",
|
EnableDefaultNotificationDescription: "Für jeden neuen Monitor wird diese Benachrichtigung standardmäßig aktiviert. Die Benachrichtigung kann weiterhin für jeden Monitor separat deaktiviert werden.",
|
||||||
Pause: "Pausieren",
|
ClearEventsMsg: "Bist du sicher das du alle Ereignisse für diesen Monitor löschen möchtest?",
|
||||||
pauseDashboardHome: "Pausiert",
|
ClearHeartbeatsMsg: "Bist du sicher das du alle Statistiken für diesen Monitor löschen möchtest?",
|
||||||
Name: "Name",
|
ConfirmClearStatisticsMsg: "Bist du sicher das du ALLE Statistiken löschen möchtest?",
|
||||||
Status: "Status",
|
ImportHandleDescription: "Wähle 'Vorhandene überspringen' aus, wenn jeder Monitor oder Benachrichtigung mit demselben Namen übersprungen werden soll. 'Überschreiben' löscht jeden vorhandenen Monitor sowie Benachrichtigungen.",
|
||||||
DateTime: "Datum / Uhrzeit",
|
ConfirmImportMsg: "Möchtest du das Backup wirklich importieren? Bitte stelle sicher, dass die richtige Import Option ausgewählt ist.",
|
||||||
Message: "Nachricht",
|
TwoFaVerifyLabel: "Bitte trage deinen Token ein um zu verifizieren das 2FA funktioniert",
|
||||||
"No important events": "Keine wichtigen Ereignisse",
|
TokenValidSettingsMsg: "Token gültig! Du kannst jetzt die 2FA Einstellungen speichern.",
|
||||||
Resume: "Fortsetzen",
|
ConfirmEnableTwoFaMsg: "Bist du sicher das du 2FA aktivieren möchtest?",
|
||||||
Edit: "Bearbeiten",
|
ConfirmDisableTwoFaMsg: "Bist du sicher das du 2FA deaktivieren möchtest?",
|
||||||
Delete: "Löschen",
|
NewUpdate: "Update Verfügbar",
|
||||||
Current: "Aktuell",
|
CheckUpdateOnGitHub: "Überprüfen von Updates auf Github",
|
||||||
Uptime: "Verfügbarkeit",
|
AddNewMonitor: "Neuer Monitor",
|
||||||
"Cert Exp.": "Zertifikatsablauf",
|
QuickStats: "Übersicht",
|
||||||
days: "Tage",
|
NoImportantEvents: "Keine wichtigen Ereignisse",
|
||||||
day: "Tag",
|
CertExp: "Zertifikatsablauf",
|
||||||
DaysInMonth: "30-Tage",
|
Days: "Tage",
|
||||||
hour: "Stunde",
|
Day: "Tag",
|
||||||
HoursInDay: "24-Stunden",
|
Hour: "Stunde",
|
||||||
checkEverySecond: "Überprüfe alle {0} Sekunden",
|
MonitorType: "Monitor Typ",
|
||||||
Response: "Antwortzeit",
|
FriendlyName: "Anzeigename",
|
||||||
Ping: "Ping",
|
Url: "URL",
|
||||||
"Monitor Type": "Monitor Typ",
|
HeartbeatInterval: "Taktintervall",
|
||||||
Keyword: "Schlüsselwort",
|
HeartbeatRetryInterval: "Takt-Wiederholungsintervall",
|
||||||
"Friendly Name": "Anzeigename",
|
UpsideDownMode: "Umgedrehter Modus",
|
||||||
URL: "URL",
|
MaxRedirects: "Max. Weiterleitungen",
|
||||||
Hostname: "Hostname",
|
AcceptedStatusCodes: "Erlaubte HTTP-Statuscodes",
|
||||||
Port: "Port",
|
NotAvailablePleaseSetup: "Keine verfügbar, bitte einrichten.",
|
||||||
"Heartbeat Interval": "Taktintervall",
|
SetupNotification: "Benachrichtigung einrichten",
|
||||||
Retries: "Wiederholungen",
|
ThemeHeartbeatBar: "Thema - Taktleiste",
|
||||||
retriesDescription: "Maximale Anzahl von Wiederholungen, bevor der Dienst als inaktiv markiert und eine Benachrichtigung gesendet wird.",
|
SearchEngineVisibility: "Suchmaschinensichtbarkeit",
|
||||||
Advanced: "Erweitert",
|
AllowIndexing: "Indizierung zulassen",
|
||||||
ignoreTLSError: "Ignoriere TLS/SSL Fehler von Webseiten",
|
DiscourageSearchEnginesFromIndexingSite: "Halte Suchmaschinen von der Indexierung der Seite ab",
|
||||||
"Upside Down Mode": "Umgedrehter Modus",
|
ChangePassword: "Passwort ändern",
|
||||||
upsideDownModeDescription: "Drehe den Modus um, ist der Dienst erreichbar, wird er als Inaktiv angezeigt.",
|
CurrentPassword: "Dezeitiges Passwort",
|
||||||
"Max. Redirects": "Max. Weiterleitungen",
|
NewPassword: "Neues Passwort",
|
||||||
maxRedirectDescription: "Maximale Anzahl von Weiterleitungen, denen gefolgt werden soll. Setzte auf 0, um Weiterleitungen zu deaktivieren.",
|
RepeatNewPassword: "Wiederhole neues Passwort",
|
||||||
"Accepted Status Codes": "Erlaubte HTTP-Statuscodes",
|
UpdatePassword: "Ändere Passwort",
|
||||||
acceptedStatusCodesDescription: "Wähle die Statuscodes aus, welche trotzdem als erfolgreich gewertet werden sollen.",
|
DisableAuth: "Authentifizierung deaktivieren",
|
||||||
Save: "Speichern",
|
EnableAuth: "Authentifizierung aktivieren",
|
||||||
Notifications: "Benachrichtigungen",
|
IUnderstandPleaseDisable: "Ich verstehe, bitte deaktivieren",
|
||||||
"Not available, please setup.": "Keine verfügbar, bitte einrichten.",
|
RememberMe: "Passwort merken",
|
||||||
"Setup Notification": "Benachrichtigung einrichten",
|
NoMonitorsPlease: "Keine Monitore, bitte",
|
||||||
Light: "Hell",
|
AddOne: "hinzufügen",
|
||||||
Dark: "Dunkel",
|
NotificationType: "Benachrichtigungs Dienst",
|
||||||
Auto: "Auto",
|
CertificateInfo: "Zertifikatsinfo",
|
||||||
"Theme - Heartbeat Bar": "Thema - Taktleiste",
|
ResolverServer: "Auflösungsserver",
|
||||||
Normal: "Normal",
|
ResourceRecordType: "Resource Record Type",
|
||||||
Bottom: "Unten",
|
LastResult: "Letztes Ergebnis",
|
||||||
None: "Keine",
|
CreateYourAdminAccount: "Erstelle dein Admin Konto",
|
||||||
Timezone: "Zeitzone",
|
RepeatPassword: "Wiederhole das Passwort",
|
||||||
"Search Engine Visibility": "Suchmaschinensichtbarkeit",
|
ImportBackup: "Import Backup",
|
||||||
"Allow indexing": "Indizierung zulassen",
|
ExportBackup: "Export Backup",
|
||||||
"Discourage search engines from indexing site": "Halte Suchmaschinen von der Indexierung der Seite ab",
|
RespTime: "Antw. Zeit (ms)",
|
||||||
"Change Password": "Passwort ändern",
|
NotAvailableShort: "N/A",
|
||||||
"Current Password": "Dezeitiges Passwort",
|
DefaultEnabled: "Standardmäßig aktiviert",
|
||||||
"New Password": "Neues Passwort",
|
ApplyOnAllExistingMonitors: "Auf alle existierenden Monitore anwenden",
|
||||||
"Repeat New Password": "Wiederhole neues Passwort",
|
ClearData: "Lösche Daten",
|
||||||
passwordNotMatchMsg: "Passwörter stimmen nicht überein. ",
|
AutoGet: "Auto Get",
|
||||||
"Update Password": "Ändere Passwort",
|
BackupDescription: "Es können alle Monitore und Benachrichtigungen in einer JSON-Datei gesichert werden.",
|
||||||
"Disable Auth": "Authentifizierung deaktivieren",
|
BackupDescription2: "PS: Verlaufs- und Ereignisdaten sind nicht enthalten.",
|
||||||
"Enable Auth": "Authentifizierung aktivieren",
|
BackupDescription3: "Sensible Daten wie Benachrichtigungstoken sind in der Exportdatei enthalten, bitte bewahre sie sorgfältig auf.",
|
||||||
Logout: "Ausloggen",
|
AlertNoFile: "Bitte wähle eine Datei zum importieren aus.",
|
||||||
notificationDescription: "Weise den Monitor(en) eine Benachrichtigung zu, damit diese Funktion greift.",
|
AlertWrongFileType: "Bitte wähle eine JSON Datei aus.",
|
||||||
Leave: "Verlassen",
|
ClearAllStatistics: "Lösche alle Statistiken",
|
||||||
"I understand, please disable": "Ich verstehe, bitte deaktivieren",
|
SkipExisting: "Vorhandene überspringen",
|
||||||
Confirm: "Bestätige",
|
KeepBoth: "Beide behalten",
|
||||||
Yes: "Ja",
|
VerifyToken: "Token verifizieren",
|
||||||
No: "Nein",
|
Setup2Fa: "2FA Einrichten",
|
||||||
Username: "Benutzername",
|
Enable2Fa: "2FA Aktivieren",
|
||||||
Password: "Passwort",
|
Disable2Fa: "2FA deaktivieren",
|
||||||
"Remember me": "Passwort merken",
|
TwoFaSettings: "2FA Einstellungen",
|
||||||
Login: "Einloggen",
|
TwoFactorAuthentication: "Zwei Faktor Authentifizierung",
|
||||||
"No Monitors, please": "Keine Monitore, bitte",
|
ShowUri: "URI Anzeigen",
|
||||||
"add one": "hinzufügen",
|
AddNewBelowOrSelect: "Füge neuen hinzu oder wähle aus...",
|
||||||
"Notification Type": "Benachrichtigungs Dienst",
|
TagWithThisNameAlreadyExist: "Ein Tag mit dem Namen existiert bereits.",
|
||||||
Email: "E-Mail",
|
TagWithThisValueAlreadyExist: "Ein Tag mit dem Wert existiert bereits.",
|
||||||
Test: "Test",
|
Color: "Farbe",
|
||||||
"Certificate Info": "Zertifikatsinfo",
|
ValueOptional: "Wert (Optional)",
|
||||||
keywordDescription: "Suche nach einem Schlüsselwort in der HTML oder JSON Ausgabe. Bitte beachte, es wird in der Groß-/Kleinschreibung unterschieden.",
|
Search: "Suchen...",
|
||||||
deleteMonitorMsg: "Bist du sicher das du den Monitor löschen möchtest?",
|
AvgPing: "Durchsch. Ping",
|
||||||
deleteNotificationMsg: "Möchtest du diese Benachrichtigung wirklich für alle Monitore löschen?",
|
AvgResponse: "Durchsch. Antwort",
|
||||||
resoverserverDescription: "Cloudflare ist als der Standardserver festgelegt, dieser kann jederzeit geändern werden.",
|
EntryPage: "Einstiegsseite",
|
||||||
"Resolver Server": "Auflösungsserver",
|
StatusPageNothing: "Nichts ist hier, bitte füge eine Gruppe oder Monitor hinzu.",
|
||||||
rrtypeDescription: "Wähle den RR-Typ aus, welchen du überwachen möchtest.",
|
NoServices: "Keine Dienste",
|
||||||
"Last Result": "Letztes Ergebnis",
|
AllSystemsOperational: "Alle Systeme Betriebsbereit",
|
||||||
pauseMonitorMsg: "Bist du sicher das du den Monitor pausieren möchtest?",
|
PartiallyDegradedService: "Teilweise beeinträchtigter Dienst",
|
||||||
clearEventsMsg: "Bist du sicher das du alle Ereignisse für diesen Monitor löschen möchtest?",
|
DegradedService: "Eingeschränkter Dienst",
|
||||||
clearHeartbeatsMsg: "Bist du sicher das du alle Statistiken für diesen Monitor löschen möchtest?",
|
AddGroup: "Gruppe hinzufügen",
|
||||||
"Clear Data": "Lösche Daten",
|
AddAMonitor: "Monitor hinzufügen",
|
||||||
Events: "Ereignisse",
|
EditStatusPage: "Bearbeite Statusseite",
|
||||||
Heartbeats: "Statistiken",
|
GoToDashboard: "Gehe zum Dashboard",
|
||||||
confirmClearStatisticsMsg: "Bist du sicher das du ALLE Statistiken löschen möchtest?",
|
Telegram: "Telegram",
|
||||||
"Create your admin account": "Erstelle dein Admin Konto",
|
Webhook: "Webhook",
|
||||||
"Repeat Password": "Wiederhole das Passwort",
|
Smtp: "Email (SMTP)",
|
||||||
"Resource Record Type": "Resource Record Type",
|
Discord: "Discord",
|
||||||
Export: "Export",
|
Teams: "Microsoft Teams",
|
||||||
Import: "Import",
|
Signal: "Signal",
|
||||||
respTime: "Antw. Zeit (ms)",
|
Gotify: "Gotify",
|
||||||
notAvailableShort: "N/A",
|
Slack: "Slack",
|
||||||
"Default enabled": "Standardmäßig aktiviert",
|
RocketChat: "Rocket.chat",
|
||||||
"Apply on all existing monitors": "Auf alle existierenden Monitore anwenden",
|
Pushover: "Pushover",
|
||||||
enableDefaultNotificationDescription: "Für jeden neuen Monitor wird diese Benachrichtigung standardmäßig aktiviert. Die Benachrichtigung kann weiterhin für jeden Monitor separat deaktiviert werden.",
|
Pushy: "Pushy",
|
||||||
Create: "Erstellen",
|
Octopush: "Octopush",
|
||||||
"Auto Get": "Auto Get",
|
Lunasea: "LunaSea",
|
||||||
backupDescription: "Es können alle Monitore und Benachrichtigungen in einer JSON-Datei gesichert werden.",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription2: "PS: Verlaufs- und Ereignisdaten sind nicht enthalten.",
|
Pushbullet: "Pushbullet",
|
||||||
backupDescription3: "Sensible Daten wie Benachrichtigungstoken sind in der Exportdatei enthalten, bitte bewahre sie sorgfältig auf.",
|
Line: "Line Messenger",
|
||||||
alertNoFile: "Bitte wähle eine Datei zum importieren aus.",
|
Mattermost: "Mattermost"
|
||||||
alertWrongFileType: "Bitte wähle eine JSON Datei aus.",
|
|
||||||
"Clear all statistics": "Lösche alle Statistiken",
|
|
||||||
importHandleDescription: "Wähle 'Vorhandene überspringen' aus, wenn jeder Monitor oder Benachrichtigung mit demselben Namen übersprungen werden soll. 'Überschreiben' löscht jeden vorhandenen Monitor sowie Benachrichtigungen.",
|
|
||||||
"Skip existing": "Vorhandene überspringen",
|
|
||||||
Overwrite: "Überschreiben",
|
|
||||||
Options: "Optionen",
|
|
||||||
confirmImportMsg: "Möchtest du das Backup wirklich importieren? Bitte stelle sicher, dass die richtige Import Option ausgewählt ist.",
|
|
||||||
"Keep both": "Beide behalten",
|
|
||||||
twoFAVerifyLabel: "Bitte trage deinen Token ein um zu verifizieren das 2FA funktioniert",
|
|
||||||
"Verify Token": "Token verifizieren",
|
|
||||||
"Setup 2FA": "2FA Einrichten",
|
|
||||||
"Enable 2FA": "2FA Aktivieren",
|
|
||||||
"Disable 2FA": "2FA deaktivieren",
|
|
||||||
"2FA Settings": "2FA Einstellungen",
|
|
||||||
confirmEnableTwoFAMsg: "Bist du sicher das du 2FA aktivieren möchtest?",
|
|
||||||
confirmDisableTwoFAMsg: "Bist du sicher das du 2FA deaktivieren möchtest?",
|
|
||||||
tokenValidSettingsMsg: "Token gültig! Du kannst jetzt die 2FA Einstellungen speichern.",
|
|
||||||
"Two Factor Authentication": "Zwei Faktor Authentifizierung",
|
|
||||||
Active: "Aktiv",
|
|
||||||
Inactive: "Inaktiv",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "URI Anzeigen",
|
|
||||||
Tags: "Tags",
|
|
||||||
"Add New below or Select...": "Füge neuen hinzu oder wähle aus...",
|
|
||||||
"Tag with this name already exist.": "Ein Tag mit dem Namen existiert bereits.",
|
|
||||||
"Tag with this value already exist.": "Ein Tag mit dem Wert existiert bereits.",
|
|
||||||
color: "Farbe",
|
|
||||||
"value (optional)": "Wert (Optional)",
|
|
||||||
Gray: "Grau",
|
|
||||||
Red: "Rot",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Grün",
|
|
||||||
Blue: "Blau",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Lila",
|
|
||||||
Pink: "Pink",
|
|
||||||
"Search...": "Suchen...",
|
|
||||||
"Heartbeat Retry Interval": "Takt-Wiederholungsintervall",
|
|
||||||
retryCheckEverySecond: "Versuche alle {0} Sekunden",
|
|
||||||
"Import Backup": "Import Backup",
|
|
||||||
"Export Backup": "Export Backup",
|
|
||||||
"Avg. Ping": "Durchsch. Ping",
|
|
||||||
"Avg. Response": "Durchsch. Antwort",
|
|
||||||
"Entry Page": "Einstiegsseite",
|
|
||||||
statusPageNothing: "Nichts ist hier, bitte füge eine Gruppe oder Monitor hinzu.",
|
|
||||||
"No Services": "Keine Dienste",
|
|
||||||
"All Systems Operational": "Alle Systeme Betriebsbereit",
|
|
||||||
"Partially Degraded Service": "Teilweise beeinträchtigter Dienst",
|
|
||||||
"Degraded Service": "Eingeschränkter Dienst",
|
|
||||||
"Add Group": "Gruppe hinzufügen",
|
|
||||||
"Add a monitor": "Monitor hinzufügen",
|
|
||||||
"Edit Status Page": "Bearbeite Statusseite",
|
|
||||||
"Go to Dashboard": "Gehe zum Dashboard",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,198 +1,128 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "English",
|
LanguageName: "English",
|
||||||
checkEverySecond: "Check every {0} seconds.",
|
CheckEverySecond: "Check every {0} seconds.",
|
||||||
retryCheckEverySecond: "Retry every {0} seconds.",
|
RetryCheckEverySecond: "Retry every {0} seconds.",
|
||||||
retriesDescription: "Maximum retries before the service is marked as down and a notification is sent",
|
RetriesDescription: "Maximum retries before the service is marked as down and a notification is sent",
|
||||||
ignoreTLSError: "Ignore TLS/SSL error for HTTPS websites",
|
IgnoreTlsError: "Ignore TLS/SSL error for HTTPS websites",
|
||||||
upsideDownModeDescription: "Flip the status upside down. If the service is reachable, it is DOWN.",
|
UpsideDownModeDescription: "Flip the status upside down. If the service is reachable, it is DOWN.",
|
||||||
maxRedirectDescription: "Maximum number of redirects to follow. Set to 0 to disable redirects.",
|
MaxRedirectDescription: "Maximum number of redirects to follow. Set to 0 to disable redirects.",
|
||||||
acceptedStatusCodesDescription: "Select status codes which are considered as a successful response.",
|
AcceptedStatusCodesDescription: "Select status codes which are considered as a successful response.",
|
||||||
passwordNotMatchMsg: "The repeat password does not match.",
|
PasswordNotMatchMsg: "The repeat password does not match.",
|
||||||
notificationDescription: "Please assign a notification to monitor(s) to get it to work.",
|
NotificationDescription: "Please assign a notification to monitor(s) to get it to work.",
|
||||||
keywordDescription: "Search keyword in plain html or JSON response and it is case-sensitive",
|
KeywordDescription: "Search keyword in plain html or JSON response and it is case-sensitive",
|
||||||
pauseDashboardHome: "Pause",
|
PauseDashboardHome: "Pause",
|
||||||
deleteMonitorMsg: "Are you sure want to delete this monitor?",
|
DeleteMonitorMsg: "Are you sure want to delete this monitor?",
|
||||||
deleteNotificationMsg: "Are you sure want to delete this notification for all monitors?",
|
DeleteNotificationMsg: "Are you sure want to delete this notification for all monitors?",
|
||||||
resoverserverDescription: "Cloudflare is the default server, you can change the resolver server anytime.",
|
ResoverserverDescription: "Cloudflare is the default server, you can change the resolver server anytime.",
|
||||||
rrtypeDescription: "Select the RR-Type you want to monitor",
|
RrtypeDescription: "Select the RR-Type you want to monitor",
|
||||||
pauseMonitorMsg: "Are you sure want to pause?",
|
PauseMonitorMsg: "Are you sure want to pause?",
|
||||||
enableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
EnableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
||||||
clearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
ClearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
||||||
clearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
ClearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
||||||
confirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
ConfirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
||||||
importHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
ImportHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
||||||
confirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
ConfirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
||||||
twoFAVerifyLabel: "Please type in your token to verify that 2FA is working",
|
TwoFaVerifyLabel: "Please type in your token to verify that 2FA is working",
|
||||||
tokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
TokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
||||||
confirmEnableTwoFAMsg: "Are you sure you want to enable 2FA?",
|
ConfirmEnableTwoFaMsg: "Are you sure you want to enable 2FA?",
|
||||||
confirmDisableTwoFAMsg: "Are you sure you want to disable 2FA?",
|
ConfirmDisableTwoFaMsg: "Are you sure you want to disable 2FA?",
|
||||||
Settings: "Settings",
|
NewUpdate: "New Update",
|
||||||
Dashboard: "Dashboard",
|
CheckUpdateOnGitHub: "Check Update On GitHub",
|
||||||
"New Update": "New Update",
|
AddNewMonitor: "Add New Monitor",
|
||||||
Language: "Language",
|
QuickStats: "Quick Stats",
|
||||||
Appearance: "Appearance",
|
NoImportantEvents: "No important events",
|
||||||
Theme: "Theme",
|
CertExp: "Cert Exp.",
|
||||||
General: "General",
|
Days: "days",
|
||||||
Version: "Version",
|
Day: "day",
|
||||||
"Check Update On GitHub": "Check Update On GitHub",
|
Hour: "hour",
|
||||||
List: "List",
|
MonitorType: "Monitor Type",
|
||||||
Add: "Add",
|
FriendlyName: "Friendly Name",
|
||||||
"Add New Monitor": "Add New Monitor",
|
Url: "URL",
|
||||||
"Quick Stats": "Quick Stats",
|
HeartbeatInterval: "Heartbeat Interval",
|
||||||
Up: "Up",
|
HeartbeatRetryInterval: "Heartbeat Retry Interval",
|
||||||
Down: "Down",
|
UpsideDownMode: "Upside Down Mode",
|
||||||
Pending: "Pending",
|
MaxRedirects: "Max. Redirects",
|
||||||
Unknown: "Unknown",
|
AcceptedStatusCodes: "Accepted Status Codes",
|
||||||
Pause: "Pause",
|
NotAvailablePleaseSetup: "Not available, please setup.",
|
||||||
Name: "Name",
|
SetupNotification: "Setup Notification",
|
||||||
Status: "Status",
|
ThemeHeartbeatBar: "Theme - Heartbeat Bar",
|
||||||
DateTime: "DateTime",
|
SearchEngineVisibility: "Search Engine Visibility",
|
||||||
Message: "Message",
|
AllowIndexing: "Allow indexing",
|
||||||
"No important events": "No important events",
|
DiscourageSearchEnginesFromIndexingSite: "Discourage search engines from indexing site",
|
||||||
Resume: "Resume",
|
ChangePassword: "Change Password",
|
||||||
Edit: "Edit",
|
CurrentPassword: "Current Password",
|
||||||
Delete: "Delete",
|
NewPassword: "New Password",
|
||||||
Current: "Current",
|
RepeatNewPassword: "Repeat New Password",
|
||||||
Uptime: "Uptime",
|
UpdatePassword: "Update Password",
|
||||||
"Cert Exp.": "Cert Exp.",
|
DisableAuth: "Disable Auth",
|
||||||
days: "days",
|
EnableAuth: "Enable Auth",
|
||||||
day: "day",
|
IUnderstandPleaseDisable: "I understand, please disable",
|
||||||
DaysInMonth: "30-day",
|
RememberMe: "Remember me",
|
||||||
hour: "hour",
|
NoMonitorsPlease: "No Monitors, please",
|
||||||
HoursInDay: "24-hour",
|
AddOne: "add one",
|
||||||
Response: "Response",
|
NotificationType: "Notification Type",
|
||||||
Ping: "Ping",
|
CertificateInfo: "Certificate Info",
|
||||||
"Monitor Type": "Monitor Type",
|
ResolverServer: "Resolver Server",
|
||||||
Keyword: "Keyword",
|
ResourceRecordType: "Resource Record Type",
|
||||||
"Friendly Name": "Friendly Name",
|
LastResult: "Last Result",
|
||||||
URL: "URL",
|
CreateYourAdminAccount: "Create your admin account",
|
||||||
Hostname: "Hostname",
|
RepeatPassword: "Repeat Password",
|
||||||
Port: "Port",
|
ImportBackup: "Import Backup",
|
||||||
"Heartbeat Interval": "Heartbeat Interval",
|
ExportBackup: "Export Backup",
|
||||||
Retries: "Retries",
|
RespTime: "Resp. Time (ms)",
|
||||||
"Heartbeat Retry Interval": "Heartbeat Retry Interval",
|
NotAvailableShort: "N/A",
|
||||||
Advanced: "Advanced",
|
DefaultEnabled: "Default enabled",
|
||||||
"Upside Down Mode": "Upside Down Mode",
|
ApplyOnAllExistingMonitors: "Apply on all existing monitors",
|
||||||
"Max. Redirects": "Max. Redirects",
|
ClearData: "Clear Data",
|
||||||
"Accepted Status Codes": "Accepted Status Codes",
|
AutoGet: "Auto Get",
|
||||||
Save: "Save",
|
BackupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
||||||
Notifications: "Notifications",
|
BackupDescription2: "PS: History and event data is not included.",
|
||||||
"Not available, please setup.": "Not available, please setup.",
|
BackupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
||||||
"Setup Notification": "Setup Notification",
|
AlertNoFile: "Please select a file to import.",
|
||||||
Light: "Light",
|
AlertWrongFileType: "Please select a JSON file.",
|
||||||
Dark: "Dark",
|
ClearAllStatistics: "Clear all Statistics",
|
||||||
Auto: "Auto",
|
SkipExisting: "Skip existing",
|
||||||
"Theme - Heartbeat Bar": "Theme - Heartbeat Bar",
|
KeepBoth: "Keep both",
|
||||||
Normal: "Normal",
|
VerifyToken: "Verify Token",
|
||||||
Bottom: "Bottom",
|
Setup2Fa: "Setup 2FA",
|
||||||
None: "None",
|
Enable2Fa: "Enable 2FA",
|
||||||
Timezone: "Timezone",
|
Disable2Fa: "Disable 2FA",
|
||||||
"Search Engine Visibility": "Search Engine Visibility",
|
TwoFaSettings: "2FA Settings",
|
||||||
"Allow indexing": "Allow indexing",
|
TwoFactorAuthentication: "Two Factor Authentication",
|
||||||
"Discourage search engines from indexing site": "Discourage search engines from indexing site",
|
ShowUri: "Show URI",
|
||||||
"Change Password": "Change Password",
|
AddNewBelowOrSelect: "Add New below or Select...",
|
||||||
"Current Password": "Current Password",
|
TagWithThisNameAlreadyExist: "Tag with this name already exist.",
|
||||||
"New Password": "New Password",
|
TagWithThisValueAlreadyExist: "Tag with this value already exist.",
|
||||||
"Repeat New Password": "Repeat New Password",
|
Color: "color",
|
||||||
"Update Password": "Update Password",
|
ValueOptional: "value (optional)",
|
||||||
"Disable Auth": "Disable Auth",
|
Search: "Search...",
|
||||||
"Enable Auth": "Enable Auth",
|
AvgPing: "Avg. Ping",
|
||||||
Logout: "Logout",
|
AvgResponse: "Avg. Response",
|
||||||
Leave: "Leave",
|
EntryPage: "Entry Page",
|
||||||
"I understand, please disable": "I understand, please disable",
|
StatusPageNothing: "Nothing here, please add a group or a monitor.",
|
||||||
Confirm: "Confirm",
|
NoServices: "No Services",
|
||||||
Yes: "Yes",
|
AllSystemsOperational: "All Systems Operational",
|
||||||
No: "No",
|
PartiallyDegradedService: "Partially Degraded Service",
|
||||||
Username: "Username",
|
DegradedService: "Degraded Service",
|
||||||
Password: "Password",
|
AddGroup: "Add Group",
|
||||||
"Remember me": "Remember me",
|
AddAMonitor: "Add a monitor",
|
||||||
Login: "Login",
|
EditStatusPage: "Edit Status Page",
|
||||||
"No Monitors, please": "No Monitors, please",
|
GoToDashboard: "Go to Dashboard",
|
||||||
"add one": "add one",
|
Telegram: "Telegram",
|
||||||
"Notification Type": "Notification Type",
|
Webhook: "Webhook",
|
||||||
Email: "Email",
|
Smtp: "Email (SMTP)",
|
||||||
Test: "Test",
|
Discord: "Discord",
|
||||||
"Certificate Info": "Certificate Info",
|
Teams: "Microsoft Teams",
|
||||||
"Resolver Server": "Resolver Server",
|
Signal: "Signal",
|
||||||
"Resource Record Type": "Resource Record Type",
|
Gotify: "Gotify",
|
||||||
"Last Result": "Last Result",
|
Slack: "Slack",
|
||||||
"Create your admin account": "Create your admin account",
|
RocketChat: "Rocket.chat",
|
||||||
"Repeat Password": "Repeat Password",
|
Pushover: "Pushover",
|
||||||
"Import Backup": "Import Backup",
|
Pushy: "Pushy",
|
||||||
"Export Backup": "Export Backup",
|
Octopush: "Octopush",
|
||||||
Export: "Export",
|
Lunasea: "LunaSea",
|
||||||
Import: "Import",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
respTime: "Resp. Time (ms)",
|
Pushbullet: "Pushbullet",
|
||||||
notAvailableShort: "N/A",
|
Line: "Line Messenger",
|
||||||
"Default enabled": "Default enabled",
|
Mattermost: "Mattermost"
|
||||||
"Apply on all existing monitors": "Apply on all existing monitors",
|
|
||||||
Create: "Create",
|
|
||||||
"Clear Data": "Clear Data",
|
|
||||||
Events: "Events",
|
|
||||||
Heartbeats: "Heartbeats",
|
|
||||||
"Auto Get": "Auto Get",
|
|
||||||
backupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
|
||||||
backupDescription2: "PS: History and event data is not included.",
|
|
||||||
backupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
|
||||||
alertNoFile: "Please select a file to import.",
|
|
||||||
alertWrongFileType: "Please select a JSON file.",
|
|
||||||
"Clear all statistics": "Clear all Statistics",
|
|
||||||
"Skip existing": "Skip existing",
|
|
||||||
Overwrite: "Overwrite",
|
|
||||||
Options: "Options",
|
|
||||||
"Keep both": "Keep both",
|
|
||||||
"Verify Token": "Verify Token",
|
|
||||||
"Setup 2FA": "Setup 2FA",
|
|
||||||
"Enable 2FA": "Enable 2FA",
|
|
||||||
"Disable 2FA": "Disable 2FA",
|
|
||||||
"2FA Settings": "2FA Settings",
|
|
||||||
"Two Factor Authentication": "Two Factor Authentication",
|
|
||||||
Active: "Active",
|
|
||||||
Inactive: "Inactive",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Show URI",
|
|
||||||
Tags: "Tags",
|
|
||||||
"Add New below or Select...": "Add New below or Select...",
|
|
||||||
"Tag with this name already exist.": "Tag with this name already exist.",
|
|
||||||
"Tag with this value already exist.": "Tag with this value already exist.",
|
|
||||||
color: "color",
|
|
||||||
"value (optional)": "value (optional)",
|
|
||||||
Gray: "Gray",
|
|
||||||
Red: "Red",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Green",
|
|
||||||
Blue: "Blue",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Purple",
|
|
||||||
Pink: "Pink",
|
|
||||||
"Search...": "Search...",
|
|
||||||
"Avg. Ping": "Avg. Ping",
|
|
||||||
"Avg. Response": "Avg. Response",
|
|
||||||
"Entry Page": "Entry Page",
|
|
||||||
statusPageNothing: "Nothing here, please add a group or a monitor.",
|
|
||||||
"No Services": "No Services",
|
|
||||||
"All Systems Operational": "All Systems Operational",
|
|
||||||
"Partially Degraded Service": "Partially Degraded Service",
|
|
||||||
"Degraded Service": "Degraded Service",
|
|
||||||
"Add Group": "Add Group",
|
|
||||||
"Add a monitor": "Add a monitor",
|
|
||||||
"Edit Status Page": "Edit Status Page",
|
|
||||||
"Go to Dashboard": "Go to Dashboard",
|
|
||||||
"telegram": "Telegram",
|
|
||||||
"webhook": "Webhook",
|
|
||||||
"smtp": "Email (SMTP)",
|
|
||||||
"discord": "Discord",
|
|
||||||
"teams": "Microsoft Teams",
|
|
||||||
"signal": "Signal",
|
|
||||||
"gotify": "Gotify",
|
|
||||||
"slack": "Slack",
|
|
||||||
"rocket.chat": "Rocket.chat",
|
|
||||||
"pushover": "Pushover",
|
|
||||||
"pushy": "Pushy",
|
|
||||||
"octopush": "Octopush",
|
|
||||||
"lunasea": "LunaSea",
|
|
||||||
"apprise": "Apprise (Support 50+ Notification services)",
|
|
||||||
"pushbullet": "Pushbullet",
|
|
||||||
"line": "Line Messenger",
|
|
||||||
"mattermost": "Mattermost",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Español",
|
Also apply to existing monitors: "Also apply to existing monitors",
|
||||||
checkEverySecond: "Comprobar cada {0} segundos.",
|
LanguageName: "Español",
|
||||||
retriesDescription: "Número máximo de intentos antes de que el servicio se marque como CAÍDO y una notificación sea enviada.",
|
CheckEverySecond: "Comprobar cada {0} segundos.",
|
||||||
ignoreTLSError: "Ignorar error TLS/SSL para sitios web HTTPS",
|
RetryCheckEverySecond: "Retry every {0} seconds.",
|
||||||
upsideDownModeDescription: "Invertir el estado. Si el servicio es alcanzable, está CAÍDO.",
|
RetriesDescription: "Número máximo de intentos antes de que el servicio se marque como CAÍDO y una notificación sea enviada.",
|
||||||
maxRedirectDescription: "Número máximo de direcciones a seguir. Establecer a 0 para deshabilitar.",
|
IgnoreTlsError: "Ignorar error TLS/SSL para sitios web HTTPS",
|
||||||
acceptedStatusCodesDescription: "Seleccionar los códigos de estado que se consideran como respuesta exitosa.",
|
UpsideDownModeDescription: "Invertir el estado. Si el servicio es alcanzable, está CAÍDO.",
|
||||||
passwordNotMatchMsg: "La contraseña repetida no coincide.",
|
MaxRedirectDescription: "Número máximo de direcciones a seguir. Establecer a 0 para deshabilitar.",
|
||||||
notificationDescription: "Por favor asigne una notificación a el/los monitor(es) para hacerlos funcional(es).",
|
AcceptedStatusCodesDescription: "Seleccionar los códigos de estado que se consideran como respuesta exitosa.",
|
||||||
keywordDescription: "Palabra clave en HTML plano o respuesta JSON y es sensible a mayúsculas",
|
PasswordNotMatchMsg: "La contraseña repetida no coincide.",
|
||||||
pauseDashboardHome: "Pausar",
|
NotificationDescription: "Por favor asigne una notificación a el/los monitor(es) para hacerlos funcional(es).",
|
||||||
deleteMonitorMsg: "¿Seguro que quieres eliminar este monitor?",
|
KeywordDescription: "Palabra clave en HTML plano o respuesta JSON y es sensible a mayúsculas",
|
||||||
deleteNotificationMsg: "¿Seguro que quieres eliminar esta notificación para todos los monitores?",
|
PauseDashboardHome: "Pausar",
|
||||||
resoverserverDescription: "Cloudflare es el servidor por defecto, puedes cambiar el servidor de resolución en cualquier momento.",
|
DeleteMonitorMsg: "¿Seguro que quieres eliminar este monitor?",
|
||||||
rrtypeDescription: "Selecciona el tipo de registro que quieres monitorizar",
|
DeleteNotificationMsg: "¿Seguro que quieres eliminar esta notificación para todos los monitores?",
|
||||||
pauseMonitorMsg: "¿Seguro que quieres pausar?",
|
ResoverserverDescription: "Cloudflare es el servidor por defecto, puedes cambiar el servidor de resolución en cualquier momento.",
|
||||||
Settings: "Ajustes",
|
RrtypeDescription: "Selecciona el tipo de registro que quieres monitorizar",
|
||||||
Dashboard: "Panel",
|
PauseMonitorMsg: "¿Seguro que quieres pausar?",
|
||||||
"New Update": "Vueva actualización",
|
EnableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
||||||
Language: "Idioma",
|
ClearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
||||||
Appearance: "Apariencia",
|
ClearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
||||||
Theme: "Tema",
|
ConfirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
||||||
General: "General",
|
ImportHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
||||||
Version: "Versión",
|
ConfirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
||||||
"Check Update On GitHub": "Comprobar actualizaciones en GitHub",
|
TwoFaVerifyLabel: "Please type in your token to verify that 2FA is working",
|
||||||
List: "Lista",
|
TokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
||||||
Add: "Añadir",
|
ConfirmEnableTwoFaMsg: "Are you sure you want to enable 2FA?",
|
||||||
"Add New Monitor": "Añadir nuevo monitor",
|
ConfirmDisableTwoFaMsg: "Are you sure you want to disable 2FA?",
|
||||||
"Quick Stats": "Estadísticas rápidas",
|
NewUpdate: "Vueva actualización",
|
||||||
Up: "Funcional",
|
CheckUpdateOnGitHub: "Comprobar actualizaciones en GitHub",
|
||||||
Down: "Caído",
|
AddNewMonitor: "Añadir nuevo monitor",
|
||||||
Pending: "Pendiente",
|
QuickStats: "Estadísticas rápidas",
|
||||||
Unknown: "Desconocido",
|
NoImportantEvents: "No hay eventos importantes",
|
||||||
Pause: "Pausa",
|
CertExp: "Caducidad cert.",
|
||||||
Name: "Nombre",
|
Days: "días",
|
||||||
Status: "Estado",
|
Day: "día",
|
||||||
DateTime: "Fecha y Hora",
|
Hour: "hora",
|
||||||
Message: "Mensaje",
|
MonitorType: "Tipo de Monitor",
|
||||||
"No important events": "No hay eventos importantes",
|
FriendlyName: "Nombre sencillo",
|
||||||
Resume: "Reanudar",
|
Url: "URL",
|
||||||
Edit: "Editar",
|
HeartbeatInterval: "Intervalo de latido",
|
||||||
Delete: "Eliminar",
|
HeartbeatRetryInterval: "Heartbeat Retry Interval",
|
||||||
Current: "Actual",
|
UpsideDownMode: "Modo invertido",
|
||||||
Uptime: "Tiempo activo",
|
MaxRedirects: "Máx. redirecciones",
|
||||||
"Cert Exp.": "Caducidad cert.",
|
AcceptedStatusCodes: "Códigos de estado aceptados",
|
||||||
days: "días",
|
NotAvailablePleaseSetup: "No disponible, por favor configurar.",
|
||||||
day: "día",
|
SetupNotification: "Configurar notificación",
|
||||||
DaysInMonth: "30-día",
|
ThemeHeartbeatBar: "Tema - Barra de intervalo de latido",
|
||||||
hour: "hora",
|
SearchEngineVisibility: "Visibilidad motor de búsqueda",
|
||||||
HoursInDay: "24-hora",
|
AllowIndexing: "Permitir indexación",
|
||||||
Response: "Respuesta",
|
DiscourageSearchEnginesFromIndexingSite: "Disuadir a los motores de búsqueda de indexar el sitio",
|
||||||
Ping: "Ping",
|
ChangePassword: "Cambiar contraseña",
|
||||||
"Monitor Type": "Tipo de Monitor",
|
CurrentPassword: "Contraseña actual",
|
||||||
Keyword: "Palabra clave",
|
NewPassword: "Nueva contraseña",
|
||||||
"Friendly Name": "Nombre sencillo",
|
RepeatNewPassword: "Repetir nueva contraseña",
|
||||||
URL: "URL",
|
UpdatePassword: "Actualizar contraseña",
|
||||||
Hostname: "Nombre del host",
|
DisableAuth: "Deshabilitar Autenticación ",
|
||||||
Port: "Puerto",
|
EnableAuth: "Habilitar Autenticación ",
|
||||||
"Heartbeat Interval": "Intervalo de latido",
|
IUnderstandPleaseDisable: "Lo comprendo, por favor deshabilitar",
|
||||||
Retries: "Reintentos",
|
RememberMe: "Recordarme",
|
||||||
Advanced: "Avanzado",
|
NoMonitorsPlease: "Sin monitores, por favor",
|
||||||
"Upside Down Mode": "Modo invertido",
|
AddOne: "añade uno",
|
||||||
"Max. Redirects": "Máx. redirecciones",
|
NotificationType: "Tipo de notificación",
|
||||||
"Accepted Status Codes": "Códigos de estado aceptados",
|
CertificateInfo: "Información del certificado ",
|
||||||
Save: "Guardar",
|
ResolverServer: "Servidor de resolución",
|
||||||
Notifications: "Notificaciones",
|
ResourceRecordType: "Tipo de Registro",
|
||||||
"Not available, please setup.": "No disponible, por favor configurar.",
|
LastResult: "Último resultado",
|
||||||
"Setup Notification": "Configurar notificación",
|
CreateYourAdminAccount: "Crea tu cuenta de administrador",
|
||||||
Light: "Claro",
|
RepeatPassword: "Repetir contraseña",
|
||||||
Dark: "Oscuro",
|
ImportBackup: "Import Backup",
|
||||||
Auto: "Auto",
|
ExportBackup: "Export Backup",
|
||||||
"Theme - Heartbeat Bar": "Tema - Barra de intervalo de latido",
|
RespTime: "Tiempo de resp. (ms)",
|
||||||
Normal: "Normal",
|
NotAvailableShort: "N/A",
|
||||||
Bottom: "Abajo",
|
DefaultEnabled: "Default enabled",
|
||||||
None: "Ninguno",
|
ApplyOnAllExistingMonitors: "Apply on all existing monitors",
|
||||||
Timezone: "Zona horaria",
|
ClearData: "Clear Data",
|
||||||
"Search Engine Visibility": "Visibilidad motor de búsqueda",
|
AutoGet: "Auto Get",
|
||||||
"Allow indexing": "Permitir indexación",
|
BackupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
||||||
"Discourage search engines from indexing site": "Disuadir a los motores de búsqueda de indexar el sitio",
|
BackupDescription2: "PS: History and event data is not included.",
|
||||||
"Change Password": "Cambiar contraseña",
|
BackupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
||||||
"Current Password": "Contraseña actual",
|
AlertNoFile: "Please select a file to import.",
|
||||||
"New Password": "Nueva contraseña",
|
AlertWrongFileType: "Please select a JSON file.",
|
||||||
"Repeat New Password": "Repetir nueva contraseña",
|
ClearAllStatistics: "Clear all Statistics",
|
||||||
"Update Password": "Actualizar contraseña",
|
SkipExisting: "Skip existing",
|
||||||
"Disable Auth": "Deshabilitar Autenticación ",
|
KeepBoth: "Keep both",
|
||||||
"Enable Auth": "Habilitar Autenticación ",
|
VerifyToken: "Verify Token",
|
||||||
Logout: "Cerrar sesión",
|
Setup2Fa: "Setup 2FA",
|
||||||
Leave: "Salir",
|
Enable2Fa: "Enable 2FA",
|
||||||
"I understand, please disable": "Lo comprendo, por favor deshabilitar",
|
Disable2Fa: "Disable 2FA",
|
||||||
Confirm: "Confirmar",
|
TwoFaSettings: "2FA Settings",
|
||||||
Yes: "Sí",
|
TwoFactorAuthentication: "Two Factor Authentication",
|
||||||
No: "No",
|
ShowUri: "Show URI",
|
||||||
Username: "Usuario",
|
AddNewBelowOrSelect: "Add New below or Select...",
|
||||||
Password: "Contraseña",
|
TagWithThisNameAlreadyExist: "Tag with this name already exist.",
|
||||||
"Remember me": "Recordarme",
|
TagWithThisValueAlreadyExist: "Tag with this value already exist.",
|
||||||
Login: "Acceso",
|
Color: "color",
|
||||||
"No Monitors, please": "Sin monitores, por favor",
|
ValueOptional: "value (optional)",
|
||||||
"add one": "añade uno",
|
Search: "Search...",
|
||||||
"Notification Type": "Tipo de notificación",
|
AvgPing: "Avg. Ping",
|
||||||
Email: "Email",
|
AvgResponse: "Avg. Response",
|
||||||
Test: "Test",
|
EntryPage: "Entry Page",
|
||||||
"Certificate Info": "Información del certificado ",
|
StatusPageNothing: "Nothing here, please add a group or a monitor.",
|
||||||
"Resolver Server": "Servidor de resolución",
|
NoServices: "No Services",
|
||||||
"Resource Record Type": "Tipo de Registro",
|
AllSystemsOperational: "All Systems Operational",
|
||||||
"Last Result": "Último resultado",
|
PartiallyDegradedService: "Partially Degraded Service",
|
||||||
"Create your admin account": "Crea tu cuenta de administrador",
|
DegradedService: "Degraded Service",
|
||||||
"Repeat Password": "Repetir contraseña",
|
AddGroup: "Add Group",
|
||||||
respTime: "Tiempo de resp. (ms)",
|
AddAMonitor: "Add a monitor",
|
||||||
notAvailableShort: "N/A",
|
EditStatusPage: "Edit Status Page",
|
||||||
Create: "Create",
|
GoToDashboard: "Go to Dashboard",
|
||||||
clearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
Telegram: "Telegram",
|
||||||
clearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
Webhook: "Webhook",
|
||||||
confirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
Smtp: "Email (SMTP)",
|
||||||
"Clear Data": "Clear Data",
|
Discord: "Discord",
|
||||||
Events: "Events",
|
Teams: "Microsoft Teams",
|
||||||
Heartbeats: "Heartbeats",
|
Signal: "Signal",
|
||||||
"Auto Get": "Auto Get",
|
Gotify: "Gotify",
|
||||||
enableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
Slack: "Slack",
|
||||||
"Default enabled": "Default enabled",
|
RocketChat: "Rocket.chat",
|
||||||
"Also apply to existing monitors": "Also apply to existing monitors",
|
Pushover: "Pushover",
|
||||||
Export: "Export",
|
Pushy: "Pushy",
|
||||||
Import: "Import",
|
Octopush: "Octopush",
|
||||||
backupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
Lunasea: "LunaSea",
|
||||||
backupDescription2: "PS: History and event data is not included.",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
Pushbullet: "Pushbullet",
|
||||||
alertNoFile: "Please select a file to import.",
|
Line: "Line Messenger",
|
||||||
alertWrongFileType: "Please select a JSON file.",
|
Mattermost: "Mattermost"
|
||||||
twoFAVerifyLabel: "Please type in your token to verify that 2FA is working",
|
|
||||||
tokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
|
||||||
confirmEnableTwoFAMsg: "Are you sure you want to enable 2FA?",
|
|
||||||
confirmDisableTwoFAMsg: "Are you sure you want to disable 2FA?",
|
|
||||||
"Apply on all existing monitors": "Apply on all existing monitors",
|
|
||||||
"Verify Token": "Verify Token",
|
|
||||||
"Setup 2FA": "Setup 2FA",
|
|
||||||
"Enable 2FA": "Enable 2FA",
|
|
||||||
"Disable 2FA": "Disable 2FA",
|
|
||||||
"2FA Settings": "2FA Settings",
|
|
||||||
"Two Factor Authentication": "Two Factor Authentication",
|
|
||||||
Active: "Active",
|
|
||||||
Inactive: "Inactive",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Show URI",
|
|
||||||
"Clear all statistics": "Clear all Statistics",
|
|
||||||
retryCheckEverySecond: "Retry every {0} seconds.",
|
|
||||||
importHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
|
||||||
confirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
|
||||||
"Heartbeat Retry Interval": "Heartbeat Retry Interval",
|
|
||||||
"Import Backup": "Import Backup",
|
|
||||||
"Export Backup": "Export Backup",
|
|
||||||
"Skip existing": "Skip existing",
|
|
||||||
Overwrite: "Overwrite",
|
|
||||||
Options: "Options",
|
|
||||||
"Keep both": "Keep both",
|
|
||||||
Tags: "Tags",
|
|
||||||
"Add New below or Select...": "Add New below or Select...",
|
|
||||||
"Tag with this name already exist.": "Tag with this name already exist.",
|
|
||||||
"Tag with this value already exist.": "Tag with this value already exist.",
|
|
||||||
color: "color",
|
|
||||||
"value (optional)": "value (optional)",
|
|
||||||
Gray: "Gray",
|
|
||||||
Red: "Red",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Green",
|
|
||||||
Blue: "Blue",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Purple",
|
|
||||||
Pink: "Pink",
|
|
||||||
"Search...": "Search...",
|
|
||||||
"Avg. Ping": "Avg. Ping",
|
|
||||||
"Avg. Response": "Avg. Response",
|
|
||||||
"Entry Page": "Entry Page",
|
|
||||||
statusPageNothing: "Nothing here, please add a group or a monitor.",
|
|
||||||
"No Services": "No Services",
|
|
||||||
"All Systems Operational": "All Systems Operational",
|
|
||||||
"Partially Degraded Service": "Partially Degraded Service",
|
|
||||||
"Degraded Service": "Degraded Service",
|
|
||||||
"Add Group": "Add Group",
|
|
||||||
"Add a monitor": "Add a monitor",
|
|
||||||
"Edit Status Page": "Edit Status Page",
|
|
||||||
"Go to Dashboard": "Go to Dashboard",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,181 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "eesti",
|
Status Page: "Ülevaade",
|
||||||
retryCheckEverySecond: "Kontrolli {0} sekundilise vahega.",
|
LanguageName: "eesti",
|
||||||
retriesDescription: "Mitu korda tuleb kontrollida, mille järel märkida 'maas' ja saata välja teavitus.",
|
CheckEverySecond: "Check every {0} seconds.",
|
||||||
ignoreTLSError: "Eira TLS/SSL viga HTTPS veebisaitidel.",
|
RetryCheckEverySecond: "Kontrolli {0} sekundilise vahega.",
|
||||||
upsideDownModeDescription: "Käitle teenuse saadavust rikkena, teenuse kättesaamatust töötavaks.",
|
RetriesDescription: "Mitu korda tuleb kontrollida, mille järel märkida 'maas' ja saata välja teavitus.",
|
||||||
maxRedirectDescription: "Suurim arv ümbersuunamisi, millele järgida. 0 ei luba ühtegi ",
|
IgnoreTlsError: "Eira TLS/SSL viga HTTPS veebisaitidel.",
|
||||||
acceptedStatusCodesDescription: "Vali välja HTTP koodid, mida arvestada kõlblikuks.",
|
UpsideDownModeDescription: "Käitle teenuse saadavust rikkena, teenuse kättesaamatust töötavaks.",
|
||||||
passwordNotMatchMsg: "Salasõnad ei kattu.",
|
MaxRedirectDescription: "Suurim arv ümbersuunamisi, millele järgida. 0 ei luba ühtegi ",
|
||||||
notificationDescription: "Teavitusteenuse kasutamiseks seo see seirega.",
|
AcceptedStatusCodesDescription: "Vali välja HTTP koodid, mida arvestada kõlblikuks.",
|
||||||
keywordDescription: "Jälgi võtmesõna HTML või JSON vastustes. (tõstutundlik)",
|
PasswordNotMatchMsg: "Salasõnad ei kattu.",
|
||||||
pauseDashboardHome: "Seisatud",
|
NotificationDescription: "Teavitusteenuse kasutamiseks seo see seirega.",
|
||||||
deleteMonitorMsg: "Kas soovid eemaldada seire?",
|
KeywordDescription: "Jälgi võtmesõna HTML või JSON vastustes. (tõstutundlik)",
|
||||||
deleteNotificationMsg: "Kas soovid eemaldada selle teavitusteenuse kõikidelt seiretelt?",
|
PauseDashboardHome: "Seisatud",
|
||||||
resoverserverDescription: "Cloudflare on vaikimisi pöördserver.",
|
DeleteMonitorMsg: "Kas soovid eemaldada seire?",
|
||||||
rrtypeDescription: "Vali kirje tüüp, mida soovid jälgida.",
|
DeleteNotificationMsg: "Kas soovid eemaldada selle teavitusteenuse kõikidelt seiretelt?",
|
||||||
pauseMonitorMsg: "Kas soovid peatada seire?",
|
ResoverserverDescription: "Cloudflare on vaikimisi pöördserver.",
|
||||||
Settings: "Seaded",
|
RrtypeDescription: "Vali kirje tüüp, mida soovid jälgida.",
|
||||||
"Status Page": "Ülevaade", // hääletuse tulemus, teine: seisundileht, kolmas: Olukord/Olek
|
PauseMonitorMsg: "Kas soovid peatada seire?",
|
||||||
Dashboard: "Töölaud",
|
EnableDefaultNotificationDescription: "Kõik järgnevalt lisatud seired kasutavad seda teavitusteenuset. Seiretelt võib teavitusteenuse ühekaupa eemaldada.",
|
||||||
"New Update": "Uuem tarkvara versioon on saadaval.",
|
ClearEventsMsg: "Kas soovid seire kõik sündmused kustutada?",
|
||||||
Language: "Keel",
|
ClearHeartbeatsMsg: "Kas soovid seire kõik tuksed kustutada?",
|
||||||
Appearance: "Välimus",
|
ConfirmClearStatisticsMsg: "Kas soovid TERVE ajaloo kustutada?",
|
||||||
Theme: "Teema",
|
ImportHandleDescription: "'kombineeri' täiendab varukoopiast ja kirjutab üle samanimelised seireid ja teavitusteenused; 'lisa praegustele' jätab olemasolevad puutumata; 'asenda' kustutab ja asendab kõik seired ja teavitusteenused.",
|
||||||
General: "Üldine",
|
ConfirmImportMsg: "Käkerdistest hoidumiseks lae enne taastamist alla uus varukoopia. Kas soovid taastada üles laetud?",
|
||||||
Version: "Versioon",
|
TwoFaVerifyLabel: "2FA kinnitamiseks sisesta pääsukood",
|
||||||
"Check Update On GitHub": "Otsi uuendusi GitHub'ist",
|
TokenValidSettingsMsg: "Kood õige. Akna võib sulgeda.",
|
||||||
List: "Nimekiri",
|
ConfirmEnableTwoFaMsg: "Kas soovid 2FA sisse lülitada?",
|
||||||
Add: "Lisa",
|
ConfirmDisableTwoFaMsg: "Kas soovid 2FA välja lülitada?",
|
||||||
"Add New Monitor": "Lisa seire",
|
NewUpdate: "Uuem tarkvara versioon on saadaval.",
|
||||||
"Add a monitor": "Lisa seire",
|
CheckUpdateOnGitHub: "Otsi uuendusi GitHub'ist",
|
||||||
"Quick Stats": "Ülevaade",
|
AddNewMonitor: "Lisa seire",
|
||||||
Up: "Töökorras",
|
QuickStats: "Ülevaade",
|
||||||
Down: "Rikkis",
|
NoImportantEvents: "Märkimisväärsed juhtumid puuduvad.",
|
||||||
Pending: "Määramisel",
|
CertExp: "Sert. aegumine",
|
||||||
Unknown: "Kahtlast",
|
Days: "päeva",
|
||||||
Pause: "Seiska",
|
Day: "päev",
|
||||||
Name: "Nimi",
|
Hour: "tund",
|
||||||
Status: "Olek",
|
MonitorType: "Seire tüüp",
|
||||||
DateTime: "Kuupäev",
|
FriendlyName: "Sõbralik nimi",
|
||||||
Message: "Tulemus",
|
Url: "URL",
|
||||||
"No important events": "Märkimisväärsed juhtumid puuduvad.",
|
HeartbeatInterval: "Tukse sagedus",
|
||||||
Resume: "Taasta",
|
HeartbeatRetryInterval: "Korduskatsete intervall",
|
||||||
Edit: "Muuda",
|
UpsideDownMode: "Tagurpidi seire",
|
||||||
Delete: "Eemalda",
|
MaxRedirects: "Max. ümbersuunamine",
|
||||||
Current: "Hetkeseisund",
|
AcceptedStatusCodes: "Kõlblikud HTTP koodid",
|
||||||
Uptime: "Eluiga", // todo: launchpad?
|
NotAvailablePleaseSetup: "Ühtegi teavitusteenust pole saadaval.",
|
||||||
"Cert Exp.": "Sert. aegumine",
|
SetupNotification: "Lisa teavitusteenus",
|
||||||
days: "päeva",
|
ThemeHeartbeatBar: "Teemasäte — tuksete riba",
|
||||||
day: "päev",
|
SearchEngineVisibility: "Otsimootorite ligipääs",
|
||||||
DaysInMonth: "30-päev",
|
AllowIndexing: "Luba indekseerimine",
|
||||||
hour: "tund",
|
DiscourageSearchEnginesFromIndexingSite: "Keela selle saidi indekseerimine otsimootorite poolt",
|
||||||
HoursInDay: "24-tund",
|
ChangePassword: "Muuda parooli",
|
||||||
Response: "Reaktsiooniaeg",
|
CurrentPassword: "praegune parool",
|
||||||
Ping: "Ping",
|
NewPassword: "uus parool",
|
||||||
"Monitor Type": "Seire tüüp",
|
RepeatNewPassword: "korda salasõna",
|
||||||
Keyword: "Võtmesõna",
|
UpdatePassword: "Uuenda salasõna",
|
||||||
"Friendly Name": "Sõbralik nimi",
|
DisableAuth: "Lülita autentimine välja",
|
||||||
URL: "URL",
|
EnableAuth: "Lülita autentimine sisse",
|
||||||
Hostname: "Hostname",
|
IUnderstandPleaseDisable: "Olen tutvunud riskidega, lülita välja",
|
||||||
Port: "Port",
|
RememberMe: "Mäleta mind",
|
||||||
"Heartbeat Interval": "Tukse sagedus",
|
NoMonitorsPlease: "Seired puuduvad.",
|
||||||
Retries: "Korduskatsed",
|
AddOne: "Lisa esimene",
|
||||||
Advanced: "Rohkem",
|
NotificationType: "Teavituse tüüp",
|
||||||
"Upside Down Mode": "Tagurpidi seire",
|
CertificateInfo: "Sertifikaadi teave",
|
||||||
"Max. Redirects": "Max. ümbersuunamine",
|
ResolverServer: "Server, mis vastab DNS päringutele.",
|
||||||
"Accepted Status Codes": "Kõlblikud HTTP koodid",
|
ResourceRecordType: "DNS kirje tüüp",
|
||||||
Save: "Salvesta",
|
LastResult: "Viimane",
|
||||||
Notifications: "Teavitused",
|
CreateYourAdminAccount: "Admininstraatori konto loomine",
|
||||||
"Not available, please setup.": "Ühtegi teavitusteenust pole saadaval.",
|
RepeatPassword: "korda salasõna",
|
||||||
"Setup Notification": "Lisa teavitusteenus",
|
ImportBackup: "Varukoopia importimine",
|
||||||
Light: "hele",
|
ExportBackup: "Varukoopia eksportimine",
|
||||||
Dark: "tume",
|
RespTime: "Reageerimisaeg (ms)",
|
||||||
Auto: "automaatne",
|
NotAvailableShort: "N/A",
|
||||||
"Theme - Heartbeat Bar": "Teemasäte — tuksete riba",
|
DefaultEnabled: "Kasuta vaikimisi",
|
||||||
Normal: "tavaline",
|
ApplyOnAllExistingMonitors: "Kõik praegused seired hakkavad kasutama seda teavitusteenust",
|
||||||
Bottom: "all",
|
ClearData: "Eemalda andmed",
|
||||||
None: "puudub",
|
AutoGet: "Hangi automaatselt",
|
||||||
Timezone: "Ajatsoon",
|
BackupDescription: "Varunda kõik seired ja teavitused JSON faili.",
|
||||||
"Search Engine Visibility": "Otsimootorite ligipääs",
|
BackupDescription2: "PS: Varukoopia EI sisalda seirete ajalugu ja sündmustikku.",
|
||||||
"Allow indexing": "Luba indekseerimine",
|
BackupDescription3: "Varukoopiad sisaldavad teavitusteenusete pääsuvõtmeid.",
|
||||||
"Discourage search engines from indexing site": "Keela selle saidi indekseerimine otsimootorite poolt",
|
AlertNoFile: "Palun lisa fail, mida importida.",
|
||||||
"Change Password": "Muuda parooli",
|
AlertWrongFileType: "Palun lisa JSON-formaadis fail.",
|
||||||
"Current Password": "praegune parool",
|
ClearAllStatistics: "Tühjenda ajalugu",
|
||||||
"New Password": "uus parool",
|
SkipExisting: "lisa praegustele",
|
||||||
"Repeat New Password": "korda salasõna",
|
KeepBoth: "kombineeri",
|
||||||
"Update Password": "Uuenda salasõna",
|
VerifyToken: "Kontrolli",
|
||||||
"Disable Auth": "Lülita autentimine välja",
|
Setup2Fa: "Kaksikautentimise seadistamine",
|
||||||
"Enable Auth": "Lülita autentimine sisse",
|
Enable2Fa: "Seadista 2FA",
|
||||||
Logout: "Logi välja",
|
Disable2Fa: "Lülita 2FA välja",
|
||||||
Leave: "Lahku",
|
TwoFaSettings: "2FA seaded",
|
||||||
"I understand, please disable": "Olen tutvunud riskidega, lülita välja",
|
TwoFactorAuthentication: "Kaksikautentimine",
|
||||||
Confirm: "Kinnita",
|
ShowUri: "Näita URId",
|
||||||
Yes: "Jah",
|
AddNewBelowOrSelect: "Leia või lisa all uus…",
|
||||||
No: "Ei",
|
TagWithThisNameAlreadyExist: "Selle nimega silt on juba olemas.",
|
||||||
Username: "kasutajanimi",
|
TagWithThisValueAlreadyExist: "Selle väärtusega silt on juba olemas.",
|
||||||
Password: "parool",
|
Color: "värvus",
|
||||||
"Remember me": "Mäleta mind",
|
ValueOptional: "väärtus (fakultatiivne)",
|
||||||
Login: "Logi sisse",
|
Search: "Otsi…",
|
||||||
"No Monitors, please": "Seired puuduvad.",
|
AvgPing: "Keskmine ping",
|
||||||
"add one": "Lisa esimene",
|
AvgResponse: "Keskmine reaktsiooniaeg",
|
||||||
"Notification Type": "Teavituse tüüp",
|
EntryPage: "Avaleht",
|
||||||
Email: "e-posti aadress",
|
StatusPageNothing: "Kippu ega kõppu; siia saab lisada seireid või -gruppe.",
|
||||||
Test: "Saada prooviteavitus",
|
NoServices: "Teenused puuduvad.",
|
||||||
"Certificate Info": "Sertifikaadi teave",
|
AllSystemsOperational: "Kõik töökorras",
|
||||||
"Resolver Server": "Server, mis vastab DNS päringutele.",
|
PartiallyDegradedService: "Teenuse töö osaliselt häiritud",
|
||||||
"Resource Record Type": "DNS kirje tüüp",
|
DegradedService: "Teenuse töö häiritud",
|
||||||
"Last Result": "Viimane",
|
AddGroup: "Lisa grupp",
|
||||||
"Create your admin account": "Admininstraatori konto loomine",
|
AddAMonitor: "Lisa seire",
|
||||||
"Repeat Password": "korda salasõna",
|
EditStatusPage: "Muuda lehte",
|
||||||
respTime: "Reageerimisaeg (ms)",
|
GoToDashboard: "Töölauale",
|
||||||
notAvailableShort: "N/A", // tõlkimata, umbkaudu rahvusvaheline termin peaks sobima piisavalt
|
Telegram: "Telegram",
|
||||||
enableDefaultNotificationDescription: "Kõik järgnevalt lisatud seired kasutavad seda teavitusteenuset. Seiretelt võib teavitusteenuse ühekaupa eemaldada.",
|
Webhook: "Webhook",
|
||||||
clearEventsMsg: "Kas soovid seire kõik sündmused kustutada?",
|
Smtp: "Email (SMTP)",
|
||||||
clearHeartbeatsMsg: "Kas soovid seire kõik tuksed kustutada?",
|
Discord: "Discord",
|
||||||
confirmClearStatisticsMsg: "Kas soovid TERVE ajaloo kustutada?",
|
Teams: "Microsoft Teams",
|
||||||
Export: "Eksport",
|
Signal: "Signal",
|
||||||
Import: "Import",
|
Gotify: "Gotify",
|
||||||
"Default enabled": "Kasuta vaikimisi",
|
Slack: "Slack",
|
||||||
"Apply on all existing monitors": "Kõik praegused seired hakkavad kasutama seda teavitusteenust",
|
RocketChat: "Rocket.chat",
|
||||||
Create: "Loo konto",
|
Pushover: "Pushover",
|
||||||
"Clear Data": "Eemalda andmed",
|
Pushy: "Pushy",
|
||||||
Events: "Sündmused",
|
Octopush: "Octopush",
|
||||||
Heartbeats: "Tuksed",
|
Lunasea: "LunaSea",
|
||||||
"Auto Get": "Hangi automaatselt", // hangi? kõlab liiga otsetõlge
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription: "Varunda kõik seired ja teavitused JSON faili.",
|
Pushbullet: "Pushbullet",
|
||||||
backupDescription2: "PS: Varukoopia EI sisalda seirete ajalugu ja sündmustikku.",
|
Line: "Line Messenger",
|
||||||
backupDescription3: "Varukoopiad sisaldavad teavitusteenusete pääsuvõtmeid.",
|
Mattermost: "Mattermost"
|
||||||
alertNoFile: "Palun lisa fail, mida importida.",
|
|
||||||
alertWrongFileType: "Palun lisa JSON-formaadis fail.",
|
|
||||||
twoFAVerifyLabel: "2FA kinnitamiseks sisesta pääsukood",
|
|
||||||
tokenValidSettingsMsg: "Kood õige. Akna võib sulgeda.",
|
|
||||||
confirmEnableTwoFAMsg: "Kas soovid 2FA sisse lülitada?",
|
|
||||||
confirmDisableTwoFAMsg: "Kas soovid 2FA välja lülitada?",
|
|
||||||
"Verify Token": "Kontrolli",
|
|
||||||
"Setup 2FA": "Kaksikautentimise seadistamine",
|
|
||||||
"Enable 2FA": "Seadista 2FA",
|
|
||||||
"Disable 2FA": "Lülita 2FA välja",
|
|
||||||
"2FA Settings": "2FA seaded",
|
|
||||||
"Two Factor Authentication": "Kaksikautentimine",
|
|
||||||
Active: "kasutusel",
|
|
||||||
Inactive: "seadistamata",
|
|
||||||
Token: "kaksikautentimise kood", // needs to compensate for no title
|
|
||||||
"Show URI": "Näita URId",
|
|
||||||
"Clear all statistics": "Tühjenda ajalugu",
|
|
||||||
importHandleDescription: "'kombineeri' täiendab varukoopiast ja kirjutab üle samanimelised seireid ja teavitusteenused; 'lisa praegustele' jätab olemasolevad puutumata; 'asenda' kustutab ja asendab kõik seired ja teavitusteenused.",
|
|
||||||
confirmImportMsg: "Käkerdistest hoidumiseks lae enne taastamist alla uus varukoopia. Kas soovid taastada üles laetud?",
|
|
||||||
"Heartbeat Retry Interval": "Korduskatsete intervall",
|
|
||||||
"Import Backup": "Varukoopia importimine",
|
|
||||||
"Export Backup": "Varukoopia eksportimine",
|
|
||||||
"Skip existing": "lisa praegustele",
|
|
||||||
Overwrite: "asenda",
|
|
||||||
Options: "Mestimisviis", // reusal of key would be chaos
|
|
||||||
"Keep both": "kombineeri",
|
|
||||||
Tags: "Sildid",
|
|
||||||
"Add New below or Select...": "Leia või lisa all uus…",
|
|
||||||
"Tag with this name already exist.": "Selle nimega silt on juba olemas.",
|
|
||||||
"Tag with this value already exist.": "Selle väärtusega silt on juba olemas.",
|
|
||||||
color: "värvus",
|
|
||||||
"value (optional)": "väärtus (fakultatiivne)", // milline sõna!
|
|
||||||
Gray: "hall",
|
|
||||||
Red: "punane",
|
|
||||||
Orange: "oranž",
|
|
||||||
Green: "roheline",
|
|
||||||
Blue: "sinine",
|
|
||||||
Indigo: "indigo",
|
|
||||||
Purple: "lilla",
|
|
||||||
Pink: "roosa",
|
|
||||||
"Search...": "Otsi…",
|
|
||||||
"Avg. Ping": "Keskmine ping", // pikk, aga nagunii kahel real
|
|
||||||
"Avg. Response": "Keskmine reaktsiooniaeg",
|
|
||||||
"Entry Page": "Avaleht",
|
|
||||||
statusPageNothing: "Kippu ega kõppu; siia saab lisada seireid või -gruppe.",
|
|
||||||
"No Services": "Teenused puuduvad.",
|
|
||||||
"All Systems Operational": "Kõik töökorras",
|
|
||||||
"Partially Degraded Service": "Teenuse töö osaliselt häiritud",
|
|
||||||
"Degraded Service": "Teenuse töö häiritud",
|
|
||||||
"Add Group": "Lisa grupp",
|
|
||||||
"Edit Status Page": "Muuda lehte",
|
|
||||||
"Go to Dashboard": "Töölauale",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,190 +1,137 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Farsi",
|
Status Page: "صفحه وضعیت",
|
||||||
checkEverySecond: "بررسی هر {0} ثانیه.",
|
Uptime Kuma: "آپتایم کوما",
|
||||||
retryCheckEverySecond: "تکرار مجدد هر {0} ثانیه.",
|
records: "مورد",
|
||||||
retriesDescription: "حداکثر تعداد تکرار پیش از علامت گذاری وبسایت بعنوان خارج از دسترس و ارسال اطلاعرسانی.",
|
One record: "یک مورد",
|
||||||
ignoreTLSError: "بیخیال ارور TLS/SSL برای سایتهای HTTPS",
|
Showing {from} to {to} of {count} records: "نمایش از {from} تا {to} از {count} مورد",
|
||||||
upsideDownModeDescription: "نتیجه وضعیت را برعکس کن، مثلا اگر سرویس در دسترس بود فرض کن که سرویس پایین است!",
|
First: "اولین",
|
||||||
maxRedirectDescription: "حداکثر تعداد ریدایرکتی که سرویس پشتیبانی کند. برای اینکه ریدایرکتها پشتیبانی نشوند، عدد 0 را وارد کنید.",
|
Last: "آخرین",
|
||||||
acceptedStatusCodesDescription: "لطفا HTTP Status Code هایی که میخواهید به عنوان پاسخ موفقیت آمیز در نظر گرفته شود را انتخاب کنید.",
|
Info: "اطلاعات",
|
||||||
passwordNotMatchMsg: "تکرار رمز عبور مطابقت ندارد!",
|
Powered By: "نیرو گرفته از",
|
||||||
notificationDescription: "برای اینکه سرویس اطلاعرسانی کار کند، آنرا به یکی از مانیتورها متصل کنید.",
|
LanguageName: "Farsi",
|
||||||
keywordDescription: "در نتیجه درخواست (اهمیتی ندارد پاسخ JSON است یا HTML) بدنبال این کلمه بگرد (حساس به کوچک/بزرگ بودن حروف).",
|
CheckEverySecond: "بررسی هر {0} ثانیه.",
|
||||||
pauseDashboardHome: "متوقف شده",
|
RetryCheckEverySecond: "تکرار مجدد هر {0} ثانیه.",
|
||||||
deleteMonitorMsg: "آیا از حذف این مانیتور مطمئن هستید؟",
|
RetriesDescription: "حداکثر تعداد تکرار پیش از علامت گذاری وبسایت بعنوان خارج از دسترس و ارسال اطلاعرسانی.",
|
||||||
deleteNotificationMsg: "آیا مطمئن هستید که میخواهید این سرویس اطلاعرسانی را برای تمامی مانیتورها حذف کنید؟",
|
IgnoreTlsError: "بیخیال ارور TLS/SSL برای سایتهای HTTPS",
|
||||||
resoverserverDescription: "سرویس CloudFlare به عنوان سرور پیشفرض استفاده میشود، شما میتوانید آنرا به هر سرور دیگری بعدا تغییر دهید.",
|
UpsideDownModeDescription: "نتیجه وضعیت را برعکس کن، مثلا اگر سرویس در دسترس بود فرض کن که سرویس پایین است!",
|
||||||
rrtypeDescription: "لطفا نوع Resource Record را انتخاب کنید.",
|
MaxRedirectDescription: "حداکثر تعداد ریدایرکتی که سرویس پشتیبانی کند. برای اینکه ریدایرکتها پشتیبانی نشوند، عدد 0 را وارد کنید.",
|
||||||
pauseMonitorMsg: "آیا مطمئن هستید که میخواهید این مانیتور را متوقف کنید ؟",
|
AcceptedStatusCodesDescription: "لطفا HTTP Status Code هایی که میخواهید به عنوان پاسخ موفقیت آمیز در نظر گرفته شود را انتخاب کنید.",
|
||||||
enableDefaultNotificationDescription: "برای هر مانیتور جدید، این سرویس اطلاعرسانی به صورت پیشفرض فعال خواهد شد. البته که شما میتوانید به صورت دستی آنرا برای هر مانیتور به صورت جداگانه غیر فعال کنید.",
|
PasswordNotMatchMsg: "تکرار رمز عبور مطابقت ندارد!",
|
||||||
clearEventsMsg: "آیا از اینکه تمامی تاریخچه رویدادهای این مانیتور حذف شود مطمئن هستید؟",
|
NotificationDescription: "برای اینکه سرویس اطلاعرسانی کار کند، آنرا به یکی از مانیتورها متصل کنید.",
|
||||||
clearHeartbeatsMsg: "آیا از اینکه تاریخچه تمامی Heartbeat های این مانیتور حذف شود مطمئن هستید؟ ",
|
KeywordDescription: "در نتیجه درخواست (اهمیتی ندارد پاسخ JSON است یا HTML) بدنبال این کلمه بگرد (حساس به کوچک/بزرگ بودن حروف).",
|
||||||
confirmClearStatisticsMsg: "آیا از حذف تمامی آمار و ارقام مطمئن هستید؟",
|
PauseDashboardHome: "متوقف شده",
|
||||||
importHandleDescription: " اگر که میخواهید بیخیال مانیتورها و یا سرویسهای اطلاعرسانی که با نام مشابه از قبل موجود هستند شوید، گزینه 'بیخیال موارد ..' را انتخاب کنید. توجه کنید که گزینه 'بازنویسی' تمامی موارد موجود با نام مشابه را از بین خواهد برد.",
|
DeleteMonitorMsg: "آیا از حذف این مانیتور مطمئن هستید؟",
|
||||||
confirmImportMsg: "آیا از بازگردانی بک آپ مطمئن هستید؟ لطفا از اینکه نوع بازگردانی درستی را انتخاب کردهاید اطمینان حاصل کنید!",
|
DeleteNotificationMsg: "آیا مطمئن هستید که میخواهید این سرویس اطلاعرسانی را برای تمامی مانیتورها حذف کنید؟",
|
||||||
twoFAVerifyLabel: "لطفا جهت اطمینان از عملکرد احراز هویت دو مرحلهای توکن خود را وارد کنید!",
|
ResoverserverDescription: "سرویس CloudFlare به عنوان سرور پیشفرض استفاده میشود، شما میتوانید آنرا به هر سرور دیگری بعدا تغییر دهید.",
|
||||||
tokenValidSettingsMsg: "توکن شما معتبر است، هم اکنون میتوانید احراز هویت دو مرحلهای را فعال کنید!",
|
RrtypeDescription: "لطفا نوع Resource Record را انتخاب کنید.",
|
||||||
confirmEnableTwoFAMsg: " آیا از فعال سازی احراز هویت دو مرحلهای مطمئن هستید؟",
|
PauseMonitorMsg: "آیا مطمئن هستید که میخواهید این مانیتور را متوقف کنید ؟",
|
||||||
confirmDisableTwoFAMsg: "آیا از غیرفعال سازی احراز هویت دومرحلهای مطمئن هستید؟",
|
EnableDefaultNotificationDescription: "برای هر مانیتور جدید، این سرویس اطلاعرسانی به صورت پیشفرض فعال خواهد شد. البته که شما میتوانید به صورت دستی آنرا برای هر مانیتور به صورت جداگانه غیر فعال کنید.",
|
||||||
Settings: "تنظیمات",
|
ClearEventsMsg: "آیا از اینکه تمامی تاریخچه رویدادهای این مانیتور حذف شود مطمئن هستید؟",
|
||||||
Dashboard: "پیشخوان",
|
ClearHeartbeatsMsg: "آیا از اینکه تاریخچه تمامی Heartbeat های این مانیتور حذف شود مطمئن هستید؟ ",
|
||||||
"New Update": "بروزرسانی جدید!",
|
ConfirmClearStatisticsMsg: "آیا از حذف تمامی آمار و ارقام مطمئن هستید؟",
|
||||||
Language: "زبان",
|
ImportHandleDescription: " اگر که میخواهید بیخیال مانیتورها و یا سرویسهای اطلاعرسانی که با نام مشابه از قبل موجود هستند شوید، گزینه 'بیخیال موارد ..' را انتخاب کنید. توجه کنید که گزینه 'بازنویسی' تمامی موارد موجود با نام مشابه را از بین خواهد برد.",
|
||||||
Appearance: "ظاهر",
|
ConfirmImportMsg: "آیا از بازگردانی بک آپ مطمئن هستید؟ لطفا از اینکه نوع بازگردانی درستی را انتخاب کردهاید اطمینان حاصل کنید!",
|
||||||
Theme: "پوسته",
|
TwoFaVerifyLabel: "لطفا جهت اطمینان از عملکرد احراز هویت دو مرحلهای توکن خود را وارد کنید!",
|
||||||
General: "عمومی",
|
TokenValidSettingsMsg: "توکن شما معتبر است، هم اکنون میتوانید احراز هویت دو مرحلهای را فعال کنید!",
|
||||||
Version: "نسخه",
|
ConfirmEnableTwoFaMsg: " آیا از فعال سازی احراز هویت دو مرحلهای مطمئن هستید؟",
|
||||||
"Check Update On GitHub": "بررسی بروزرسانی بر روی گیتهاب",
|
ConfirmDisableTwoFaMsg: "آیا از غیرفعال سازی احراز هویت دومرحلهای مطمئن هستید؟",
|
||||||
List: "لیست",
|
NewUpdate: "بروزرسانی جدید!",
|
||||||
Add: "اضافه",
|
CheckUpdateOnGitHub: "بررسی بروزرسانی بر روی گیتهاب",
|
||||||
"Add New Monitor": "اضافه کردن مانیتور جدید",
|
AddNewMonitor: "اضافه کردن مانیتور جدید",
|
||||||
"Quick Stats": "خلاصه وضعیت",
|
QuickStats: "خلاصه وضعیت",
|
||||||
Up: "فعال",
|
NoImportantEvents: "رخداد جدیدی موجود نیست.",
|
||||||
Down: "غیرفعال",
|
CertExp: "تاریخ انقضای SSL",
|
||||||
Pending: "در انتظار تایید",
|
Days: "روز",
|
||||||
Unknown: "نامشخص",
|
Day: "روز",
|
||||||
Pause: "توقف",
|
Hour: "ساعت",
|
||||||
Name: "نام",
|
MonitorType: "نوع مانیتور",
|
||||||
Status: "وضعیت",
|
FriendlyName: "عنوان",
|
||||||
DateTime: "تاریخ و زمان",
|
Url: "آدرس (URL)",
|
||||||
Message: "پیام",
|
HeartbeatInterval: "فاصله هر Heartbeat",
|
||||||
"No important events": "رخداد جدیدی موجود نیست.",
|
HeartbeatRetryInterval: "فاصله تلاش مجدد برایHeartbeat",
|
||||||
Resume: "ادامه",
|
UpsideDownMode: "حالت بر عکس",
|
||||||
Edit: "ویرایش",
|
MaxRedirects: "حداکثر تعداد ریدایرکت",
|
||||||
Delete: "حذف",
|
AcceptedStatusCodes: "وضعیتهای (Status Code) های قابل قبول",
|
||||||
Current: "فعلی",
|
NotAvailablePleaseSetup: "هیچ موردی موجود نیست، اولین مورد را راه اندازی کنید!",
|
||||||
Uptime: "آپتایم",
|
SetupNotification: "راه اندازی اطلاعرسانی",
|
||||||
"Cert Exp.": "تاریخ انقضای SSL",
|
ThemeHeartbeatBar: "ظاهر نوار Heartbeat",
|
||||||
days: "روز",
|
SearchEngineVisibility: "قابلیت دسترسی برای موتورهای جستجو",
|
||||||
day: "روز",
|
AllowIndexing: "اجازه ایندکس شدن را بده.",
|
||||||
DaysInMonth: "30-روز",
|
DiscourageSearchEnginesFromIndexingSite: "به موتورهای جستجو اجازه ایندکس کردن این سامانه را نده.",
|
||||||
hour: "ساعت",
|
ChangePassword: "تغییر رمزعبور",
|
||||||
HoursInDay: "24-ساعت",
|
CurrentPassword: "رمزعبور فعلی",
|
||||||
Response: "پاسخ",
|
NewPassword: "رمزعبور جدید",
|
||||||
Ping: "Ping",
|
RepeatNewPassword: "تکرار رمزعبور جدید",
|
||||||
"Monitor Type": "نوع مانیتور",
|
UpdatePassword: "بروز رسانی رمز عبور",
|
||||||
Keyword: "کلمه کلیدی",
|
DisableAuth: "غیر فعال سازی تایید هویت",
|
||||||
"Friendly Name": "عنوان",
|
EnableAuth: "فعال سازی تایید هویت",
|
||||||
URL: "آدرس (URL)",
|
IUnderstandPleaseDisable: "متوجه هستم، لطفا غیرفعال کنید!",
|
||||||
Hostname: "نام میزبان (Hostname)",
|
RememberMe: "مراب هب خاطر بسپار",
|
||||||
Port: "پورت",
|
NoMonitorsPlease: "هیچ مانیتوری موجود نیست، لطفا",
|
||||||
"Heartbeat Interval": "فاصله هر Heartbeat",
|
AddOne: "یک مورد اضافه کنید",
|
||||||
Retries: "تلاش مجدد",
|
NotificationType: "نوع اطلاعرسانی",
|
||||||
"Heartbeat Retry Interval": "فاصله تلاش مجدد برایHeartbeat",
|
CertificateInfo: "اطلاعات سرتیفیکت",
|
||||||
Advanced: "پیشرفته",
|
ResolverServer: "سرور Resolver",
|
||||||
"Upside Down Mode": "حالت بر عکس",
|
ResourceRecordType: "نوع رکورد (Resource Record Type)",
|
||||||
"Max. Redirects": "حداکثر تعداد ریدایرکت",
|
LastResult: "آخرین نتیجه",
|
||||||
"Accepted Status Codes": "وضعیتهای (Status Code) های قابل قبول",
|
CreateYourAdminAccount: "ایجاد حساب کاربری مدیر",
|
||||||
Save: "ذخیره",
|
RepeatPassword: "تکرار رمز عبور",
|
||||||
Notifications: "اطلاعرسانیها",
|
ImportBackup: "بازگردانی فایل پشتیبان",
|
||||||
"Not available, please setup.": "هیچ موردی موجود نیست، اولین مورد را راه اندازی کنید!",
|
ExportBackup: "ذخیره فایل پشتیبان",
|
||||||
"Setup Notification": "راه اندازی اطلاعرسانی",
|
RespTime: "زمان پاسخگویی (میلیثانیه)",
|
||||||
Light: "روشن",
|
NotAvailableShort: "ناموجود",
|
||||||
Dark: "تاریک",
|
DefaultEnabled: "به صورت پیشفرض فعال باشد.",
|
||||||
Auto: "اتوماتیک",
|
ApplyOnAllExistingMonitors: "بر روی تمامی مانیتورهای فعلی اعمال شود.",
|
||||||
"Theme - Heartbeat Bar": "ظاهر نوار Heartbeat",
|
ClearData: "پاکسازی دادهها",
|
||||||
Normal: "معمولی",
|
AutoGet: "Auto Get",
|
||||||
Bottom: "پایین",
|
BackupDescription: "شما میتوانید تمامی مانیتورها و تنظیمات اطلاعرسانیها را در قالب یه فایل JSON دریافت کنید.",
|
||||||
None: "هیچ کدام",
|
BackupDescription2: "البته تاریخچه رخدادها دراین فایل قرار نخواهند داشت.",
|
||||||
Timezone: "موقعیت زمانی",
|
BackupDescription3: "توجه داشته باشید که تمامی اطلاعات حساس شما مانند توکنها نیز در این فایل وجود خواهد داشت ، پس از این فایل به خوبی مراقبت کنید.",
|
||||||
"Search Engine Visibility": "قابلیت دسترسی برای موتورهای جستجو",
|
AlertNoFile: "لطفا یک فایل برای «ورود اطلاعات» انتخاب کنید..",
|
||||||
"Allow indexing": "اجازه ایندکس شدن را بده.",
|
AlertWrongFileType: "یک فایل JSON انتخاب کنید.",
|
||||||
"Discourage search engines from indexing site": "به موتورهای جستجو اجازه ایندکس کردن این سامانه را نده.",
|
ClearAllStatistics: "پاکسازی تمامی آمار و ارقام",
|
||||||
"Change Password": "تغییر رمزعبور",
|
SkipExisting: "بیخیال مواردی که از قبل موجود است",
|
||||||
"Current Password": "رمزعبور فعلی",
|
KeepBoth: "هر دو را نگه دار",
|
||||||
"New Password": "رمزعبور جدید",
|
VerifyToken: "تایید توکن",
|
||||||
"Repeat New Password": "تکرار رمزعبور جدید",
|
Setup2Fa: "تنظیمات احراز دو مرحلهای",
|
||||||
"Update Password": "بروز رسانی رمز عبور",
|
Enable2Fa: "فعال سازی احراز 2 مرحلهای",
|
||||||
"Disable Auth": "غیر فعال سازی تایید هویت",
|
Disable2Fa: "غیر فعال کردن احراز 2 مرحلهای",
|
||||||
"Enable Auth": "فعال سازی تایید هویت",
|
TwoFaSettings: "تنظیمات احراز 2 مرحلهای",
|
||||||
Logout: "خروج",
|
TwoFactorAuthentication: "احراز هویت دومرحلهای",
|
||||||
Leave: "منصرف شدم",
|
ShowUri: "نمایش آدرس (URI) ",
|
||||||
"I understand, please disable": "متوجه هستم، لطفا غیرفعال کنید!",
|
AddNewBelowOrSelect: "یک مورد جدید اضافه کنید و یا از لیست انتخاب کنید...",
|
||||||
Confirm: "تایید",
|
TagWithThisNameAlreadyExist: "یک برچسب با این «نام» از قبل وجود دارد",
|
||||||
Yes: "بلی",
|
TagWithThisValueAlreadyExist: "یک برچسب با این «مقدار» از قبل وجود دارد.",
|
||||||
No: "خیر",
|
Color: "رنگ",
|
||||||
Username: "نام کاربری",
|
ValueOptional: "مقدار (اختیاری)",
|
||||||
Password: "کلمه عبور",
|
Search: "جستجو...",
|
||||||
"Remember me": "مراب هب خاطر بسپار",
|
AvgPing: "متوسط پینگ",
|
||||||
Login: "ورود",
|
AvgResponse: "متوسط زمان پاسخ",
|
||||||
"No Monitors, please": "هیچ مانیتوری موجود نیست، لطفا",
|
EntryPage: "صفحه ورودی",
|
||||||
"add one": "یک مورد اضافه کنید",
|
StatusPageNothing: "چیزی اینجا نیست، لطفا یک گروه و یا یک مانیتور اضافه کنید!",
|
||||||
"Notification Type": "نوع اطلاعرسانی",
|
NoServices: "هیچ سرویسی موجود نیست",
|
||||||
Email: "ایمیل",
|
AllSystemsOperational: "تمامی سیستمها عملیاتی هستند!",
|
||||||
Test: "تست",
|
PartiallyDegradedService: "افت نسبی کیفیت سرویس",
|
||||||
"Certificate Info": "اطلاعات سرتیفیکت",
|
DegradedService: "افت کامل کیفیت سرویس",
|
||||||
"Resolver Server": "سرور Resolver",
|
AddGroup: "اضافه کردن گروه",
|
||||||
"Resource Record Type": "نوع رکورد (Resource Record Type)",
|
AddAMonitor: "اضافه کردن مانیتور",
|
||||||
"Last Result": "آخرین نتیجه",
|
EditStatusPage: "ویرایش صفحه وضعیت",
|
||||||
"Create your admin account": "ایجاد حساب کاربری مدیر",
|
GoToDashboard: "رفتن به پیشخوان",
|
||||||
"Repeat Password": "تکرار رمز عبور",
|
Telegram: "Telegram",
|
||||||
"Import Backup": "بازگردانی فایل پشتیبان",
|
Webhook: "Webhook",
|
||||||
"Export Backup": "ذخیره فایل پشتیبان",
|
Smtp: "Email (SMTP)",
|
||||||
Export: "استخراج اطلاعات",
|
Discord: "Discord",
|
||||||
Import: "ورود اطلاعات",
|
Teams: "Microsoft Teams",
|
||||||
respTime: "زمان پاسخگویی (میلیثانیه)",
|
Signal: "Signal",
|
||||||
notAvailableShort: "ناموجود",
|
Gotify: "Gotify",
|
||||||
"Default enabled": "به صورت پیشفرض فعال باشد.",
|
Slack: "Slack",
|
||||||
"Apply on all existing monitors": "بر روی تمامی مانیتورهای فعلی اعمال شود.",
|
RocketChat: "Rocket.chat",
|
||||||
Create: "ایجاد",
|
Pushover: "Pushover",
|
||||||
"Clear Data": "پاکسازی دادهها",
|
Pushy: "Pushy",
|
||||||
Events: "رخدادها",
|
Octopush: "Octopush",
|
||||||
Heartbeats: "Heartbeats",
|
Lunasea: "LunaSea",
|
||||||
"Auto Get": "Auto Get",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription: "شما میتوانید تمامی مانیتورها و تنظیمات اطلاعرسانیها را در قالب یه فایل JSON دریافت کنید.",
|
Pushbullet: "Pushbullet",
|
||||||
backupDescription2: "البته تاریخچه رخدادها دراین فایل قرار نخواهند داشت.",
|
Line: "Line Messenger",
|
||||||
backupDescription3: "توجه داشته باشید که تمامی اطلاعات حساس شما مانند توکنها نیز در این فایل وجود خواهد داشت ، پس از این فایل به خوبی مراقبت کنید.",
|
Mattermost: "Mattermost"
|
||||||
alertNoFile: "لطفا یک فایل برای «ورود اطلاعات» انتخاب کنید..",
|
|
||||||
alertWrongFileType: "یک فایل JSON انتخاب کنید.",
|
|
||||||
"Clear all statistics": "پاکسازی تمامی آمار و ارقام",
|
|
||||||
"Skip existing": "بیخیال مواردی که از قبل موجود است",
|
|
||||||
Overwrite: "بازنویسی",
|
|
||||||
Options: "تنظیمات",
|
|
||||||
"Keep both": "هر دو را نگه دار",
|
|
||||||
"Verify Token": "تایید توکن",
|
|
||||||
"Setup 2FA": "تنظیمات احراز دو مرحلهای",
|
|
||||||
"Enable 2FA": "فعال سازی احراز 2 مرحلهای",
|
|
||||||
"Disable 2FA": "غیر فعال کردن احراز 2 مرحلهای",
|
|
||||||
"2FA Settings": "تنظیمات احراز 2 مرحلهای",
|
|
||||||
"Two Factor Authentication": "احراز هویت دومرحلهای",
|
|
||||||
Active: "فعال",
|
|
||||||
Inactive: "غیرفعال",
|
|
||||||
Token: "توکن",
|
|
||||||
"Show URI": "نمایش آدرس (URI) ",
|
|
||||||
Tags: "برچسبها",
|
|
||||||
"Add New below or Select...": "یک مورد جدید اضافه کنید و یا از لیست انتخاب کنید...",
|
|
||||||
"Tag with this name already exist.": "یک برچسب با این «نام» از قبل وجود دارد",
|
|
||||||
"Tag with this value already exist.": "یک برچسب با این «مقدار» از قبل وجود دارد.",
|
|
||||||
color: "رنگ",
|
|
||||||
"value (optional)": "مقدار (اختیاری)",
|
|
||||||
Gray: "خاکستری",
|
|
||||||
Red: "قرمز",
|
|
||||||
Orange: "نارنجی",
|
|
||||||
Green: "سبز",
|
|
||||||
Blue: "آبی",
|
|
||||||
Indigo: "نیلی",
|
|
||||||
Purple: "بنفش",
|
|
||||||
Pink: "صورتی",
|
|
||||||
"Search...": "جستجو...",
|
|
||||||
"Avg. Ping": "متوسط پینگ",
|
|
||||||
"Avg. Response": "متوسط زمان پاسخ",
|
|
||||||
"Entry Page": "صفحه ورودی",
|
|
||||||
statusPageNothing: "چیزی اینجا نیست، لطفا یک گروه و یا یک مانیتور اضافه کنید!",
|
|
||||||
"No Services": "هیچ سرویسی موجود نیست",
|
|
||||||
"All Systems Operational": "تمامی سیستمها عملیاتی هستند!",
|
|
||||||
"Partially Degraded Service": "افت نسبی کیفیت سرویس",
|
|
||||||
"Degraded Service": "افت کامل کیفیت سرویس",
|
|
||||||
"Add Group": "اضافه کردن گروه",
|
|
||||||
"Add a monitor": "اضافه کردن مانیتور",
|
|
||||||
"Edit Status Page": "ویرایش صفحه وضعیت",
|
|
||||||
"Status Page": "صفحه وضعیت",
|
|
||||||
"Go to Dashboard": "رفتن به پیشخوان",
|
|
||||||
"Uptime Kuma": "آپتایم کوما",
|
|
||||||
records: "مورد",
|
|
||||||
"One record": "یک مورد",
|
|
||||||
"Showing {from} to {to} of {count} records": "نمایش از {from} تا {to} از {count} مورد",
|
|
||||||
First: "اولین",
|
|
||||||
Last: "آخرین",
|
|
||||||
Info: "اطلاعات",
|
|
||||||
"Powered By": "نیرو گرفته از",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Français (France)",
|
Also apply to existing monitors: "S'applique également aux sondes existantes",
|
||||||
Settings: "Paramètres",
|
LanguageName: "Français (France)",
|
||||||
Dashboard: "Tableau de bord",
|
CheckEverySecond: "Vérifier toutes les {0} secondes",
|
||||||
"New Update": "Mise à jour disponible",
|
RetryCheckEverySecond: "Réessayer toutes les {0} secondes.",
|
||||||
Language: "Langue",
|
RetriesDescription: "Nombre d'essais avant que le service soit déclaré hors-ligne.",
|
||||||
Appearance: "Apparence",
|
IgnoreTlsError: "Ignorer les erreurs liées au certificat SSL/TLS",
|
||||||
Theme: "Thème",
|
UpsideDownModeDescription: "Si le service est en ligne, il sera alors noté hors-ligne et vice-versa.",
|
||||||
General: "Général",
|
MaxRedirectDescription: "Nombre maximal de redirections avant que le service soit noté hors-ligne.",
|
||||||
Version: "Version",
|
AcceptedStatusCodesDescription: "Codes HTTP considérés comme en ligne",
|
||||||
"Check Update On GitHub": "Consulter les mises à jour sur Github",
|
PasswordNotMatchMsg: "Les mots de passe ne correspondent pas",
|
||||||
List: "Lister",
|
NotificationDescription: "Une fois ajoutée, vous devez l'activer manuellement dans les paramètres de vos hôtes.",
|
||||||
Add: "Ajouter",
|
KeywordDescription: "Le mot clé sera recherché dans la réponse HTML/JSON reçue du site internet.",
|
||||||
"Add New Monitor": "Ajouter une nouvelle sonde",
|
PauseDashboardHome: "Éléments mis en pause",
|
||||||
"Quick Stats": "Résumé",
|
DeleteMonitorMsg: "Êtes-vous sûr de vouloir supprimer cette sonde ?",
|
||||||
Up: "En ligne",
|
DeleteNotificationMsg: "Êtes-vous sûr de vouloir supprimer ce type de notifications ? Une fois désactivée, les services qui l'utilisent ne pourront plus envoyer de notifications.",
|
||||||
Down: "Hors ligne",
|
ResoverserverDescription: "Le DNS de cloudflare est utilisé par défaut, mais vous pouvez le changer si vous le souhaitez.",
|
||||||
Pending: "En attente",
|
RrtypeDescription: "Veuillez séléctionner un type d'enregistrement DNS",
|
||||||
Unknown: "Inconnu",
|
PauseMonitorMsg: "Etes vous sur de vouloir mettre en pause cette sonde ?",
|
||||||
Pause: "En Pause",
|
EnableDefaultNotificationDescription: "Pour chaque nouvelle sonde, cette notification sera activée par défaut. Vous pouvez toujours désactiver la notification séparément pour chaque sonde.",
|
||||||
pauseDashboardHome: "Éléments mis en pause",
|
ClearEventsMsg: "Êtes-vous sûr de vouloir supprimer tous les événements pour cette sonde ?",
|
||||||
Name: "Nom",
|
ClearHeartbeatsMsg: "Êtes-vous sûr de vouloir supprimer tous les vérifications pour cette sonde ? Are you sure want to delete all heartbeats for this monitor?",
|
||||||
Status: "État",
|
ConfirmClearStatisticsMsg: "tes-vous sûr de vouloir supprimer tous les statistiques ?",
|
||||||
DateTime: "Heure",
|
ImportHandleDescription: "Choisissez 'Ignorer l'existant' si vous voulez ignorer chaque sonde ou notification portant le même nom. L'option 'Écraser' supprime tous les sondes et notifications existantes.",
|
||||||
Message: "Messages",
|
ConfirmImportMsg: "Êtes-vous sûr d'importer la sauvegarde ? Veuillez vous assurer que vous avez sélectionné la bonne option d'importation.",
|
||||||
"No important events": "Pas d'évènements important",
|
TwoFaVerifyLabel: "Veuillez saisir votre jeton pour vérifier que le système 2FA fonctionne.",
|
||||||
Resume: "Reprendre",
|
TokenValidSettingsMsg: "Le jeton est valide ! Vous pouvez maintenant sauvegarder les paramètres 2FA.",
|
||||||
Edit: "Modifier",
|
ConfirmEnableTwoFaMsg: "Êtes-vous sûr de vouloir activer le 2FA ?",
|
||||||
Delete: "Supprimer",
|
ConfirmDisableTwoFaMsg: "Êtes-vous sûr de vouloir désactiver le 2FA ?",
|
||||||
Current: "Actuellement",
|
NewUpdate: "Mise à jour disponible",
|
||||||
Uptime: "Uptime",
|
CheckUpdateOnGitHub: "Consulter les mises à jour sur Github",
|
||||||
"Cert Exp.": "Certificat expiré",
|
AddNewMonitor: "Ajouter une nouvelle sonde",
|
||||||
days: "Jours",
|
QuickStats: "Résumé",
|
||||||
day: "Jour",
|
NoImportantEvents: "Pas d'évènements important",
|
||||||
DaysInMonth: "30-journée",
|
CertExp: "Certificat expiré",
|
||||||
hour: "Heure",
|
Days: "Jours",
|
||||||
HoursInDay: "24Heures",
|
Day: "Jour",
|
||||||
checkEverySecond: "Vérifier toutes les {0} secondes",
|
Hour: "Heure",
|
||||||
Response: "Temps de réponse",
|
MonitorType: "Type de Sonde",
|
||||||
Ping: "Ping",
|
FriendlyName: "Nom d'affichage",
|
||||||
"Monitor Type": "Type de Sonde",
|
Url: "URL",
|
||||||
Keyword: "Mot-clé",
|
HeartbeatInterval: "Intervale de vérification",
|
||||||
"Friendly Name": "Nom d'affichage",
|
HeartbeatRetryInterval: "Réessayer l'intervale de vérification",
|
||||||
URL: "URL",
|
UpsideDownMode: "Mode inversé",
|
||||||
Hostname: "Nom d'hôte",
|
MaxRedirects: "Nombre maximum de redirections",
|
||||||
Port: "Port",
|
AcceptedStatusCodes: "Codes HTTP",
|
||||||
"Heartbeat Interval": "Intervale de vérification",
|
NotAvailablePleaseSetup: "Pas de système de notification disponible, merci de le configurer",
|
||||||
Retries: "Essais",
|
SetupNotification: "Créer une notification",
|
||||||
retriesDescription: "Nombre d'essais avant que le service soit déclaré hors-ligne.",
|
ThemeHeartbeatBar: "Voir les services surveillés",
|
||||||
Advanced: "Avancé",
|
SearchEngineVisibility: "Visibilité par les moteurs de recherche",
|
||||||
ignoreTLSError: "Ignorer les erreurs liées au certificat SSL/TLS",
|
AllowIndexing: "Autoriser l'indexation par des moteurs de recherche",
|
||||||
"Upside Down Mode": "Mode inversé",
|
DiscourageSearchEnginesFromIndexingSite: "Refuser l'indexation par des moteurs de recherche",
|
||||||
upsideDownModeDescription: "Si le service est en ligne, il sera alors noté hors-ligne et vice-versa.",
|
ChangePassword: "Changer le mot de passe",
|
||||||
"Max. Redirects": "Nombre maximum de redirections",
|
CurrentPassword: "Mot de passe actuel",
|
||||||
maxRedirectDescription: "Nombre maximal de redirections avant que le service soit noté hors-ligne.",
|
NewPassword: "Nouveau mot de passe",
|
||||||
"Accepted Status Codes": "Codes HTTP",
|
RepeatNewPassword: "Répéter votre nouveau mot de passe",
|
||||||
acceptedStatusCodesDescription: "Codes HTTP considérés comme en ligne",
|
UpdatePassword: "Mettre à jour le mot de passe",
|
||||||
Save: "Sauvegarder",
|
DisableAuth: "Désactiver l'authentification",
|
||||||
Notifications: "Notifications",
|
EnableAuth: "Activer l'authentification",
|
||||||
"Not available, please setup.": "Pas de système de notification disponible, merci de le configurer",
|
IUnderstandPleaseDisable: "J'ai compris, désactivez-le",
|
||||||
"Setup Notification": "Créer une notification",
|
RememberMe: "Se souvenir de moi",
|
||||||
Light: "Clair",
|
NoMonitorsPlease: "Pas de sondes, veuillez ",
|
||||||
Dark: "Sombre",
|
AddOne: "en ajouter une.",
|
||||||
Auto: "Automatique",
|
NotificationType: "Type de notification",
|
||||||
"Theme - Heartbeat Bar": "Voir les services surveillés",
|
CertificateInfo: "Informations sur le certificat SSL",
|
||||||
Normal: "Général",
|
ResolverServer: "Serveur DNS utilisé",
|
||||||
Bottom: "En dessous",
|
ResourceRecordType: "Type d'enregistrement DNS recherché",
|
||||||
None: "Rien",
|
LastResult: "Dernier résultat",
|
||||||
Timezone: "Fuseau Horaire",
|
CreateYourAdminAccount: "Créez votre compte administrateur",
|
||||||
"Search Engine Visibility": "Visibilité par les moteurs de recherche",
|
RepeatPassword: "Répéter le mot de passe",
|
||||||
"Allow indexing": "Autoriser l'indexation par des moteurs de recherche",
|
ImportBackup: "Importation de la sauvegarde",
|
||||||
"Discourage search engines from indexing site": "Refuser l'indexation par des moteurs de recherche",
|
ExportBackup: "Exportation de la sauvegarde",
|
||||||
"Change Password": "Changer le mot de passe",
|
RespTime: "Temps de réponse (ms)",
|
||||||
"Current Password": "Mot de passe actuel",
|
NotAvailableShort: "N/A",
|
||||||
"New Password": "Nouveau mot de passe",
|
DefaultEnabled: "Activé par défaut",
|
||||||
"Repeat New Password": "Répéter votre nouveau mot de passe",
|
ApplyOnAllExistingMonitors: "Appliquer sur toutes les sondes existantes",
|
||||||
passwordNotMatchMsg: "Les mots de passe ne correspondent pas",
|
ClearData: "Effacer les données",
|
||||||
"Update Password": "Mettre à jour le mot de passe",
|
AutoGet: "Auto Get",
|
||||||
"Disable Auth": "Désactiver l'authentification",
|
BackupDescription: "Vous pouvez sauvegarder toutes les sondes et toutes les notifications dans un fichier JSON.",
|
||||||
"Enable Auth": "Activer l'authentification",
|
BackupDescription2: "PS: Les données relatives à l'historique et aux événements ne sont pas incluses.",
|
||||||
Logout: "Se déconnecter",
|
BackupDescription3: "Les données sensibles telles que les jetons de notification sont incluses dans le fichier d'exportation, veuillez les conserver soigneusement.",
|
||||||
notificationDescription: "Une fois ajoutée, vous devez l'activer manuellement dans les paramètres de vos hôtes.",
|
AlertNoFile: "Veuillez sélectionner un fichier à importer.",
|
||||||
Leave: "Quitter",
|
AlertWrongFileType: "Veuillez sélectionner un fichier JSON à importer.",
|
||||||
"I understand, please disable": "J'ai compris, désactivez-le",
|
ClearAllStatistics: "Effacer touutes les statistiques",
|
||||||
Confirm: "Confirmer",
|
SkipExisting: "Sauter l'existant",
|
||||||
Yes: "Oui",
|
KeepBoth: "Garder les deux",
|
||||||
No: "Non",
|
VerifyToken: "Vérifier le jeton",
|
||||||
Username: "Nom d'utilisateur",
|
Setup2Fa: "Configurer 2FA",
|
||||||
Password: "Mot de passe",
|
Enable2Fa: "Activer 2FA",
|
||||||
"Remember me": "Se souvenir de moi",
|
Disable2Fa: "Désactiver 2FA",
|
||||||
Login: "Se connecter",
|
TwoFaSettings: "Paramètres 2FA",
|
||||||
"No Monitors, please": "Pas de sondes, veuillez ",
|
TwoFactorAuthentication: "Authentification à deux facteurs",
|
||||||
"add one": "en ajouter une.",
|
ShowUri: "Afficher l'URI",
|
||||||
"Notification Type": "Type de notification",
|
AddNewBelowOrSelect: "Ajouter nouveau ci-dessous ou sélectionner...",
|
||||||
Email: "Email",
|
TagWithThisNameAlreadyExist: "Une étiquette portant ce nom existe déjà.",
|
||||||
Test: "Tester",
|
TagWithThisValueAlreadyExist: "Une étiquette avec cette valeur existe déjà.",
|
||||||
keywordDescription: "Le mot clé sera recherché dans la réponse HTML/JSON reçue du site internet.",
|
Color: "couleur",
|
||||||
"Certificate Info": "Informations sur le certificat SSL",
|
ValueOptional: "valeur (facultatif)",
|
||||||
deleteMonitorMsg: "Êtes-vous sûr de vouloir supprimer cette sonde ?",
|
Search: "Rechercher...",
|
||||||
deleteNotificationMsg: "Êtes-vous sûr de vouloir supprimer ce type de notifications ? Une fois désactivée, les services qui l'utilisent ne pourront plus envoyer de notifications.",
|
AvgPing: "Ping moyen",
|
||||||
"Resolver Server": "Serveur DNS utilisé",
|
AvgResponse: "Réponse moyenne",
|
||||||
"Resource Record Type": "Type d'enregistrement DNS recherché",
|
EntryPage: "Page d'accueil",
|
||||||
resoverserverDescription: "Le DNS de cloudflare est utilisé par défaut, mais vous pouvez le changer si vous le souhaitez.",
|
StatusPageNothing: "Rien ici, veuillez ajouter un groupe ou une sonde.",
|
||||||
rrtypeDescription: "Veuillez séléctionner un type d'enregistrement DNS",
|
NoServices: "Aucun service",
|
||||||
pauseMonitorMsg: "Etes vous sur de vouloir mettre en pause cette sonde ?",
|
AllSystemsOperational: "Tous les systèmes sont opérationnels",
|
||||||
"Last Result": "Dernier résultat",
|
PartiallyDegradedService: "Service partiellement dégradé",
|
||||||
"Create your admin account": "Créez votre compte administrateur",
|
DegradedService: "Service dégradé",
|
||||||
"Repeat Password": "Répéter le mot de passe",
|
AddGroup: "Ajouter un groupe",
|
||||||
respTime: "Temps de réponse (ms)",
|
AddAMonitor: "Ajouter une sonde",
|
||||||
notAvailableShort: "N/A",
|
EditStatusPage: "Modifier la page de statut",
|
||||||
Create: "Créer",
|
GoToDashboard: "Accéder au tableau de bord",
|
||||||
clearEventsMsg: "Êtes-vous sûr de vouloir supprimer tous les événements pour cette sonde ?",
|
Telegram: "Telegram",
|
||||||
clearHeartbeatsMsg: "Êtes-vous sûr de vouloir supprimer tous les vérifications pour cette sonde ? Are you sure want to delete all heartbeats for this monitor?",
|
Webhook: "Webhook",
|
||||||
confirmClearStatisticsMsg: "tes-vous sûr de vouloir supprimer tous les statistiques ?",
|
Smtp: "Email (SMTP)",
|
||||||
"Clear Data": "Effacer les données",
|
Discord: "Discord",
|
||||||
Events: "Evénements",
|
Teams: "Microsoft Teams",
|
||||||
Heartbeats: "Vérfications",
|
Signal: "Signal",
|
||||||
"Auto Get": "Auto Get",
|
Gotify: "Gotify",
|
||||||
enableDefaultNotificationDescription: "Pour chaque nouvelle sonde, cette notification sera activée par défaut. Vous pouvez toujours désactiver la notification séparément pour chaque sonde.",
|
Slack: "Slack",
|
||||||
"Default enabled": "Activé par défaut",
|
RocketChat: "Rocket.chat",
|
||||||
"Also apply to existing monitors": "S'applique également aux sondes existantes",
|
Pushover: "Pushover",
|
||||||
Export: "Exporter",
|
Pushy: "Pushy",
|
||||||
Import: "Importer",
|
Octopush: "Octopush",
|
||||||
backupDescription: "Vous pouvez sauvegarder toutes les sondes et toutes les notifications dans un fichier JSON.",
|
Lunasea: "LunaSea",
|
||||||
backupDescription2: "PS: Les données relatives à l'historique et aux événements ne sont pas incluses.",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription3: "Les données sensibles telles que les jetons de notification sont incluses dans le fichier d'exportation, veuillez les conserver soigneusement.",
|
Pushbullet: "Pushbullet",
|
||||||
alertNoFile: "Veuillez sélectionner un fichier à importer.",
|
Line: "Line Messenger",
|
||||||
alertWrongFileType: "Veuillez sélectionner un fichier JSON à importer.",
|
Mattermost: "Mattermost"
|
||||||
twoFAVerifyLabel: "Veuillez saisir votre jeton pour vérifier que le système 2FA fonctionne.",
|
|
||||||
tokenValidSettingsMsg: "Le jeton est valide ! Vous pouvez maintenant sauvegarder les paramètres 2FA.",
|
|
||||||
confirmEnableTwoFAMsg: "Êtes-vous sûr de vouloir activer le 2FA ?",
|
|
||||||
confirmDisableTwoFAMsg: "Êtes-vous sûr de vouloir désactiver le 2FA ?",
|
|
||||||
"Apply on all existing monitors": "Appliquer sur toutes les sondes existantes",
|
|
||||||
"Verify Token": "Vérifier le jeton",
|
|
||||||
"Setup 2FA": "Configurer 2FA",
|
|
||||||
"Enable 2FA": "Activer 2FA",
|
|
||||||
"Disable 2FA": "Désactiver 2FA",
|
|
||||||
"2FA Settings": "Paramètres 2FA",
|
|
||||||
"Two Factor Authentication": "Authentification à deux facteurs",
|
|
||||||
Active: "Actif",
|
|
||||||
Inactive: "Inactif",
|
|
||||||
Token: "Jeton",
|
|
||||||
"Show URI": "Afficher l'URI",
|
|
||||||
"Clear all statistics": "Effacer touutes les statistiques",
|
|
||||||
retryCheckEverySecond: "Réessayer toutes les {0} secondes.",
|
|
||||||
importHandleDescription: "Choisissez 'Ignorer l'existant' si vous voulez ignorer chaque sonde ou notification portant le même nom. L'option 'Écraser' supprime tous les sondes et notifications existantes.",
|
|
||||||
confirmImportMsg: "Êtes-vous sûr d'importer la sauvegarde ? Veuillez vous assurer que vous avez sélectionné la bonne option d'importation.",
|
|
||||||
"Heartbeat Retry Interval": "Réessayer l'intervale de vérification",
|
|
||||||
"Import Backup": "Importation de la sauvegarde",
|
|
||||||
"Export Backup": "Exportation de la sauvegarde",
|
|
||||||
"Skip existing": "Sauter l'existant",
|
|
||||||
Overwrite: "Ecraser",
|
|
||||||
Options: "Options",
|
|
||||||
"Keep both": "Garder les deux",
|
|
||||||
Tags: "Étiquettes",
|
|
||||||
"Add New below or Select...": "Ajouter nouveau ci-dessous ou sélectionner...",
|
|
||||||
"Tag with this name already exist.": "Une étiquette portant ce nom existe déjà.",
|
|
||||||
"Tag with this value already exist.": "Une étiquette avec cette valeur existe déjà.",
|
|
||||||
color: "couleur",
|
|
||||||
"value (optional)": "valeur (facultatif)",
|
|
||||||
Gray: "Gris",
|
|
||||||
Red: "Rouge",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Vert",
|
|
||||||
Blue: "Bleu",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Violet",
|
|
||||||
Pink: "Rose",
|
|
||||||
"Search...": "Rechercher...",
|
|
||||||
"Avg. Ping": "Ping moyen",
|
|
||||||
"Avg. Response": "Réponse moyenne",
|
|
||||||
"Entry Page": "Page d'accueil",
|
|
||||||
"statusPageNothing": "Rien ici, veuillez ajouter un groupe ou une sonde.",
|
|
||||||
"No Services": "Aucun service",
|
|
||||||
"All Systems Operational": "Tous les systèmes sont opérationnels",
|
|
||||||
"Partially Degraded Service": "Service partiellement dégradé",
|
|
||||||
"Degraded Service": "Service dégradé",
|
|
||||||
"Add Group": "Ajouter un groupe",
|
|
||||||
"Add a monitor": "Ajouter une sonde",
|
|
||||||
"Edit Status Page": "Modifier la page de statut",
|
|
||||||
"Go to Dashboard": "Accéder au tableau de bord",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,181 +1,128 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Magyar",
|
LanguageName: "Magyar",
|
||||||
checkEverySecond: "Ellenőrzés {0} másodpercenként",
|
CheckEverySecond: "Ellenőrzés {0} másodpercenként",
|
||||||
retryCheckEverySecond: "Újrapróbál {0} másodpercenként.",
|
RetryCheckEverySecond: "Újrapróbál {0} másodpercenként.",
|
||||||
retriesDescription: "Maximális próbálkozás mielőtt a szolgáltatás leállt jelőlést kap és értesítés kerül kiküldésre",
|
RetriesDescription: "Maximális próbálkozás mielőtt a szolgáltatás leállt jelőlést kap és értesítés kerül kiküldésre",
|
||||||
ignoreTLSError: "TLS/SSL hibák figyelnen kívül hagyása HTTPS weboldalaknál",
|
IgnoreTlsError: "TLS/SSL hibák figyelnen kívül hagyása HTTPS weboldalaknál",
|
||||||
upsideDownModeDescription: "Az állapot megfordítása. Ha a szolgáltatás elérhető, akkor lesz leállt állapotú.",
|
UpsideDownModeDescription: "Az állapot megfordítása. Ha a szolgáltatás elérhető, akkor lesz leállt állapotú.",
|
||||||
maxRedirectDescription: "Az átirányítások maximális száma. állítsa 0-ra az átirányítás tiltásához.",
|
MaxRedirectDescription: "Az átirányítások maximális száma. állítsa 0-ra az átirányítás tiltásához.",
|
||||||
acceptedStatusCodesDescription: "Válassza ki az állapot kódokat amelyek sikeres válasznak fognak számítani.",
|
AcceptedStatusCodesDescription: "Válassza ki az állapot kódokat amelyek sikeres válasznak fognak számítani.",
|
||||||
passwordNotMatchMsg: "A megismételt jelszó nem egyezik.",
|
PasswordNotMatchMsg: "A megismételt jelszó nem egyezik.",
|
||||||
notificationDescription: "Kérem, rendeljen egy értesítést a figyeléshez, hogy működjön.",
|
NotificationDescription: "Kérem, rendeljen egy értesítést a figyeléshez, hogy működjön.",
|
||||||
keywordDescription: "Kulcsszó keresése a html-ben vagy a JSON válaszban. (kis-nagybetű érzékeny)",
|
KeywordDescription: "Kulcsszó keresése a html-ben vagy a JSON válaszban. (kis-nagybetű érzékeny)",
|
||||||
pauseDashboardHome: "Szünetel",
|
PauseDashboardHome: "Szünetel",
|
||||||
deleteMonitorMsg: "Biztos, hogy törölni akarja ezt a figyelőt?",
|
DeleteMonitorMsg: "Biztos, hogy törölni akarja ezt a figyelőt?",
|
||||||
deleteNotificationMsg: "Biztos, hogy törölni akarja ezt az értesítést az összes figyelőnél?",
|
DeleteNotificationMsg: "Biztos, hogy törölni akarja ezt az értesítést az összes figyelőnél?",
|
||||||
resoverserverDescription: "A Cloudflare az alapértelmezett szerver, bármikor meg tudja változtatni a resolver server-t.",
|
ResoverserverDescription: "A Cloudflare az alapértelmezett szerver, bármikor meg tudja változtatni a resolver server-t.",
|
||||||
rrtypeDescription: "Válassza ki az RR-Típust a figyelőhöz",
|
RrtypeDescription: "Válassza ki az RR-Típust a figyelőhöz",
|
||||||
pauseMonitorMsg: "Biztos, hogy szüneteltetni akarja?",
|
PauseMonitorMsg: "Biztos, hogy szüneteltetni akarja?",
|
||||||
enableDefaultNotificationDescription: "Minden új figyelőhöz ez az értesítés engedélyezett lesz alapértelmezetten. Kikapcsolhatja az értesítést külön minden figyelőnél.",
|
EnableDefaultNotificationDescription: "Minden új figyelőhöz ez az értesítés engedélyezett lesz alapértelmezetten. Kikapcsolhatja az értesítést külön minden figyelőnél.",
|
||||||
clearEventsMsg: "Biztos, hogy törölni akar miden eseményt ennél a figyelnél?",
|
ClearEventsMsg: "Biztos, hogy törölni akar miden eseményt ennél a figyelnél?",
|
||||||
clearHeartbeatsMsg: "Biztos, hogy törölni akar minden heartbeat-et ennél a figyelőnél?",
|
ClearHeartbeatsMsg: "Biztos, hogy törölni akar minden heartbeat-et ennél a figyelőnél?",
|
||||||
confirmClearStatisticsMsg: "Biztos, hogy törölni akat MINDEN statisztikát?",
|
ConfirmClearStatisticsMsg: "Biztos, hogy törölni akat MINDEN statisztikát?",
|
||||||
importHandleDescription: "Válassza a 'Meglévő kihagyását', ha ki szeretné hagyni az azonos nevő figyelőket vagy értesítésket. A 'Felülírás' törölni fog minden meglévő figyelőt és értesítést.",
|
ImportHandleDescription: "Válassza a 'Meglévő kihagyását', ha ki szeretné hagyni az azonos nevő figyelőket vagy értesítésket. A 'Felülírás' törölni fog minden meglévő figyelőt és értesítést.",
|
||||||
confirmImportMsg: "Biztos, hogy importálja a mentést? Győzödjön meg róla, hogy jól választotta ki az importálás opciót.",
|
ConfirmImportMsg: "Biztos, hogy importálja a mentést? Győzödjön meg róla, hogy jól választotta ki az importálás opciót.",
|
||||||
twoFAVerifyLabel: "Kérem, adja meg a token-t, hogy a 2FA működését ellenőrizzük",
|
TwoFaVerifyLabel: "Kérem, adja meg a token-t, hogy a 2FA működését ellenőrizzük",
|
||||||
tokenValidSettingsMsg: "A token érvényes! El tudja menteni a 2FA beállításait.",
|
TokenValidSettingsMsg: "A token érvényes! El tudja menteni a 2FA beállításait.",
|
||||||
confirmEnableTwoFAMsg: "Biztosan engedélyezi a 2FA-t?",
|
ConfirmEnableTwoFaMsg: "Biztosan engedélyezi a 2FA-t?",
|
||||||
confirmDisableTwoFAMsg: "Biztosan letiltja a 2FA-t?",
|
ConfirmDisableTwoFaMsg: "Biztosan letiltja a 2FA-t?",
|
||||||
Settings: "Beállítások",
|
NewUpdate: "Új frissítés",
|
||||||
Dashboard: "Irányítópult",
|
CheckUpdateOnGitHub: "Frissítések keresése a GitHub-on",
|
||||||
"New Update": "Új frissítés",
|
AddNewMonitor: "Új figyelő hozzáadása",
|
||||||
Language: "Nyelv",
|
QuickStats: "Gyors statisztikák",
|
||||||
Appearance: "Megjelenés",
|
NoImportantEvents: "Nincs fontos esemény",
|
||||||
Theme: "Téma",
|
CertExp: "Tanúsítvány lejár",
|
||||||
General: "Általános",
|
Days: "napok",
|
||||||
Version: "Verzió",
|
Day: "nap",
|
||||||
"Check Update On GitHub": "Frissítések keresése a GitHub-on",
|
Hour: "óra",
|
||||||
List: "Lista",
|
MonitorType: "Figyelő típusa",
|
||||||
Add: "Hozzáadás",
|
FriendlyName: "Rövid név",
|
||||||
"Add New Monitor": "Új figyelő hozzáadása",
|
Url: "URL",
|
||||||
"Quick Stats": "Gyors statisztikák",
|
HeartbeatInterval: "Heartbeat időköz",
|
||||||
Up: "Működik",
|
HeartbeatRetryInterval: "Heartbeat újrapróbálkozások időköze",
|
||||||
Down: "Leállt",
|
UpsideDownMode: "Fordított mód",
|
||||||
Pending: "Függőben",
|
MaxRedirects: "Max. átirányítás",
|
||||||
Unknown: "Ismeretlen",
|
AcceptedStatusCodes: "Elfogadott állapot kódok",
|
||||||
Pause: "Szünet",
|
NotAvailablePleaseSetup: "Nem elérhető, állítsa be.",
|
||||||
Name: "Név",
|
SetupNotification: "Értesítés beállítása",
|
||||||
Status: "Állapot",
|
ThemeHeartbeatBar: "Téma - Heartbeat Bar",
|
||||||
DateTime: "Időpont",
|
SearchEngineVisibility: "Látható a keresőmotoroknak",
|
||||||
Message: "Üzenet",
|
AllowIndexing: "Indexelés engedélyezése",
|
||||||
"No important events": "Nincs fontos esemény",
|
DiscourageSearchEnginesFromIndexingSite: "Keresőmotorok elriasztása az oldal indexelésétől",
|
||||||
Resume: "Folytatás",
|
ChangePassword: "Jelszó változtatása",
|
||||||
Edit: "Szerkesztés",
|
CurrentPassword: "Jelenlegi jelszó",
|
||||||
Delete: "Törlés",
|
NewPassword: "Új jelszó",
|
||||||
Current: "Aktuális",
|
RepeatNewPassword: "Ismételje meg az új jelszót",
|
||||||
Uptime: "Uptime",
|
UpdatePassword: "Jelszó módosítása",
|
||||||
"Cert Exp.": "Tanúsítvány lejár",
|
DisableAuth: "Hitelesítés tiltása",
|
||||||
days: "napok",
|
EnableAuth: "Hitelesítés engedélyezése",
|
||||||
day: "nap",
|
IUnderstandPleaseDisable: "Megértettem, kérem tilsa le",
|
||||||
DaysInMonth: "30-nap",
|
RememberMe: "Emlékezzen rám",
|
||||||
hour: "óra",
|
NoMonitorsPlease: "Nincs figyelő, kérem",
|
||||||
HoursInDay: "24-óra",
|
AddOne: "adjon hozzá egyet",
|
||||||
Response: "Válasz",
|
NotificationType: "Értesítés típusa",
|
||||||
Ping: "Ping",
|
CertificateInfo: "Tanúsítvány információk",
|
||||||
"Monitor Type": "Figyelő típusa",
|
ResolverServer: "Resolver szerver",
|
||||||
Keyword: "Kulcsszó",
|
ResourceRecordType: "Resource Record típusa",
|
||||||
"Friendly Name": "Rövid név",
|
LastResult: "Utolsó eredmény",
|
||||||
URL: "URL",
|
CreateYourAdminAccount: "Hozza létre az adminisztrátor felhasználót",
|
||||||
Hostname: "Hostnév",
|
RepeatPassword: "Jelszó ismétlése",
|
||||||
Port: "Port",
|
ImportBackup: "Mentés importálása",
|
||||||
"Heartbeat Interval": "Heartbeat időköz",
|
ExportBackup: "Mentés exportálása",
|
||||||
Retries: "Újrapróbálkozás",
|
RespTime: "Válaszidő (ms)",
|
||||||
"Heartbeat Retry Interval": "Heartbeat újrapróbálkozások időköze",
|
NotAvailableShort: "N/A",
|
||||||
Advanced: "Haladó",
|
DefaultEnabled: "Alapértelmezetten engedélyezett",
|
||||||
"Upside Down Mode": "Fordított mód",
|
ApplyOnAllExistingMonitors: "Alkalmazza az összes figyelőre",
|
||||||
"Max. Redirects": "Max. átirányítás",
|
ClearData: "Adatok törlése",
|
||||||
"Accepted Status Codes": "Elfogadott állapot kódok",
|
AutoGet: "Auto Get",
|
||||||
Save: "Mentés",
|
BackupDescription: "Ki tudja menteni az összes figyelőt és értesítést egy JSON fájlba.",
|
||||||
Notifications: "Értesítések",
|
BackupDescription2: "Ui.: Történeti és esemény adatokat nem tartalmaz.",
|
||||||
"Not available, please setup.": "Nem elérhető, állítsa be.",
|
BackupDescription3: "Érzékeny adatok, pl. szolgáltatás kulcsok is vannak az export fájlban. Figyelmesen őrizze!",
|
||||||
"Setup Notification": "Értesítés beállítása",
|
AlertNoFile: "Válaszzon ki egy fájlt az importáláshoz.",
|
||||||
Light: "Világos",
|
AlertWrongFileType: "Válasszon egy JSON fájlt.",
|
||||||
Dark: "Sötét",
|
ClearAllStatistics: "Összes statisztika törlése",
|
||||||
Auto: "Auto",
|
SkipExisting: "Meglévő kihagyása",
|
||||||
"Theme - Heartbeat Bar": "Téma - Heartbeat Bar",
|
KeepBoth: "Mindegyiket tartsa meg",
|
||||||
Normal: "Normal",
|
VerifyToken: "Token ellenőrzése",
|
||||||
Bottom: "Nyomógomb",
|
Setup2Fa: "2FA beállítása",
|
||||||
None: "Nincs",
|
Enable2Fa: "2FA engedélyezése",
|
||||||
Timezone: "Időzóna",
|
Disable2Fa: "2FA toltása",
|
||||||
"Search Engine Visibility": "Látható a keresőmotoroknak",
|
TwoFaSettings: "2FA beállítások",
|
||||||
"Allow indexing": "Indexelés engedélyezése",
|
TwoFactorAuthentication: "Two Factor Authentication",
|
||||||
"Discourage search engines from indexing site": "Keresőmotorok elriasztása az oldal indexelésétől",
|
ShowUri: "URI megmutatása",
|
||||||
"Change Password": "Jelszó változtatása",
|
AddNewBelowOrSelect: "Adjon hozzá lentre vagy válasszon...",
|
||||||
"Current Password": "Jelenlegi jelszó",
|
TagWithThisNameAlreadyExist: "Ilyen nevű cimke már létezik.",
|
||||||
"New Password": "Új jelszó",
|
TagWithThisValueAlreadyExist: "Ilyen értékű cimke már létezik.",
|
||||||
"Repeat New Password": "Ismételje meg az új jelszót",
|
Color: "szín",
|
||||||
"Update Password": "Jelszó módosítása",
|
ValueOptional: "érték (opcionális)",
|
||||||
"Disable Auth": "Hitelesítés tiltása",
|
Search: "Keres...",
|
||||||
"Enable Auth": "Hitelesítés engedélyezése",
|
AvgPing: "Átl. ping",
|
||||||
Logout: "Kijelenetkezés",
|
AvgResponse: "Átl. válasz",
|
||||||
Leave: "Elhagy",
|
EntryPage: "Nyitólap",
|
||||||
"I understand, please disable": "Megértettem, kérem tilsa le",
|
StatusPageNothing: "Semmi nincs itt, kérem, adjon hozzá egy figyelőt.",
|
||||||
Confirm: "Megerősítés",
|
NoServices: "Nincs szolgáltatás",
|
||||||
Yes: "Igen",
|
AllSystemsOperational: "Minden rendszer működik",
|
||||||
No: "Nem",
|
PartiallyDegradedService: "Részlegesen leállt szolgáltatás",
|
||||||
Username: "Felhasználónév",
|
DegradedService: "Leállt szolgáltatás",
|
||||||
Password: "Jelszó",
|
AddGroup: "Csoport hozzáadása",
|
||||||
"Remember me": "Emlékezzen rám",
|
AddAMonitor: "Figyelő hozzáadása",
|
||||||
Login: "Bejelentkezés",
|
EditStatusPage: "Sátusz oldal szerkesztése",
|
||||||
"No Monitors, please": "Nincs figyelő, kérem",
|
GoToDashboard: "Menj az irányítópulthoz",
|
||||||
"add one": "adjon hozzá egyet",
|
Telegram: "Telegram",
|
||||||
"Notification Type": "Értesítés típusa",
|
Webhook: "Webhook",
|
||||||
Email: "Email",
|
Smtp: "Email (SMTP)",
|
||||||
Test: "Teszt",
|
Discord: "Discord",
|
||||||
"Certificate Info": "Tanúsítvány információk",
|
Teams: "Microsoft Teams",
|
||||||
"Resolver Server": "Resolver szerver",
|
Signal: "Signal",
|
||||||
"Resource Record Type": "Resource Record típusa",
|
Gotify: "Gotify",
|
||||||
"Last Result": "Utolsó eredmény",
|
Slack: "Slack",
|
||||||
"Create your admin account": "Hozza létre az adminisztrátor felhasználót",
|
RocketChat: "Rocket.chat",
|
||||||
"Repeat Password": "Jelszó ismétlése",
|
Pushover: "Pushover",
|
||||||
"Import Backup": "Mentés importálása",
|
Pushy: "Pushy",
|
||||||
"Export Backup": "Mentés exportálása",
|
Octopush: "Octopush",
|
||||||
Export: "Exportálás",
|
Lunasea: "LunaSea",
|
||||||
Import: "Importálás",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
respTime: "Válaszidő (ms)",
|
Pushbullet: "Pushbullet",
|
||||||
notAvailableShort: "N/A",
|
Line: "Line Messenger",
|
||||||
"Default enabled": "Alapértelmezetten engedélyezett",
|
Mattermost: "Mattermost"
|
||||||
"Apply on all existing monitors": "Alkalmazza az összes figyelőre",
|
|
||||||
Create: "Létrehozás",
|
|
||||||
"Clear Data": "Adatok törlése",
|
|
||||||
Events: "Események",
|
|
||||||
Heartbeats: "Heartbeats",
|
|
||||||
"Auto Get": "Auto Get",
|
|
||||||
backupDescription: "Ki tudja menteni az összes figyelőt és értesítést egy JSON fájlba.",
|
|
||||||
backupDescription2: "Ui.: Történeti és esemény adatokat nem tartalmaz.",
|
|
||||||
backupDescription3: "Érzékeny adatok, pl. szolgáltatás kulcsok is vannak az export fájlban. Figyelmesen őrizze!",
|
|
||||||
alertNoFile: "Válaszzon ki egy fájlt az importáláshoz.",
|
|
||||||
alertWrongFileType: "Válasszon egy JSON fájlt.",
|
|
||||||
"Clear all statistics": "Összes statisztika törlése",
|
|
||||||
"Skip existing": "Meglévő kihagyása",
|
|
||||||
Overwrite: "Felülírás",
|
|
||||||
Options: "Opciók",
|
|
||||||
"Keep both": "Mindegyiket tartsa meg",
|
|
||||||
"Verify Token": "Token ellenőrzése",
|
|
||||||
"Setup 2FA": "2FA beállítása",
|
|
||||||
"Enable 2FA": "2FA engedélyezése",
|
|
||||||
"Disable 2FA": "2FA toltása",
|
|
||||||
"2FA Settings": "2FA beállítások",
|
|
||||||
"Two Factor Authentication": "Two Factor Authentication",
|
|
||||||
Active: "Aktív",
|
|
||||||
Inactive: "Inaktív",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "URI megmutatása",
|
|
||||||
Tags: "Cimkék",
|
|
||||||
"Add New below or Select...": "Adjon hozzá lentre vagy válasszon...",
|
|
||||||
"Tag with this name already exist.": "Ilyen nevű cimke már létezik.",
|
|
||||||
"Tag with this value already exist.": "Ilyen értékű cimke már létezik.",
|
|
||||||
color: "szín",
|
|
||||||
"value (optional)": "érték (opcionális)",
|
|
||||||
Gray: "Szürke",
|
|
||||||
Red: "Piros",
|
|
||||||
Orange: "Narancs",
|
|
||||||
Green: "Zöld",
|
|
||||||
Blue: "Kék",
|
|
||||||
Indigo: "Indigó",
|
|
||||||
Purple: "Lila",
|
|
||||||
Pink: "Rózsaszín",
|
|
||||||
"Search...": "Keres...",
|
|
||||||
"Avg. Ping": "Átl. ping",
|
|
||||||
"Avg. Response": "Átl. válasz",
|
|
||||||
"Entry Page": "Nyitólap",
|
|
||||||
statusPageNothing: "Semmi nincs itt, kérem, adjon hozzá egy figyelőt.",
|
|
||||||
"No Services": "Nincs szolgáltatás",
|
|
||||||
"All Systems Operational": "Minden rendszer működik",
|
|
||||||
"Partially Degraded Service": "Részlegesen leállt szolgáltatás",
|
|
||||||
"Degraded Service": "Leállt szolgáltatás",
|
|
||||||
"Add Group": "Csoport hozzáadása",
|
|
||||||
"Add a monitor": "Figyelő hozzáadása",
|
|
||||||
"Edit Status Page": "Sátusz oldal szerkesztése",
|
|
||||||
"Go to Dashboard": "Menj az irányítópulthoz",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,181 +1,128 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Italiano (Italian)",
|
LanguageName: "Italiano (Italian)",
|
||||||
checkEverySecond: "controlla ogni {0} secondi",
|
CheckEverySecond: "controlla ogni {0} secondi",
|
||||||
retryCheckEverySecond: "Riprova ogni {0} secondi.",
|
RetryCheckEverySecond: "Riprova ogni {0} secondi.",
|
||||||
retriesDescription: "Tentativi da fare prima che il servizio venga marcato come \"giù\" e che una notifica venga inviata.",
|
RetriesDescription: "Tentativi da fare prima che il servizio venga marcato come \"giù\" e che una notifica venga inviata.",
|
||||||
ignoreTLSError: "Ignora gli errori TLS/SSL per i siti in HTTPS.",
|
IgnoreTlsError: "Ignora gli errori TLS/SSL per i siti in HTTPS.",
|
||||||
upsideDownModeDescription: "Capovolgi lo stato. Se il servizio è raggiungibile viene marcato come \"GIÙ\".",
|
UpsideDownModeDescription: "Capovolgi lo stato. Se il servizio è raggiungibile viene marcato come \"GIÙ\".",
|
||||||
maxRedirectDescription: "Numero massimo di redirezionamenti consentito. Per disabilitare impostare \"0\".",
|
MaxRedirectDescription: "Numero massimo di redirezionamenti consentito. Per disabilitare impostare \"0\".",
|
||||||
acceptedStatusCodesDescription: "Inserire i codici di stato considerati come risposte corrette.",
|
AcceptedStatusCodesDescription: "Inserire i codici di stato considerati come risposte corrette.",
|
||||||
passwordNotMatchMsg: "La password non coincide.",
|
PasswordNotMatchMsg: "La password non coincide.",
|
||||||
notificationDescription: "Assegnare la notifica a uno o più elementi monitorati per metterla in funzione.",
|
NotificationDescription: "Assegnare la notifica a uno o più elementi monitorati per metterla in funzione.",
|
||||||
keywordDescription: "Cerca la parola chiave nella risposta in html o JSON e fai distinzione tra maiuscole e minuscole",
|
KeywordDescription: "Cerca la parola chiave nella risposta in html o JSON e fai distinzione tra maiuscole e minuscole",
|
||||||
pauseDashboardHome: "In Pausa",
|
PauseDashboardHome: "In Pausa",
|
||||||
deleteMonitorMsg: "Si è certi di voler eliminare questo monitoraggio?",
|
DeleteMonitorMsg: "Si è certi di voler eliminare questo monitoraggio?",
|
||||||
deleteNotificationMsg: "Si è certi di voler eliminare questa notifica per tutti gli oggetti monitorati?",
|
DeleteNotificationMsg: "Si è certi di voler eliminare questa notifica per tutti gli oggetti monitorati?",
|
||||||
resoverserverDescription: "Cloudflare è il server predefinito, è possibile cambiare il server DNS.",
|
ResoverserverDescription: "Cloudflare è il server predefinito, è possibile cambiare il server DNS.",
|
||||||
rrtypeDescription: "Scegliere il tipo di RR che si vuole monitorare",
|
RrtypeDescription: "Scegliere il tipo di RR che si vuole monitorare",
|
||||||
pauseMonitorMsg: "Si è certi di voler mettere in pausa?",
|
PauseMonitorMsg: "Si è certi di voler mettere in pausa?",
|
||||||
enableDefaultNotificationDescription: "Per ogni nuovo monitoraggio questa notifica sarà abilitata di default. È comunque possibile disabilitare la notifica separatamente per ogni monitoraggio.",
|
EnableDefaultNotificationDescription: "Per ogni nuovo monitoraggio questa notifica sarà abilitata di default. È comunque possibile disabilitare la notifica separatamente per ogni monitoraggio.",
|
||||||
clearEventsMsg: "Si è certi di voler eliminare tutti gli eventi per questo servizio?",
|
ClearEventsMsg: "Si è certi di voler eliminare tutti gli eventi per questo servizio?",
|
||||||
clearHeartbeatsMsg: "Si è certi di voler eliminare tutti gli intervalli di controllo per questo servizio?",
|
ClearHeartbeatsMsg: "Si è certi di voler eliminare tutti gli intervalli di controllo per questo servizio?",
|
||||||
confirmClearStatisticsMsg: "Si è certi di voler eliminare TUTTE le statistiche?",
|
ConfirmClearStatisticsMsg: "Si è certi di voler eliminare TUTTE le statistiche?",
|
||||||
importHandleDescription: "Selezionare 'Ignora gli esistenti' si vuole ignorare l'importazione dei monitoraggi o delle notifiche con lo stesso nome. 'Sovrascrivi' eliminerà ogni monitoraggio e notifica esistente.",
|
ImportHandleDescription: "Selezionare 'Ignora gli esistenti' si vuole ignorare l'importazione dei monitoraggi o delle notifiche con lo stesso nome. 'Sovrascrivi' eliminerà ogni monitoraggio e notifica esistente.",
|
||||||
confirmImportMsg: "Si è certi di voler importare il backup? Essere certi di aver selezionato l'opzione corretta di importazione.",
|
ConfirmImportMsg: "Si è certi di voler importare il backup? Essere certi di aver selezionato l'opzione corretta di importazione.",
|
||||||
twoFAVerifyLabel: "Scrivi il token per verificare che l'autenticazione a due fattori funzioni",
|
TwoFaVerifyLabel: "Scrivi il token per verificare che l'autenticazione a due fattori funzioni",
|
||||||
tokenValidSettingsMsg: "Il token è valido! È ora possibile salvare le impostazioni.",
|
TokenValidSettingsMsg: "Il token è valido! È ora possibile salvare le impostazioni.",
|
||||||
confirmEnableTwoFAMsg: "Si è certi di voler abilitare l'autenticazione a due fattori?",
|
ConfirmEnableTwoFaMsg: "Si è certi di voler abilitare l'autenticazione a due fattori?",
|
||||||
confirmDisableTwoFAMsg: "Si è certi di voler disabilitare l'autenticazione a due fattori?",
|
ConfirmDisableTwoFaMsg: "Si è certi di voler disabilitare l'autenticazione a due fattori?",
|
||||||
Settings: "Impostazioni",
|
NewUpdate: "Nuovo Aggiornamento Disponibile",
|
||||||
Dashboard: "Cruscotto",
|
CheckUpdateOnGitHub: "Controlla aggiornamenti su GitHub",
|
||||||
"New Update": "Nuovo Aggiornamento Disponibile",
|
AddNewMonitor: "Aggiungi un nuovo monitoraggio",
|
||||||
Language: "Lingua",
|
QuickStats: "Statistiche rapide",
|
||||||
Appearance: "Aspetto",
|
NoImportantEvents: "Nessun evento importante",
|
||||||
Theme: "Tema",
|
CertExp: "Scadenza certificato",
|
||||||
General: "Generali",
|
Days: "giorni",
|
||||||
Version: "Versione",
|
Day: "giorno",
|
||||||
"Check Update On GitHub": "Controlla aggiornamenti su GitHub",
|
Hour: "ora",
|
||||||
List: "Lista",
|
MonitorType: "Tipo di Monitoraggio",
|
||||||
Add: "Aggiungi",
|
FriendlyName: "Nome Amichevole",
|
||||||
"Add New Monitor": "Aggiungi un nuovo monitoraggio",
|
Url: "URL",
|
||||||
"Quick Stats": "Statistiche rapide",
|
HeartbeatInterval: "Intervallo di controllo",
|
||||||
Up: "Su",
|
HeartbeatRetryInterval: "Intervallo tra un tentativo di controllo e l'altro",
|
||||||
Down: "Giù",
|
UpsideDownMode: "Modalità capovolta",
|
||||||
Pending: "Pendente",
|
MaxRedirects: "Reindirizzamenti massimi",
|
||||||
Unknown: "Sconosciuti",
|
AcceptedStatusCodes: "Codici di stato accettati",
|
||||||
Pause: "Metti in Pausa",
|
NotAvailablePleaseSetup: "Non disponibili, da impostare.",
|
||||||
Name: "Nome",
|
SetupNotification: "Imposta le notifiche",
|
||||||
Status: "Stato",
|
ThemeHeartbeatBar: "Tema - Barra di Stato",
|
||||||
DateTime: "Data e Ora",
|
SearchEngineVisibility: "Visibilità ai motori di ricerca",
|
||||||
Message: "Messaggio",
|
AllowIndexing: "Permetti l'indicizzazione",
|
||||||
"No important events": "Nessun evento importante",
|
DiscourageSearchEnginesFromIndexingSite: "Scoraggia l'indicizzazione da parte dei motori di ricerca",
|
||||||
Resume: "Riprendi",
|
ChangePassword: "Cambio Password",
|
||||||
Edit: "Modifica",
|
CurrentPassword: "Password Corrente",
|
||||||
Delete: "Elimina",
|
NewPassword: "Nuova Password",
|
||||||
Current: "Corrente",
|
RepeatNewPassword: "Ripetere la nuova Password",
|
||||||
Uptime: "Tempo di attività",
|
UpdatePassword: "Modifica Password",
|
||||||
"Cert Exp.": "Scadenza certificato",
|
DisableAuth: "Disabilita l'autenticazione",
|
||||||
days: "giorni",
|
EnableAuth: "Abilita Autenticazione",
|
||||||
day: "giorno",
|
IUnderstandPleaseDisable: "Lo capisco, disabilitare l'autenticazione.",
|
||||||
DaysInMonth: "30-giorni",
|
RememberMe: "Ricordami",
|
||||||
hour: "ora",
|
NoMonitorsPlease: "Nessun monitoraggio, cortesemente",
|
||||||
HoursInDay: "24-ore",
|
AddOne: "aggiungerne uno",
|
||||||
Response: "Risposta",
|
NotificationType: "Tipo di notifica",
|
||||||
Ping: "Ping",
|
CertificateInfo: "Informazioni sul certificato",
|
||||||
"Monitor Type": "Tipo di Monitoraggio",
|
ResolverServer: "Server DNS",
|
||||||
Keyword: "Parola chiave",
|
ResourceRecordType: "Tipo di Resource Record",
|
||||||
"Friendly Name": "Nome Amichevole",
|
LastResult: "Ultimo risultato",
|
||||||
URL: "URL",
|
CreateYourAdminAccount: "Crea l'account amministratore",
|
||||||
Hostname: "Nome Host",
|
RepeatPassword: "Ripeti Password",
|
||||||
Port: "Porta",
|
ImportBackup: "Importa Backup",
|
||||||
"Heartbeat Interval": "Intervallo di controllo",
|
ExportBackup: "Esporta Backup",
|
||||||
Retries: "Tentativi",
|
RespTime: "Tempo di Risposta (ms)",
|
||||||
"Heartbeat Retry Interval": "Intervallo tra un tentativo di controllo e l'altro",
|
NotAvailableShort: "N/D",
|
||||||
Advanced: "Avanzate",
|
DefaultEnabled: "Abilitato di default",
|
||||||
"Upside Down Mode": "Modalità capovolta",
|
ApplyOnAllExistingMonitors: "Applica su tutti i monitoraggi",
|
||||||
"Max. Redirects": "Reindirizzamenti massimi",
|
ClearData: "Cancella dati",
|
||||||
"Accepted Status Codes": "Codici di stato accettati",
|
AutoGet: "Auto Get",
|
||||||
Save: "Salva",
|
BackupDescription: "È possibile fare il backup di tutti i monitoraggi e di tutte le notifiche in un file JSON.",
|
||||||
Notifications: "Notifiche",
|
BackupDescription2: "P.S.: lo storico e i dati relativi agli eventi non saranno inclusi.",
|
||||||
"Not available, please setup.": "Non disponibili, da impostare.",
|
BackupDescription3: "Dati sensibili come i token di autenticazione saranno inclusi nel backup, tenere quindi in un luogo sicuro.",
|
||||||
"Setup Notification": "Imposta le notifiche",
|
AlertNoFile: "Selezionare il file da importare.",
|
||||||
Light: "Chiaro",
|
AlertWrongFileType: "Selezionare un file JSON.",
|
||||||
Dark: "Scuro",
|
ClearAllStatistics: "Pulisci tutte le statistiche",
|
||||||
Auto: "Automatico",
|
SkipExisting: "Ignora gli esistenti",
|
||||||
"Theme - Heartbeat Bar": "Tema - Barra di Stato",
|
KeepBoth: "Mantieni entrambi",
|
||||||
Normal: "Normale",
|
VerifyToken: "Verifica Token",
|
||||||
Bottom: "Sotto",
|
Setup2Fa: "Imposta l'autenticazione a due fattori",
|
||||||
None: "Nessuna",
|
Enable2Fa: "Abilita l'autenticazione a due fattori",
|
||||||
Timezone: "Fuso Orario",
|
Disable2Fa: "Disabilita l'autenticazione a due fattori",
|
||||||
"Search Engine Visibility": "Visibilità ai motori di ricerca",
|
TwoFaSettings: "Impostazioni autenticazione a due fattori",
|
||||||
"Allow indexing": "Permetti l'indicizzazione",
|
TwoFactorAuthentication: "Autenticazione a due fattori",
|
||||||
"Discourage search engines from indexing site": "Scoraggia l'indicizzazione da parte dei motori di ricerca",
|
ShowUri: "Mostra URI",
|
||||||
"Change Password": "Cambio Password",
|
AddNewBelowOrSelect: "Aggiungine una oppure scegli...",
|
||||||
"Current Password": "Password Corrente",
|
TagWithThisNameAlreadyExist: "Un'etichetta con questo nome già esiste.",
|
||||||
"New Password": "Nuova Password",
|
TagWithThisValueAlreadyExist: "Un'etichetta con questo valore già esiste.",
|
||||||
"Repeat New Password": "Ripetere la nuova Password",
|
Color: "colori",
|
||||||
"Update Password": "Modifica Password",
|
ValueOptional: "valore (opzionale)",
|
||||||
"Disable Auth": "Disabilita l'autenticazione",
|
Search: "Cerca...",
|
||||||
"Enable Auth": "Abilita Autenticazione",
|
AvgPing: "Ping medio",
|
||||||
Logout: "Esci",
|
AvgResponse: "Risposta media",
|
||||||
Leave: "Annulla",
|
EntryPage: "Entry Page",
|
||||||
"I understand, please disable": "Lo capisco, disabilitare l'autenticazione.",
|
StatusPageNothing: "Non c'è nulla qui, aggiungere un gruppo oppure un monitoraggio.",
|
||||||
Confirm: "Conferma",
|
NoServices: "Nessun Servizio",
|
||||||
Yes: "Sì",
|
AllSystemsOperational: "Tutti i sistemi sono operativi",
|
||||||
No: "No",
|
PartiallyDegradedService: "Servizio parzialmente degradato",
|
||||||
Username: "Nome Utente",
|
DegradedService: "Servizio degradato",
|
||||||
Password: "Password",
|
AddGroup: "Aggiungi Gruppo",
|
||||||
"Remember me": "Ricordami",
|
AddAMonitor: "Aggiungi un monitoraggio",
|
||||||
Login: "Accesso",
|
EditStatusPage: "Modifica pagina di stato",
|
||||||
"No Monitors, please": "Nessun monitoraggio, cortesemente",
|
GoToDashboard: "Vai al Cruscotto",
|
||||||
"add one": "aggiungerne uno",
|
Telegram: "Telegram",
|
||||||
"Notification Type": "Tipo di notifica",
|
Webhook: "Webhook",
|
||||||
Email: "E-mail",
|
Smtp: "Email (SMTP)",
|
||||||
Test: "Prova",
|
Discord: "Discord",
|
||||||
"Certificate Info": "Informazioni sul certificato",
|
Teams: "Microsoft Teams",
|
||||||
"Resolver Server": "Server DNS",
|
Signal: "Signal",
|
||||||
"Resource Record Type": "Tipo di Resource Record",
|
Gotify: "Gotify",
|
||||||
"Last Result": "Ultimo risultato",
|
Slack: "Slack",
|
||||||
"Create your admin account": "Crea l'account amministratore",
|
RocketChat: "Rocket.chat",
|
||||||
"Repeat Password": "Ripeti Password",
|
Pushover: "Pushover",
|
||||||
"Import Backup": "Importa Backup",
|
Pushy: "Pushy",
|
||||||
"Export Backup": "Esporta Backup",
|
Octopush: "Octopush",
|
||||||
Export: "Esporta",
|
Lunasea: "LunaSea",
|
||||||
Import: "Importa",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
respTime: "Tempo di Risposta (ms)",
|
Pushbullet: "Pushbullet",
|
||||||
notAvailableShort: "N/D",
|
Line: "Line Messenger",
|
||||||
"Default enabled": "Abilitato di default",
|
Mattermost: "Mattermost"
|
||||||
"Apply on all existing monitors": "Applica su tutti i monitoraggi",
|
|
||||||
Create: "Crea",
|
|
||||||
"Clear Data": "Cancella dati",
|
|
||||||
Events: "Eventi",
|
|
||||||
Heartbeats: "Controlli",
|
|
||||||
"Auto Get": "Auto Get",
|
|
||||||
backupDescription: "È possibile fare il backup di tutti i monitoraggi e di tutte le notifiche in un file JSON.",
|
|
||||||
backupDescription2: "P.S.: lo storico e i dati relativi agli eventi non saranno inclusi.",
|
|
||||||
backupDescription3: "Dati sensibili come i token di autenticazione saranno inclusi nel backup, tenere quindi in un luogo sicuro.",
|
|
||||||
alertNoFile: "Selezionare il file da importare.",
|
|
||||||
alertWrongFileType: "Selezionare un file JSON.",
|
|
||||||
"Clear all statistics": "Pulisci tutte le statistiche",
|
|
||||||
"Skip existing": "Ignora gli esistenti",
|
|
||||||
Overwrite: "Sovrascrivi",
|
|
||||||
Options: "Opzioni",
|
|
||||||
"Keep both": "Mantieni entrambi",
|
|
||||||
"Verify Token": "Verifica Token",
|
|
||||||
"Setup 2FA": "Imposta l'autenticazione a due fattori",
|
|
||||||
"Enable 2FA": "Abilita l'autenticazione a due fattori",
|
|
||||||
"Disable 2FA": "Disabilita l'autenticazione a due fattori",
|
|
||||||
"2FA Settings": "Impostazioni autenticazione a due fattori",
|
|
||||||
"Two Factor Authentication": "Autenticazione a due fattori",
|
|
||||||
Active: "Attivata",
|
|
||||||
Inactive: "Disattivata",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Mostra URI",
|
|
||||||
Tags: "Etichette",
|
|
||||||
"Add New below or Select...": "Aggiungine una oppure scegli...",
|
|
||||||
"Tag with this name already exist.": "Un'etichetta con questo nome già esiste.",
|
|
||||||
"Tag with this value already exist.": "Un'etichetta con questo valore già esiste.",
|
|
||||||
color: "colori",
|
|
||||||
"value (optional)": "valore (opzionale)",
|
|
||||||
Gray: "Grigio",
|
|
||||||
Red: "Rosso",
|
|
||||||
Orange: "Arancione",
|
|
||||||
Green: "Verde",
|
|
||||||
Blue: "Blu",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Viola",
|
|
||||||
Pink: "Rosa",
|
|
||||||
"Search...": "Cerca...",
|
|
||||||
"Avg. Ping": "Ping medio",
|
|
||||||
"Avg. Response": "Risposta media",
|
|
||||||
"Entry Page": "Entry Page",
|
|
||||||
"statusPageNothing": "Non c'è nulla qui, aggiungere un gruppo oppure un monitoraggio.",
|
|
||||||
"No Services": "Nessun Servizio",
|
|
||||||
"All Systems Operational": "Tutti i sistemi sono operativi",
|
|
||||||
"Partially Degraded Service": "Servizio parzialmente degradato",
|
|
||||||
"Degraded Service": "Servizio degradato",
|
|
||||||
"Add Group": "Aggiungi Gruppo",
|
|
||||||
"Add a monitor": "Aggiungi un monitoraggio",
|
|
||||||
"Edit Status Page": "Modifica pagina di stato",
|
|
||||||
"Go to Dashboard": "Vai al Cruscotto",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "日本語",
|
Also apply to existing monitors: "Also apply to existing monitors",
|
||||||
checkEverySecond: "{0}秒ごとにチェックします。",
|
LanguageName: "日本語",
|
||||||
retriesDescription: "サービスがダウンとしてマークされ、通知が送信されるまでの最大リトライ数",
|
CheckEverySecond: "{0}秒ごとにチェックします。",
|
||||||
ignoreTLSError: "HTTPS ウェブサイトの TLS/SSL エラーを無視する",
|
RetryCheckEverySecond: "Retry every {0} seconds.",
|
||||||
upsideDownModeDescription: "ステータスの扱いを逆にします。サービスに到達可能な場合は、DOWNとなる。",
|
RetriesDescription: "サービスがダウンとしてマークされ、通知が送信されるまでの最大リトライ数",
|
||||||
maxRedirectDescription: "フォローするリダイレクトの最大数。リダイレクトを無効にするには0を設定する。",
|
IgnoreTlsError: "HTTPS ウェブサイトの TLS/SSL エラーを無視する",
|
||||||
acceptedStatusCodesDescription: "成功した応答とみなされるステータスコードを選択する。",
|
UpsideDownModeDescription: "ステータスの扱いを逆にします。サービスに到達可能な場合は、DOWNとなる。",
|
||||||
passwordNotMatchMsg: "繰り返しのパスワードが一致しません。",
|
MaxRedirectDescription: "フォローするリダイレクトの最大数。リダイレクトを無効にするには0を設定する。",
|
||||||
notificationDescription: "監視を機能させるには、監視に通知を割り当ててください。",
|
AcceptedStatusCodesDescription: "成功した応答とみなされるステータスコードを選択する。",
|
||||||
keywordDescription: "プレーンHTMLまたはJSON応答でキーワードを検索し、大文字と小文字を区別します",
|
PasswordNotMatchMsg: "繰り返しのパスワードが一致しません。",
|
||||||
pauseDashboardHome: "一時停止",
|
NotificationDescription: "監視を機能させるには、監視に通知を割り当ててください。",
|
||||||
deleteMonitorMsg: "この監視を削除してよろしいですか?",
|
KeywordDescription: "プレーンHTMLまたはJSON応答でキーワードを検索し、大文字と小文字を区別します",
|
||||||
deleteNotificationMsg: "全ての監視のこの通知を削除してよろしいですか?",
|
PauseDashboardHome: "一時停止",
|
||||||
resoverserverDescription: "Cloudflareがデフォルトのサーバーですが、いつでもリゾルバサーバーを変更できます。",
|
DeleteMonitorMsg: "この監視を削除してよろしいですか?",
|
||||||
rrtypeDescription: "監視するRRタイプを選択します",
|
DeleteNotificationMsg: "全ての監視のこの通知を削除してよろしいですか?",
|
||||||
pauseMonitorMsg: "一時停止しますか?",
|
ResoverserverDescription: "Cloudflareがデフォルトのサーバーですが、いつでもリゾルバサーバーを変更できます。",
|
||||||
Settings: "設定",
|
RrtypeDescription: "監視するRRタイプを選択します",
|
||||||
Dashboard: "ダッシュボード",
|
PauseMonitorMsg: "一時停止しますか?",
|
||||||
"New Update": "New Update",
|
EnableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
||||||
Language: "言語",
|
ClearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
||||||
Appearance: "外観",
|
ClearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
||||||
Theme: "テーマ",
|
ConfirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
||||||
General: "General",
|
ImportHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
||||||
Version: "バージョン",
|
ConfirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
||||||
"Check Update On GitHub": "GitHubでアップデートを確認する",
|
TwoFaVerifyLabel: "Please type in your token to verify that 2FA is working",
|
||||||
List: "一覧",
|
TokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
||||||
Add: "追加",
|
ConfirmEnableTwoFaMsg: "Are you sure you want to enable 2FA?",
|
||||||
"Add New Monitor": "監視の追加",
|
ConfirmDisableTwoFaMsg: "Are you sure you want to disable 2FA?",
|
||||||
"Quick Stats": "統計",
|
NewUpdate: "New Update",
|
||||||
Up: "Up",
|
CheckUpdateOnGitHub: "GitHubでアップデートを確認する",
|
||||||
Down: "Down",
|
AddNewMonitor: "監視の追加",
|
||||||
Pending: "中止",
|
QuickStats: "統計",
|
||||||
Unknown: "不明",
|
NoImportantEvents: "重要なイベントなし",
|
||||||
Pause: "一時停止",
|
CertExp: "証明書有効期限",
|
||||||
Name: "名前",
|
Days: "日間",
|
||||||
Status: "ステータス",
|
Day: "日",
|
||||||
DateTime: "日時",
|
Hour: "時間",
|
||||||
Message: "メッセージ",
|
MonitorType: "監視タイプ",
|
||||||
"No important events": "重要なイベントなし",
|
FriendlyName: "Friendly Name",
|
||||||
Resume: "再開",
|
Url: "URL",
|
||||||
Edit: "編集",
|
HeartbeatInterval: "監視間隔",
|
||||||
Delete: "削除",
|
HeartbeatRetryInterval: "Heartbeat Retry Interval",
|
||||||
Current: "現在",
|
UpsideDownMode: "Upside Down Mode",
|
||||||
Uptime: "起動時間",
|
MaxRedirects: "最大リダイレクト数",
|
||||||
"Cert Exp.": "証明書有効期限",
|
AcceptedStatusCodes: "承認されたステータスコード",
|
||||||
days: "日間",
|
NotAvailablePleaseSetup: "利用できません。設定してください。",
|
||||||
day: "日",
|
SetupNotification: "通知設定",
|
||||||
DaysInMonth: "30-日",
|
ThemeHeartbeatBar: "Theme - Heartbeat Bar",
|
||||||
hour: "時間",
|
SearchEngineVisibility: "検索エンジンでの表示",
|
||||||
HoursInDay: "24-時間",
|
AllowIndexing: "インデックス作成を許可する",
|
||||||
Response: "レスポンス",
|
DiscourageSearchEnginesFromIndexingSite: "検索エンジンにインデックスさせないようにする",
|
||||||
Ping: "Ping",
|
ChangePassword: "パスワード変更",
|
||||||
"Monitor Type": "監視タイプ",
|
CurrentPassword: "現在のパスワード",
|
||||||
Keyword: "キーワード",
|
NewPassword: "新しいパスワード",
|
||||||
"Friendly Name": "Friendly Name",
|
RepeatNewPassword: "確認のため新しいパスワードをもう一度",
|
||||||
URL: "URL",
|
UpdatePassword: "パスワードの更新",
|
||||||
Hostname: "ホスト名",
|
DisableAuth: "認証の無効化",
|
||||||
Port: "ポート",
|
EnableAuth: "認証の有効化",
|
||||||
"Heartbeat Interval": "監視間隔",
|
IUnderstandPleaseDisable: "理解した上で無効化する",
|
||||||
Retries: "Retries",
|
RememberMe: "パスワードを忘れた場合",
|
||||||
Advanced: "Advanced",
|
NoMonitorsPlease: "監視がありません",
|
||||||
"Upside Down Mode": "Upside Down Mode",
|
AddOne: "add one",
|
||||||
"Max. Redirects": "最大リダイレクト数",
|
NotificationType: "通知タイプ",
|
||||||
"Accepted Status Codes": "承認されたステータスコード",
|
CertificateInfo: "証明書情報",
|
||||||
Save: "保存",
|
ResolverServer: "問い合わせ先DNSサーバ",
|
||||||
Notifications: "通知",
|
ResourceRecordType: "DNSレコード設定",
|
||||||
"Not available, please setup.": "利用できません。設定してください。",
|
LastResult: "最終結果",
|
||||||
"Setup Notification": "通知設定",
|
CreateYourAdminAccount: "Create your admin account",
|
||||||
Light: "Light",
|
RepeatPassword: "Repeat Password",
|
||||||
Dark: "Dark",
|
ImportBackup: "Import Backup",
|
||||||
Auto: "Auto",
|
ExportBackup: "Export Backup",
|
||||||
"Theme - Heartbeat Bar": "Theme - Heartbeat Bar",
|
RespTime: "Resp. Time (ms)",
|
||||||
Normal: "通常",
|
NotAvailableShort: "N/A",
|
||||||
Bottom: "下部",
|
DefaultEnabled: "Default enabled",
|
||||||
None: "なし",
|
ApplyOnAllExistingMonitors: "Apply on all existing monitors",
|
||||||
Timezone: "タイムゾーン",
|
ClearData: "Clear Data",
|
||||||
"Search Engine Visibility": "検索エンジンでの表示",
|
AutoGet: "Auto Get",
|
||||||
"Allow indexing": "インデックス作成を許可する",
|
BackupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
||||||
"Discourage search engines from indexing site": "検索エンジンにインデックスさせないようにする",
|
BackupDescription2: "PS: History and event data is not included.",
|
||||||
"Change Password": "パスワード変更",
|
BackupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
||||||
"Current Password": "現在のパスワード",
|
AlertNoFile: "Please select a file to import.",
|
||||||
"New Password": "新しいパスワード",
|
AlertWrongFileType: "Please select a JSON file.",
|
||||||
"Repeat New Password": "確認のため新しいパスワードをもう一度",
|
ClearAllStatistics: "Clear all Statistics",
|
||||||
"Update Password": "パスワードの更新",
|
SkipExisting: "Skip existing",
|
||||||
"Disable Auth": "認証の無効化",
|
KeepBoth: "Keep both",
|
||||||
"Enable Auth": "認証の有効化",
|
VerifyToken: "Verify Token",
|
||||||
Logout: "ログアウト",
|
Setup2Fa: "Setup 2FA",
|
||||||
Leave: "作業を中止する",
|
Enable2Fa: "Enable 2FA",
|
||||||
"I understand, please disable": "理解した上で無効化する",
|
Disable2Fa: "Disable 2FA",
|
||||||
Confirm: "確認",
|
TwoFaSettings: "2FA Settings",
|
||||||
Yes: "はい",
|
TwoFactorAuthentication: "Two Factor Authentication",
|
||||||
No: "いいえ",
|
ShowUri: "Show URI",
|
||||||
Username: "ユーザー名",
|
AddNewBelowOrSelect: "Add New below or Select...",
|
||||||
Password: "パスワード",
|
TagWithThisNameAlreadyExist: "Tag with this name already exist.",
|
||||||
"Remember me": "パスワードを忘れた場合",
|
TagWithThisValueAlreadyExist: "Tag with this value already exist.",
|
||||||
Login: "ログイン",
|
Color: "color",
|
||||||
"No Monitors, please": "監視がありません",
|
ValueOptional: "value (optional)",
|
||||||
"add one": "add one",
|
Search: "Search...",
|
||||||
"Notification Type": "通知タイプ",
|
AvgPing: "Avg. Ping",
|
||||||
Email: "Eメール",
|
AvgResponse: "Avg. Response",
|
||||||
Test: "テスト",
|
EntryPage: "Entry Page",
|
||||||
"Certificate Info": "証明書情報",
|
StatusPageNothing: "Nothing here, please add a group or a monitor.",
|
||||||
"Resolver Server": "問い合わせ先DNSサーバ",
|
NoServices: "No Services",
|
||||||
"Resource Record Type": "DNSレコード設定",
|
AllSystemsOperational: "All Systems Operational",
|
||||||
"Last Result": "最終結果",
|
PartiallyDegradedService: "Partially Degraded Service",
|
||||||
"Create your admin account": "Create your admin account",
|
DegradedService: "Degraded Service",
|
||||||
"Repeat Password": "Repeat Password",
|
AddGroup: "Add Group",
|
||||||
respTime: "Resp. Time (ms)",
|
AddAMonitor: "Add a monitor",
|
||||||
notAvailableShort: "N/A",
|
EditStatusPage: "Edit Status Page",
|
||||||
Create: "Create",
|
GoToDashboard: "Go to Dashboard",
|
||||||
clearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
Telegram: "Telegram",
|
||||||
clearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
Webhook: "Webhook",
|
||||||
confirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
Smtp: "Email (SMTP)",
|
||||||
"Clear Data": "Clear Data",
|
Discord: "Discord",
|
||||||
Events: "Events",
|
Teams: "Microsoft Teams",
|
||||||
Heartbeats: "Heartbeats",
|
Signal: "Signal",
|
||||||
"Auto Get": "Auto Get",
|
Gotify: "Gotify",
|
||||||
enableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
Slack: "Slack",
|
||||||
"Default enabled": "Default enabled",
|
RocketChat: "Rocket.chat",
|
||||||
"Also apply to existing monitors": "Also apply to existing monitors",
|
Pushover: "Pushover",
|
||||||
Export: "Export",
|
Pushy: "Pushy",
|
||||||
Import: "Import",
|
Octopush: "Octopush",
|
||||||
backupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
Lunasea: "LunaSea",
|
||||||
backupDescription2: "PS: History and event data is not included.",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
Pushbullet: "Pushbullet",
|
||||||
alertNoFile: "Please select a file to import.",
|
Line: "Line Messenger",
|
||||||
alertWrongFileType: "Please select a JSON file.",
|
Mattermost: "Mattermost"
|
||||||
twoFAVerifyLabel: "Please type in your token to verify that 2FA is working",
|
|
||||||
tokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
|
||||||
confirmEnableTwoFAMsg: "Are you sure you want to enable 2FA?",
|
|
||||||
confirmDisableTwoFAMsg: "Are you sure you want to disable 2FA?",
|
|
||||||
"Apply on all existing monitors": "Apply on all existing monitors",
|
|
||||||
"Verify Token": "Verify Token",
|
|
||||||
"Setup 2FA": "Setup 2FA",
|
|
||||||
"Enable 2FA": "Enable 2FA",
|
|
||||||
"Disable 2FA": "Disable 2FA",
|
|
||||||
"2FA Settings": "2FA Settings",
|
|
||||||
"Two Factor Authentication": "Two Factor Authentication",
|
|
||||||
Active: "Active",
|
|
||||||
Inactive: "Inactive",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Show URI",
|
|
||||||
"Clear all statistics": "Clear all Statistics",
|
|
||||||
retryCheckEverySecond: "Retry every {0} seconds.",
|
|
||||||
importHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
|
||||||
confirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
|
||||||
"Heartbeat Retry Interval": "Heartbeat Retry Interval",
|
|
||||||
"Import Backup": "Import Backup",
|
|
||||||
"Export Backup": "Export Backup",
|
|
||||||
"Skip existing": "Skip existing",
|
|
||||||
Overwrite: "Overwrite",
|
|
||||||
Options: "Options",
|
|
||||||
"Keep both": "Keep both",
|
|
||||||
Tags: "Tags",
|
|
||||||
"Add New below or Select...": "Add New below or Select...",
|
|
||||||
"Tag with this name already exist.": "Tag with this name already exist.",
|
|
||||||
"Tag with this value already exist.": "Tag with this value already exist.",
|
|
||||||
color: "color",
|
|
||||||
"value (optional)": "value (optional)",
|
|
||||||
Gray: "Gray",
|
|
||||||
Red: "Red",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Green",
|
|
||||||
Blue: "Blue",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Purple",
|
|
||||||
Pink: "Pink",
|
|
||||||
"Search...": "Search...",
|
|
||||||
"Avg. Ping": "Avg. Ping",
|
|
||||||
"Avg. Response": "Avg. Response",
|
|
||||||
"Entry Page": "Entry Page",
|
|
||||||
statusPageNothing: "Nothing here, please add a group or a monitor.",
|
|
||||||
"No Services": "No Services",
|
|
||||||
"All Systems Operational": "All Systems Operational",
|
|
||||||
"Partially Degraded Service": "Partially Degraded Service",
|
|
||||||
"Degraded Service": "Degraded Service",
|
|
||||||
"Add Group": "Add Group",
|
|
||||||
"Add a monitor": "Add a monitor",
|
|
||||||
"Edit Status Page": "Edit Status Page",
|
|
||||||
"Go to Dashboard": "Go to Dashboard",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "한국어",
|
Also apply to existing monitors: "Also apply to existing monitors",
|
||||||
checkEverySecond: "{0} 초마다 체크해요.",
|
LanguageName: "한국어",
|
||||||
retriesDescription: "서비스가 중단된 후 알림을 보내기 전 최대 재시도 횟수",
|
CheckEverySecond: "{0} 초마다 체크해요.",
|
||||||
ignoreTLSError: "HTTPS 웹사이트에서 TLS/SSL 에러 무시하기",
|
RetryCheckEverySecond: "Retry every {0} seconds.",
|
||||||
upsideDownModeDescription: "서버 상태를 반대로 표시해요. 서버가 작동하면 오프라인으로 표시할 거에요.",
|
RetriesDescription: "서비스가 중단된 후 알림을 보내기 전 최대 재시도 횟수",
|
||||||
maxRedirectDescription: "최대 리다이렉트 횟수에요. 0을 입력하면 리다이렉트를 꺼요.",
|
IgnoreTlsError: "HTTPS 웹사이트에서 TLS/SSL 에러 무시하기",
|
||||||
acceptedStatusCodesDescription: "응답 성공으로 간주할 상태 코드를 정해요.",
|
UpsideDownModeDescription: "서버 상태를 반대로 표시해요. 서버가 작동하면 오프라인으로 표시할 거에요.",
|
||||||
passwordNotMatchMsg: "비밀번호 재입력이 일치하지 않아요.",
|
MaxRedirectDescription: "최대 리다이렉트 횟수에요. 0을 입력하면 리다이렉트를 꺼요.",
|
||||||
notificationDescription: "모니터링에 알림을 설정할 수 있어요.",
|
AcceptedStatusCodesDescription: "응답 성공으로 간주할 상태 코드를 정해요.",
|
||||||
keywordDescription: "Html 이나 JSON에서 대소문자를 구분해 키워드를 검색해요.",
|
PasswordNotMatchMsg: "비밀번호 재입력이 일치하지 않아요.",
|
||||||
pauseDashboardHome: "일시 정지",
|
NotificationDescription: "모니터링에 알림을 설정할 수 있어요.",
|
||||||
deleteMonitorMsg: "정말 이 모니터링을 삭제할까요?",
|
KeywordDescription: "Html 이나 JSON에서 대소문자를 구분해 키워드를 검색해요.",
|
||||||
deleteNotificationMsg: "정말 이 알림을 모든 모니터링에서 삭제할까요?",
|
PauseDashboardHome: "일시 정지",
|
||||||
resoverserverDescription: "Cloudflare가 기본 서버에요, 원한다면 언제나 다른 resolver 서버로 변경할 수 있어요.",
|
DeleteMonitorMsg: "정말 이 모니터링을 삭제할까요?",
|
||||||
rrtypeDescription: "모니터링할 RR-Type을 선택해요.",
|
DeleteNotificationMsg: "정말 이 알림을 모든 모니터링에서 삭제할까요?",
|
||||||
pauseMonitorMsg: "정말 이 모니터링을 일시 정지 할까요?",
|
ResoverserverDescription: "Cloudflare가 기본 서버에요, 원한다면 언제나 다른 resolver 서버로 변경할 수 있어요.",
|
||||||
Settings: "설정",
|
RrtypeDescription: "모니터링할 RR-Type을 선택해요.",
|
||||||
Dashboard: "대시보드",
|
PauseMonitorMsg: "정말 이 모니터링을 일시 정지 할까요?",
|
||||||
"New Update": "새로운 업데이트",
|
EnableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
||||||
Language: "언어",
|
ClearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
||||||
Appearance: "외형",
|
ClearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
||||||
Theme: "테마",
|
ConfirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
||||||
General: "일반",
|
ImportHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
||||||
Version: "버전",
|
ConfirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
||||||
"Check Update On GitHub": "깃허브에서 업데이트 확인",
|
TwoFaVerifyLabel: "Please type in your token to verify that 2FA is working",
|
||||||
List: "목록",
|
TokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
||||||
Add: "추가",
|
ConfirmEnableTwoFaMsg: "Are you sure you want to enable 2FA?",
|
||||||
"Add New Monitor": "새로운 모니터링 추가하기",
|
ConfirmDisableTwoFaMsg: "Are you sure you want to disable 2FA?",
|
||||||
"Quick Stats": "간단한 정보",
|
NewUpdate: "새로운 업데이트",
|
||||||
Up: "온라인",
|
CheckUpdateOnGitHub: "깃허브에서 업데이트 확인",
|
||||||
Down: "오프라인",
|
AddNewMonitor: "새로운 모니터링 추가하기",
|
||||||
Pending: "대기 중",
|
QuickStats: "간단한 정보",
|
||||||
Unknown: "알 수 없음",
|
NoImportantEvents: "중요 이벤트 없음",
|
||||||
Pause: "일시 정지",
|
CertExp: "인증서 만료",
|
||||||
Name: "이름",
|
Days: "일",
|
||||||
Status: "상태",
|
Day: "일",
|
||||||
DateTime: "날짜",
|
Hour: "시간",
|
||||||
Message: "메시지",
|
MonitorType: "모니터링 종류",
|
||||||
"No important events": "중요 이벤트 없음",
|
FriendlyName: "이름",
|
||||||
Resume: "재개",
|
Url: "URL",
|
||||||
Edit: "수정",
|
HeartbeatInterval: "하트비트 주기",
|
||||||
Delete: "삭제",
|
HeartbeatRetryInterval: "Heartbeat Retry Interval",
|
||||||
Current: "현재",
|
UpsideDownMode: "상태 반전 모드",
|
||||||
Uptime: "업타임",
|
MaxRedirects: "최대 리다이렉트",
|
||||||
"Cert Exp.": "인증서 만료",
|
AcceptedStatusCodes: "응답 성공 상태 코드",
|
||||||
days: "일",
|
NotAvailablePleaseSetup: "존재하지 않아요, 새로운거 하나 만드는건 어때요?",
|
||||||
day: "일",
|
SetupNotification: "알림 설정",
|
||||||
DaysInMonth: "30-일",
|
ThemeHeartbeatBar: "테마 - 하트비트 바",
|
||||||
hour: "시간",
|
SearchEngineVisibility: "검색 엔진 활성화",
|
||||||
HoursInDay: "24-시간",
|
AllowIndexing: "인덱싱 허용",
|
||||||
Response: "응답",
|
DiscourageSearchEnginesFromIndexingSite: "검색 엔진 인덱싱 거부",
|
||||||
Ping: "핑",
|
ChangePassword: "비밀번호 변경",
|
||||||
"Monitor Type": "모니터링 종류",
|
CurrentPassword: "기존 비밀번호",
|
||||||
Keyword: "키워드",
|
NewPassword: "새로운 비밀번호",
|
||||||
"Friendly Name": "이름",
|
RepeatNewPassword: "새로운 비밀번호 재입력",
|
||||||
URL: "URL",
|
UpdatePassword: "비밀번호 변경",
|
||||||
Hostname: "호스트네임",
|
DisableAuth: "인증 끄기",
|
||||||
Port: "포트",
|
EnableAuth: "인증 켜기",
|
||||||
"Heartbeat Interval": "하트비트 주기",
|
IUnderstandPleaseDisable: "기능에 대해 이해했으니 꺼주세요.",
|
||||||
Retries: "재시도",
|
RememberMe: "비밀번호 기억하기",
|
||||||
Advanced: "고급",
|
NoMonitorsPlease: "모니터링이 없어요,",
|
||||||
"Upside Down Mode": "상태 반전 모드",
|
AddOne: "하나 추가해봐요",
|
||||||
"Max. Redirects": "최대 리다이렉트",
|
NotificationType: "알림 종류",
|
||||||
"Accepted Status Codes": "응답 성공 상태 코드",
|
CertificateInfo: "인증서 정보",
|
||||||
Save: "저장",
|
ResolverServer: "Resolver 서버",
|
||||||
Notifications: "알림",
|
ResourceRecordType: "자원 레코드 유형",
|
||||||
"Not available, please setup.": "존재하지 않아요, 새로운거 하나 만드는건 어때요?",
|
LastResult: "최근 결과",
|
||||||
"Setup Notification": "알림 설정",
|
CreateYourAdminAccount: "관리자 계정 만들기",
|
||||||
Light: "라이트",
|
RepeatPassword: "비밀번호 재입력",
|
||||||
Dark: "다크",
|
ImportBackup: "Import Backup",
|
||||||
Auto: "자동",
|
ExportBackup: "Export Backup",
|
||||||
"Theme - Heartbeat Bar": "테마 - 하트비트 바",
|
RespTime: "응답 시간 (ms)",
|
||||||
Normal: "기본값",
|
NotAvailableShort: "N/A",
|
||||||
Bottom: "가운데",
|
DefaultEnabled: "Default enabled",
|
||||||
None: "제거",
|
ApplyOnAllExistingMonitors: "Apply on all existing monitors",
|
||||||
Timezone: "시간대",
|
ClearData: "Clear Data",
|
||||||
"Search Engine Visibility": "검색 엔진 활성화",
|
AutoGet: "Auto Get",
|
||||||
"Allow indexing": "인덱싱 허용",
|
BackupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
||||||
"Discourage search engines from indexing site": "검색 엔진 인덱싱 거부",
|
BackupDescription2: "PS: History and event data is not included.",
|
||||||
"Change Password": "비밀번호 변경",
|
BackupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
||||||
"Current Password": "기존 비밀번호",
|
AlertNoFile: "Please select a file to import.",
|
||||||
"New Password": "새로운 비밀번호",
|
AlertWrongFileType: "Please select a JSON file.",
|
||||||
"Repeat New Password": "새로운 비밀번호 재입력",
|
ClearAllStatistics: "Clear all Statistics",
|
||||||
"Update Password": "비밀번호 변경",
|
SkipExisting: "Skip existing",
|
||||||
"Disable Auth": "인증 끄기",
|
KeepBoth: "Keep both",
|
||||||
"Enable Auth": "인증 켜기",
|
VerifyToken: "Verify Token",
|
||||||
Logout: "로그아웃",
|
Setup2Fa: "Setup 2FA",
|
||||||
Leave: "나가기",
|
Enable2Fa: "Enable 2FA",
|
||||||
"I understand, please disable": "기능에 대해 이해했으니 꺼주세요.",
|
Disable2Fa: "Disable 2FA",
|
||||||
Confirm: "확인",
|
TwoFaSettings: "2FA Settings",
|
||||||
Yes: "확인",
|
TwoFactorAuthentication: "Two Factor Authentication",
|
||||||
No: "취소",
|
ShowUri: "Show URI",
|
||||||
Username: "이름",
|
AddNewBelowOrSelect: "Add New below or Select...",
|
||||||
Password: "비밀번호",
|
TagWithThisNameAlreadyExist: "Tag with this name already exist.",
|
||||||
"Remember me": "비밀번호 기억하기",
|
TagWithThisValueAlreadyExist: "Tag with this value already exist.",
|
||||||
Login: "로그인",
|
Color: "color",
|
||||||
"No Monitors, please": "모니터링이 없어요,",
|
ValueOptional: "value (optional)",
|
||||||
"add one": "하나 추가해봐요",
|
Search: "Search...",
|
||||||
"Notification Type": "알림 종류",
|
AvgPing: "Avg. Ping",
|
||||||
Email: "이메일",
|
AvgResponse: "Avg. Response",
|
||||||
Test: "테스트",
|
EntryPage: "Entry Page",
|
||||||
"Certificate Info": "인증서 정보",
|
StatusPageNothing: "Nothing here, please add a group or a monitor.",
|
||||||
"Resolver Server": "Resolver 서버",
|
NoServices: "No Services",
|
||||||
"Resource Record Type": "자원 레코드 유형",
|
AllSystemsOperational: "All Systems Operational",
|
||||||
"Last Result": "최근 결과",
|
PartiallyDegradedService: "Partially Degraded Service",
|
||||||
"Create your admin account": "관리자 계정 만들기",
|
DegradedService: "Degraded Service",
|
||||||
"Repeat Password": "비밀번호 재입력",
|
AddGroup: "Add Group",
|
||||||
respTime: "응답 시간 (ms)",
|
AddAMonitor: "Add a monitor",
|
||||||
notAvailableShort: "N/A",
|
EditStatusPage: "Edit Status Page",
|
||||||
Create: "Create",
|
GoToDashboard: "Go to Dashboard",
|
||||||
clearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
Telegram: "Telegram",
|
||||||
clearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
Webhook: "Webhook",
|
||||||
confirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
Smtp: "Email (SMTP)",
|
||||||
"Clear Data": "Clear Data",
|
Discord: "Discord",
|
||||||
Events: "Events",
|
Teams: "Microsoft Teams",
|
||||||
Heartbeats: "Heartbeats",
|
Signal: "Signal",
|
||||||
"Auto Get": "Auto Get",
|
Gotify: "Gotify",
|
||||||
enableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
Slack: "Slack",
|
||||||
"Default enabled": "Default enabled",
|
RocketChat: "Rocket.chat",
|
||||||
"Also apply to existing monitors": "Also apply to existing monitors",
|
Pushover: "Pushover",
|
||||||
Export: "Export",
|
Pushy: "Pushy",
|
||||||
Import: "Import",
|
Octopush: "Octopush",
|
||||||
backupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
Lunasea: "LunaSea",
|
||||||
backupDescription2: "PS: History and event data is not included.",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
Pushbullet: "Pushbullet",
|
||||||
alertNoFile: "Please select a file to import.",
|
Line: "Line Messenger",
|
||||||
alertWrongFileType: "Please select a JSON file.",
|
Mattermost: "Mattermost"
|
||||||
twoFAVerifyLabel: "Please type in your token to verify that 2FA is working",
|
|
||||||
tokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
|
||||||
confirmEnableTwoFAMsg: "Are you sure you want to enable 2FA?",
|
|
||||||
confirmDisableTwoFAMsg: "Are you sure you want to disable 2FA?",
|
|
||||||
"Apply on all existing monitors": "Apply on all existing monitors",
|
|
||||||
"Verify Token": "Verify Token",
|
|
||||||
"Setup 2FA": "Setup 2FA",
|
|
||||||
"Enable 2FA": "Enable 2FA",
|
|
||||||
"Disable 2FA": "Disable 2FA",
|
|
||||||
"2FA Settings": "2FA Settings",
|
|
||||||
"Two Factor Authentication": "Two Factor Authentication",
|
|
||||||
Active: "Active",
|
|
||||||
Inactive: "Inactive",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Show URI",
|
|
||||||
"Clear all statistics": "Clear all Statistics",
|
|
||||||
retryCheckEverySecond: "Retry every {0} seconds.",
|
|
||||||
importHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
|
||||||
confirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
|
||||||
"Heartbeat Retry Interval": "Heartbeat Retry Interval",
|
|
||||||
"Import Backup": "Import Backup",
|
|
||||||
"Export Backup": "Export Backup",
|
|
||||||
"Skip existing": "Skip existing",
|
|
||||||
Overwrite: "Overwrite",
|
|
||||||
Options: "Options",
|
|
||||||
"Keep both": "Keep both",
|
|
||||||
Tags: "Tags",
|
|
||||||
"Add New below or Select...": "Add New below or Select...",
|
|
||||||
"Tag with this name already exist.": "Tag with this name already exist.",
|
|
||||||
"Tag with this value already exist.": "Tag with this value already exist.",
|
|
||||||
color: "color",
|
|
||||||
"value (optional)": "value (optional)",
|
|
||||||
Gray: "Gray",
|
|
||||||
Red: "Red",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Green",
|
|
||||||
Blue: "Blue",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Purple",
|
|
||||||
Pink: "Pink",
|
|
||||||
"Search...": "Search...",
|
|
||||||
"Avg. Ping": "Avg. Ping",
|
|
||||||
"Avg. Response": "Avg. Response",
|
|
||||||
"Entry Page": "Entry Page",
|
|
||||||
statusPageNothing: "Nothing here, please add a group or a monitor.",
|
|
||||||
"No Services": "No Services",
|
|
||||||
"All Systems Operational": "All Systems Operational",
|
|
||||||
"Partially Degraded Service": "Partially Degraded Service",
|
|
||||||
"Degraded Service": "Degraded Service",
|
|
||||||
"Add Group": "Add Group",
|
|
||||||
"Add a monitor": "Add a monitor",
|
|
||||||
"Edit Status Page": "Edit Status Page",
|
|
||||||
"Go to Dashboard": "Go to Dashboard",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Nederlands",
|
Also apply to existing monitors: "Also apply to existing monitors",
|
||||||
checkEverySecond: "Controleer elke {0} seconden.",
|
LanguageName: "Nederlands",
|
||||||
retriesDescription: "Maximum aantal nieuwe pogingen voordat de service wordt gemarkeerd als niet beschikbaar en er een melding wordt verzonden",
|
CheckEverySecond: "Controleer elke {0} seconden.",
|
||||||
ignoreTLSError: "Negeer TLS/SSL-fout voor HTTPS-websites",
|
RetryCheckEverySecond: "Retry every {0} seconds.",
|
||||||
upsideDownModeDescription: "Draai de status om. Als de service bereikbaar is, is deze OFFLINE.",
|
RetriesDescription: "Maximum aantal nieuwe pogingen voordat de service wordt gemarkeerd als niet beschikbaar en er een melding wordt verzonden",
|
||||||
maxRedirectDescription: "Maximaal aantal te volgen omleidingen. Stel in op 0 om omleidingen uit te schakelen.",
|
IgnoreTlsError: "Negeer TLS/SSL-fout voor HTTPS-websites",
|
||||||
acceptedStatusCodesDescription: "Selecteer statuscodes die als een succesvol antwoord worden beschouwd.",
|
UpsideDownModeDescription: "Draai de status om. Als de service bereikbaar is, is deze OFFLINE.",
|
||||||
passwordNotMatchMsg: "Het herhaalwachtwoord komt niet overeen.",
|
MaxRedirectDescription: "Maximaal aantal te volgen omleidingen. Stel in op 0 om omleidingen uit te schakelen.",
|
||||||
notificationDescription: "Wijs a.u.b. een melding toe aan de monitor(s) om het te laten werken.",
|
AcceptedStatusCodesDescription: "Selecteer statuscodes die als een succesvol antwoord worden beschouwd.",
|
||||||
keywordDescription: "Zoek trefwoord in gewone html of JSON-response en het is hoofdlettergevoelig",
|
PasswordNotMatchMsg: "Het herhaalwachtwoord komt niet overeen.",
|
||||||
pauseDashboardHome: "Gepauzeerd",
|
NotificationDescription: "Wijs a.u.b. een melding toe aan de monitor(s) om het te laten werken.",
|
||||||
deleteMonitorMsg: "Weet u zeker dat u deze monitor wilt verwijderen?",
|
KeywordDescription: "Zoek trefwoord in gewone html of JSON-response en het is hoofdlettergevoelig",
|
||||||
deleteNotificationMsg: "Weet u zeker dat u deze melding voor alle monitoren wilt verwijderen?",
|
PauseDashboardHome: "Gepauzeerd",
|
||||||
resoverserverDescription: "Cloudflare is de standaardserver, u kunt de resolver server op elk moment wijzigen.",
|
DeleteMonitorMsg: "Weet u zeker dat u deze monitor wilt verwijderen?",
|
||||||
rrtypeDescription: "Selecteer het RR-type dat u wilt monitoren",
|
DeleteNotificationMsg: "Weet u zeker dat u deze melding voor alle monitoren wilt verwijderen?",
|
||||||
pauseMonitorMsg: "Weet je zeker dat je wilt pauzeren?",
|
ResoverserverDescription: "Cloudflare is de standaardserver, u kunt de resolver server op elk moment wijzigen.",
|
||||||
enableDefaultNotificationDescription: "Voor elke nieuwe monitor wordt deze melding standaard ingeschakeld. U kunt de melding nog steeds afzonderlijk uitschakelen voor elke monitor.",
|
RrtypeDescription: "Selecteer het RR-type dat u wilt monitoren",
|
||||||
clearEventsMsg: "Weet je zeker dat je alle evenementen voor deze monitor wilt verwijderen?",
|
PauseMonitorMsg: "Weet je zeker dat je wilt pauzeren?",
|
||||||
clearHeartbeatsMsg: "Weet je zeker dat je alle heartbeats voor deze monitor wilt verwijderen?",
|
EnableDefaultNotificationDescription: "Voor elke nieuwe monitor wordt deze melding standaard ingeschakeld. U kunt de melding nog steeds afzonderlijk uitschakelen voor elke monitor.",
|
||||||
confirmClearStatisticsMsg: "Weet u zeker dat u alle statistieken wilt verwijderen?",
|
ClearEventsMsg: "Weet je zeker dat je alle evenementen voor deze monitor wilt verwijderen?",
|
||||||
twoFAVerifyLabel: "Voer uw 2FA controle token in voor verificatie",
|
ClearHeartbeatsMsg: "Weet je zeker dat je alle heartbeats voor deze monitor wilt verwijderen?",
|
||||||
tokenValidSettingsMsg: "Token is geldig! U kunt nu de 2FA-instellingen opslaan.",
|
ConfirmClearStatisticsMsg: "Weet u zeker dat u alle statistieken wilt verwijderen?",
|
||||||
confirmEnableTwoFAMsg: "Weet je zeker dat je 2FA wilt inschakelen?",
|
ImportHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
||||||
confirmDisableTwoFAMsg: "Weet je zeker dat je 2FA wilt uitschakelen?",
|
ConfirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
||||||
Settings: "Instellingen",
|
TwoFaVerifyLabel: "Voer uw 2FA controle token in voor verificatie",
|
||||||
Dashboard: "Dashboard",
|
TokenValidSettingsMsg: "Token is geldig! U kunt nu de 2FA-instellingen opslaan.",
|
||||||
"New Update": "Nieuwe update",
|
ConfirmEnableTwoFaMsg: "Weet je zeker dat je 2FA wilt inschakelen?",
|
||||||
Language: "Taal",
|
ConfirmDisableTwoFaMsg: "Weet je zeker dat je 2FA wilt uitschakelen?",
|
||||||
Appearance: "Weergave",
|
NewUpdate: "Nieuwe update",
|
||||||
Theme: "Thema",
|
CheckUpdateOnGitHub: "Controleer voor updates op GitHub",
|
||||||
General: "Algemeen",
|
AddNewMonitor: "Nieuwe monitor toevoegen",
|
||||||
Version: "Versie",
|
QuickStats: "Snelle statistieken",
|
||||||
"Check Update On GitHub": "Controleer voor updates op GitHub",
|
NoImportantEvents: "Geen belangrijke gebeurtenissen",
|
||||||
List: "Lijst",
|
CertExp: "Cert. verl.",
|
||||||
Add: "Toevoegen",
|
Days: "dagen",
|
||||||
"Add New Monitor": "Nieuwe monitor toevoegen",
|
Day: "dag",
|
||||||
"Quick Stats": "Snelle statistieken",
|
Hour: "uur",
|
||||||
Up: "Online",
|
MonitorType: "Monitortype:",
|
||||||
Down: "Offline",
|
FriendlyName: "Vriendelijke naam",
|
||||||
Pending: "In afwachting",
|
Url: "URL",
|
||||||
Unknown: "Onbekend",
|
HeartbeatInterval: "Hartslaginterval",
|
||||||
Pause: "Pauze",
|
HeartbeatRetryInterval: "Heartbeat Retry Interval",
|
||||||
Name: "Naam",
|
UpsideDownMode: "Ondersteboven modus",
|
||||||
Status: "Status",
|
MaxRedirects: "Max. Omleidingen",
|
||||||
DateTime: "Datum Tijd",
|
AcceptedStatusCodes: "Geaccepteerde statuscodes",
|
||||||
Message: "Bericht",
|
NotAvailablePleaseSetup: "Niet beschikbaar, stel a.u.b. in.",
|
||||||
"No important events": "Geen belangrijke gebeurtenissen",
|
SetupNotification: "Melding instellen",
|
||||||
Resume: "Hervat",
|
ThemeHeartbeatBar: "Thema - Hartslagbalk",
|
||||||
Edit: "Wijzigen",
|
SearchEngineVisibility: "Zichtbaarheid voor zoekmachines",
|
||||||
Delete: "Verwijderen",
|
AllowIndexing: "Indexering toestaan",
|
||||||
Current: "Huidig",
|
DiscourageSearchEnginesFromIndexingSite: "Ontmoedig zoekmachines om de site te indexeren",
|
||||||
Uptime: "Uptime",
|
ChangePassword: "Verander wachtwoord",
|
||||||
"Cert Exp.": "Cert. verl.",
|
CurrentPassword: "Huidig wachtwoord",
|
||||||
days: "dagen",
|
NewPassword: "Nieuw wachtwoord",
|
||||||
day: "dag",
|
RepeatNewPassword: "Herhaal nieuw wachtwoord",
|
||||||
DaysInMonth: "30-dagen",
|
UpdatePassword: "Vernieuw wachtwoord",
|
||||||
hour: "uur",
|
DisableAuth: "Autorisatie uitschakelen",
|
||||||
HoursInDay: "24-uur",
|
EnableAuth: "Autorisatie inschakelen",
|
||||||
Response: "Antwoord",
|
IUnderstandPleaseDisable: "Ik begrijp het, schakel a.u.b. uit",
|
||||||
Ping: "Ping",
|
RememberMe: "Wachtwoord onthouden",
|
||||||
"Monitor Type": "Monitortype:",
|
NoMonitorsPlease: "Geen monitoren, ",
|
||||||
Keyword: "Trefwoord",
|
AddOne: "voeg een toe",
|
||||||
"Friendly Name": "Vriendelijke naam",
|
NotificationType: "Melding type",
|
||||||
URL: "URL",
|
CertificateInfo: "Certificaat informatie",
|
||||||
Hostname: "Hostnaam",
|
ResolverServer: "Resolver Server",
|
||||||
Port: "Poort",
|
ResourceRecordType: "Type bronrecord",
|
||||||
"Heartbeat Interval": "Hartslaginterval",
|
LastResult: "Laatste resultaat",
|
||||||
Retries: "Pogingen",
|
CreateYourAdminAccount: "Maak uw beheerdersaccount aan",
|
||||||
Advanced: "Geavanceerd",
|
RepeatPassword: "Herhaal wachtwoord",
|
||||||
"Upside Down Mode": "Ondersteboven modus",
|
ImportBackup: "Import Backup",
|
||||||
"Max. Redirects": "Max. Omleidingen",
|
ExportBackup: "Export Backup",
|
||||||
"Accepted Status Codes": "Geaccepteerde statuscodes",
|
RespTime: "resp. tijd (ms)",
|
||||||
Save: "Opslaan",
|
NotAvailableShort: "N.v.t.",
|
||||||
Notifications: "Meldingen",
|
DefaultEnabled: "Default enabled",
|
||||||
"Not available, please setup.": "Niet beschikbaar, stel a.u.b. in.",
|
ApplyOnAllExistingMonitors: "Pas toe op alle bestaande monitors",
|
||||||
"Setup Notification": "Melding instellen",
|
ClearData: "Data wissen",
|
||||||
Light: "Licht",
|
AutoGet: "Auto Get",
|
||||||
Dark: "Donker",
|
BackupDescription: "U kunt een back-up maken van alle monitoren en alle meldingen in een JSON-bestand.",
|
||||||
Auto: "Auto",
|
BackupDescription2: "PS: Geschiedenis- en gebeurtenisgegevens zijn niet inbegrepen.",
|
||||||
"Theme - Heartbeat Bar": "Thema - Hartslagbalk",
|
BackupDescription3: "Gevoelige gegevens zoals melding tokens zijn opgenomen in het exportbestand, houd het veilig opgeslagen.",
|
||||||
Normal: "Normaal",
|
AlertNoFile: "Selecteer een bestand om te importeren.",
|
||||||
Bottom: "Onderkant",
|
AlertWrongFileType: "Selecteer een JSON-bestand.",
|
||||||
None: "Geen",
|
ClearAllStatistics: "Wis alle statistieken",
|
||||||
Timezone: "Tijdzone",
|
SkipExisting: "Skip existing",
|
||||||
"Search Engine Visibility": "Zichtbaarheid voor zoekmachines",
|
KeepBoth: "Keep both",
|
||||||
"Allow indexing": "Indexering toestaan",
|
VerifyToken: "Controleer token",
|
||||||
"Discourage search engines from indexing site": "Ontmoedig zoekmachines om de site te indexeren",
|
Setup2Fa: "2FA instellingen",
|
||||||
"Change Password": "Verander wachtwoord",
|
Enable2Fa: "Schakel 2FA in",
|
||||||
"Current Password": "Huidig wachtwoord",
|
Disable2Fa: "Schakel 2FA uit",
|
||||||
"New Password": "Nieuw wachtwoord",
|
TwoFaSettings: "2FA-instellingen",
|
||||||
"Repeat New Password": "Herhaal nieuw wachtwoord",
|
TwoFactorAuthentication: "Two Factor Authenticatie",
|
||||||
"Update Password": "Vernieuw wachtwoord",
|
ShowUri: "Toon URI",
|
||||||
"Disable Auth": "Autorisatie uitschakelen",
|
AddNewBelowOrSelect: "Add New below or Select...",
|
||||||
"Enable Auth": "Autorisatie inschakelen",
|
TagWithThisNameAlreadyExist: "Tag with this name already exist.",
|
||||||
Logout: "Uitloggen",
|
TagWithThisValueAlreadyExist: "Tag with this value already exist.",
|
||||||
Leave: "Vertrekken",
|
Color: "color",
|
||||||
"I understand, please disable": "Ik begrijp het, schakel a.u.b. uit",
|
ValueOptional: "value (optional)",
|
||||||
Confirm: "Bevestigen",
|
Search: "Search...",
|
||||||
Yes: "Ja",
|
AvgPing: "Avg. Ping",
|
||||||
No: "Nee",
|
AvgResponse: "Avg. Response",
|
||||||
Username: "Gebruikersnaam",
|
EntryPage: "Entry Page",
|
||||||
Password: "Wachtwoord",
|
StatusPageNothing: "Nothing here, please add a group or a monitor.",
|
||||||
"Remember me": "Wachtwoord onthouden",
|
NoServices: "No Services",
|
||||||
Login: "Inloggen",
|
AllSystemsOperational: "All Systems Operational",
|
||||||
"No Monitors, please": "Geen monitoren, ",
|
PartiallyDegradedService: "Partially Degraded Service",
|
||||||
"add one": "voeg een toe",
|
DegradedService: "Degraded Service",
|
||||||
"Notification Type": "Melding type",
|
AddGroup: "Add Group",
|
||||||
Email: "E-mail",
|
AddAMonitor: "Add a monitor",
|
||||||
Test: "Testen",
|
EditStatusPage: "Edit Status Page",
|
||||||
"Certificate Info": "Certificaat informatie",
|
GoToDashboard: "Go to Dashboard",
|
||||||
"Resolver Server": "Resolver Server",
|
Telegram: "Telegram",
|
||||||
"Resource Record Type": "Type bronrecord",
|
Webhook: "Webhook",
|
||||||
"Last Result": "Laatste resultaat",
|
Smtp: "Email (SMTP)",
|
||||||
"Create your admin account": "Maak uw beheerdersaccount aan",
|
Discord: "Discord",
|
||||||
"Repeat Password": "Herhaal wachtwoord",
|
Teams: "Microsoft Teams",
|
||||||
Export: "Exporteren",
|
Signal: "Signal",
|
||||||
Import: "Importeren",
|
Gotify: "Gotify",
|
||||||
respTime: "resp. tijd (ms)",
|
Slack: "Slack",
|
||||||
notAvailableShort: "N.v.t.",
|
RocketChat: "Rocket.chat",
|
||||||
"Default enabled": "Default enabled",
|
Pushover: "Pushover",
|
||||||
"Apply on all existing monitors": "Pas toe op alle bestaande monitors",
|
Pushy: "Pushy",
|
||||||
Create: "Aanmaken",
|
Octopush: "Octopush",
|
||||||
"Clear Data": "Data wissen",
|
Lunasea: "LunaSea",
|
||||||
Events: "Gebeurtenissen",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
Heartbeats: "Heartbeats",
|
Pushbullet: "Pushbullet",
|
||||||
"Auto Get": "Auto Get",
|
Line: "Line Messenger",
|
||||||
backupDescription: "U kunt een back-up maken van alle monitoren en alle meldingen in een JSON-bestand.",
|
Mattermost: "Mattermost"
|
||||||
backupDescription2: "PS: Geschiedenis- en gebeurtenisgegevens zijn niet inbegrepen.",
|
|
||||||
backupDescription3: "Gevoelige gegevens zoals melding tokens zijn opgenomen in het exportbestand, houd het veilig opgeslagen.",
|
|
||||||
alertNoFile: "Selecteer een bestand om te importeren.",
|
|
||||||
alertWrongFileType: "Selecteer een JSON-bestand.",
|
|
||||||
"Verify Token": "Controleer token",
|
|
||||||
"Setup 2FA": "2FA instellingen",
|
|
||||||
"Enable 2FA": "Schakel 2FA in",
|
|
||||||
"Disable 2FA": "Schakel 2FA uit",
|
|
||||||
"2FA Settings": "2FA-instellingen",
|
|
||||||
"Two Factor Authentication": "Two Factor Authenticatie",
|
|
||||||
Active: "Actief",
|
|
||||||
Inactive: "Inactief",
|
|
||||||
"Also apply to existing monitors": "Also apply to existing monitors",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Toon URI",
|
|
||||||
"Clear all statistics": "Wis alle statistieken",
|
|
||||||
retryCheckEverySecond: "Retry every {0} seconds.",
|
|
||||||
importHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
|
||||||
confirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
|
||||||
"Heartbeat Retry Interval": "Heartbeat Retry Interval",
|
|
||||||
"Import Backup": "Import Backup",
|
|
||||||
"Export Backup": "Export Backup",
|
|
||||||
"Skip existing": "Skip existing",
|
|
||||||
Overwrite: "Overwrite",
|
|
||||||
Options: "Options",
|
|
||||||
"Keep both": "Keep both",
|
|
||||||
Tags: "Tags",
|
|
||||||
"Add New below or Select...": "Add New below or Select...",
|
|
||||||
"Tag with this name already exist.": "Tag with this name already exist.",
|
|
||||||
"Tag with this value already exist.": "Tag with this value already exist.",
|
|
||||||
color: "color",
|
|
||||||
"value (optional)": "value (optional)",
|
|
||||||
Gray: "Gray",
|
|
||||||
Red: "Red",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Green",
|
|
||||||
Blue: "Blue",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Purple",
|
|
||||||
Pink: "Pink",
|
|
||||||
"Search...": "Search...",
|
|
||||||
"Avg. Ping": "Avg. Ping",
|
|
||||||
"Avg. Response": "Avg. Response",
|
|
||||||
"Entry Page": "Entry Page",
|
|
||||||
statusPageNothing: "Nothing here, please add a group or a monitor.",
|
|
||||||
"No Services": "No Services",
|
|
||||||
"All Systems Operational": "All Systems Operational",
|
|
||||||
"Partially Degraded Service": "Partially Degraded Service",
|
|
||||||
"Degraded Service": "Degraded Service",
|
|
||||||
"Add Group": "Add Group",
|
|
||||||
"Add a monitor": "Add a monitor",
|
|
||||||
"Edit Status Page": "Edit Status Page",
|
|
||||||
"Go to Dashboard": "Go to Dashboard",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Polski",
|
Also apply to existing monitors: "Również zastosuj do obecnych monitorów",
|
||||||
checkEverySecond: "Sprawdzam co {0} sekund.",
|
LanguageName: "Polski",
|
||||||
retriesDescription: "Maksymalna liczba powtórzeń, zanim usługa zostanie oznaczona jako wyłączona i zostanie wysłane powiadomienie",
|
CheckEverySecond: "Sprawdzam co {0} sekund.",
|
||||||
ignoreTLSError: "Ignoruj błąd TLS/SSL dla stron HTTPS",
|
RetryCheckEverySecond: "Ponawiaj co {0} sekund.",
|
||||||
upsideDownModeDescription: "Odwróć status do góry nogami. Jeśli usługa jest osiągalna, to jest oznaczona jako niedostępna.",
|
RetriesDescription: "Maksymalna liczba powtórzeń, zanim usługa zostanie oznaczona jako wyłączona i zostanie wysłane powiadomienie",
|
||||||
maxRedirectDescription: "Maksymalna liczba przekierowań do wykonania. Ustaw na 0, aby wyłączyć przekierowania.",
|
IgnoreTlsError: "Ignoruj błąd TLS/SSL dla stron HTTPS",
|
||||||
acceptedStatusCodesDescription: "Wybierz kody stanu, które są uważane za udaną odpowiedź.",
|
UpsideDownModeDescription: "Odwróć status do góry nogami. Jeśli usługa jest osiągalna, to jest oznaczona jako niedostępna.",
|
||||||
passwordNotMatchMsg: "Powtórzone hasło nie pasuje.",
|
MaxRedirectDescription: "Maksymalna liczba przekierowań do wykonania. Ustaw na 0, aby wyłączyć przekierowania.",
|
||||||
notificationDescription: "Proszę przypisać powiadomienie do monitora(ów), aby zadziałało.",
|
AcceptedStatusCodesDescription: "Wybierz kody stanu, które są uważane za udaną odpowiedź.",
|
||||||
keywordDescription: "Wyszukiwanie słów kluczowych w zwykłym html lub odpowiedzi JSON. Wielkość liter ma znaczenie.",
|
PasswordNotMatchMsg: "Powtórzone hasło nie pasuje.",
|
||||||
pauseDashboardHome: "Pauza",
|
NotificationDescription: "Proszę przypisać powiadomienie do monitora(ów), aby zadziałało.",
|
||||||
deleteMonitorMsg: "Czy na pewno chcesz usunąć ten monitor?",
|
KeywordDescription: "Wyszukiwanie słów kluczowych w zwykłym html lub odpowiedzi JSON. Wielkość liter ma znaczenie.",
|
||||||
deleteNotificationMsg: "Czy na pewno chcesz usunąć to powiadomienie dla wszystkich monitorów?",
|
PauseDashboardHome: "Pauza",
|
||||||
resoverserverDescription: "Cloudflare jest domyślnym serwerem, możesz zmienić serwer resolver w każdej chwili.",
|
DeleteMonitorMsg: "Czy na pewno chcesz usunąć ten monitor?",
|
||||||
rrtypeDescription: "Wybierz RR-Type który chcesz monitorować",
|
DeleteNotificationMsg: "Czy na pewno chcesz usunąć to powiadomienie dla wszystkich monitorów?",
|
||||||
pauseMonitorMsg: "Czy na pewno chcesz wstrzymać?",
|
ResoverserverDescription: "Cloudflare jest domyślnym serwerem, możesz zmienić serwer resolver w każdej chwili.",
|
||||||
Settings: "Ustawienia",
|
RrtypeDescription: "Wybierz RR-Type który chcesz monitorować",
|
||||||
Dashboard: "Panel",
|
PauseMonitorMsg: "Czy na pewno chcesz wstrzymać?",
|
||||||
"New Update": "Nowa aktualizacja",
|
EnableDefaultNotificationDescription: "Dla każdego nowego monitora to powiadomienie będzie domyślnie włączone. Nadal możesz wyłączyć powiadomienia osobno dla każdego monitora.",
|
||||||
Language: "Język",
|
ClearEventsMsg: "Jesteś pewien, że chcesz usunąć wszystkie monitory dla tej strony?",
|
||||||
Appearance: "Wygląd",
|
ClearHeartbeatsMsg: "Jesteś pewien, że chcesz usunąć wszystkie bicia serca dla tego monitora?",
|
||||||
Theme: "Motyw",
|
ConfirmClearStatisticsMsg: "Jesteś pewien, że chcesz usunąć WSZYSTKIE statystyki?",
|
||||||
General: "Ogólne",
|
ImportHandleDescription: "Wybierz 'Pomiń istniejące', jeśli chcesz pominąć każdy monitor lub powiadomienie o tej samej nazwie. 'Nadpisz' spowoduje usunięcie każdego istniejącego monitora i powiadomienia.",
|
||||||
Version: "Wersja",
|
ConfirmImportMsg: "Czy na pewno chcesz zaimportować kopię zapasową? Upewnij się, że wybrałeś właściwą opcję importu.",
|
||||||
"Check Update On GitHub": "Sprawdź aktualizację na GitHub.",
|
TwoFaVerifyLabel: "Proszę podaj swój token 2FA, aby sprawdzić czy 2FA działa",
|
||||||
List: "Lista",
|
TokenValidSettingsMsg: "Token jest poprawny! Możesz teraz zapisać ustawienia 2FA.",
|
||||||
Add: "Dodaj",
|
ConfirmEnableTwoFaMsg: "Jesteś pewien że chcesz włączyć 2FA?",
|
||||||
"Add New Monitor": "Dodaj nowy monitor",
|
ConfirmDisableTwoFaMsg: "Jesteś pewien że chcesz wyłączyć 2FA?",
|
||||||
"Quick Stats": "Szybkie statystyki",
|
NewUpdate: "Nowa aktualizacja",
|
||||||
Up: "Online",
|
CheckUpdateOnGitHub: "Sprawdź aktualizację na GitHub.",
|
||||||
Down: "Offline",
|
AddNewMonitor: "Dodaj nowy monitor",
|
||||||
Pending: "Oczekujący",
|
QuickStats: "Szybkie statystyki",
|
||||||
Unknown: "Nieznane",
|
NoImportantEvents: "Brak ważnych wydarzeń",
|
||||||
Pause: "Pauza",
|
CertExp: "Wygaśnięcie certyfikatu",
|
||||||
Name: "Nazwa",
|
Days: "dni",
|
||||||
Status: "Status",
|
Day: "dzień",
|
||||||
DateTime: "Data i godzina",
|
Hour: "godzina",
|
||||||
Message: "Wiadomość",
|
MonitorType: "Typ monitora",
|
||||||
"No important events": "Brak ważnych wydarzeń",
|
FriendlyName: "Przyjazna nazwa",
|
||||||
Resume: "Wznów",
|
Url: "URL",
|
||||||
Edit: "Edytuj",
|
HeartbeatInterval: "Interwał bicia serca",
|
||||||
Delete: "Usuń",
|
HeartbeatRetryInterval: "Częstotliwość ponawiania bicia serca",
|
||||||
Current: "aktualny",
|
UpsideDownMode: "Tryb do góry nogami",
|
||||||
Uptime: "Czas pracy",
|
MaxRedirects: "Maks. przekierowania",
|
||||||
"Cert Exp.": "Wygaśnięcie certyfikatu",
|
AcceptedStatusCodes: "Akceptowane kody statusu",
|
||||||
days: "dni",
|
NotAvailablePleaseSetup: "Niedostępne, proszę skonfigurować.",
|
||||||
day: "dzień",
|
SetupNotification: "Konfiguracja powiadomień",
|
||||||
DaysInMonth: "30-dni",
|
ThemeHeartbeatBar: "Motyw - pasek bicia serca",
|
||||||
hour: "godzina",
|
SearchEngineVisibility: "Widoczność w wyszukiwarce",
|
||||||
HoursInDay: "24 godziny",
|
AllowIndexing: "Pozwól na indeksowanie",
|
||||||
Response: "Odpowiedź",
|
DiscourageSearchEnginesFromIndexingSite: "Zniechęcaj wyszukiwarki do indeksowania strony",
|
||||||
Ping: "Ping",
|
ChangePassword: "Zmień hasło",
|
||||||
"Monitor Type": "Typ monitora",
|
CurrentPassword: "Aktualne hasło",
|
||||||
Keyword: "Słowo kluczowe",
|
NewPassword: "Nowe hasło",
|
||||||
"Friendly Name": "Przyjazna nazwa",
|
RepeatNewPassword: "Powtórz nowe hasło",
|
||||||
URL: "URL",
|
UpdatePassword: "Zaktualizuj hasło",
|
||||||
Hostname: "Nazwa hosta",
|
DisableAuth: "Wyłącz autoryzację",
|
||||||
Port: "Port",
|
EnableAuth: "Włącz autoryzację ",
|
||||||
"Heartbeat Interval": "Interwał bicia serca",
|
IUnderstandPleaseDisable: "Rozumiem, proszę wyłączyć",
|
||||||
Retries: "Prób",
|
RememberMe: "Zapamiętaj mnie",
|
||||||
Advanced: "Zaawansowane",
|
NoMonitorsPlease: "Brak monitorów, proszę",
|
||||||
"Upside Down Mode": "Tryb do góry nogami",
|
AddOne: "dodaj jeden",
|
||||||
"Max. Redirects": "Maks. przekierowania",
|
NotificationType: "Typ powiadomienia",
|
||||||
"Accepted Status Codes": "Akceptowane kody statusu",
|
CertificateInfo: "Informacje o certyfikacie",
|
||||||
Save: "Zapisz",
|
ResolverServer: "Server resolver",
|
||||||
Notifications: "Powiadomienia",
|
ResourceRecordType: "Typ rekordu zasobów",
|
||||||
"Not available, please setup.": "Niedostępne, proszę skonfigurować.",
|
LastResult: "Ostatni wynik",
|
||||||
"Setup Notification": "Konfiguracja powiadomień",
|
CreateYourAdminAccount: "Utwórz swoje konto administratora",
|
||||||
Light: "Jasny",
|
RepeatPassword: "Powtórz hasło",
|
||||||
Dark: "Ciemny",
|
ImportBackup: "Importuj kopię zapasową",
|
||||||
Auto: "Automatyczny",
|
ExportBackup: "Eksportuj kopię zapasową",
|
||||||
"Theme - Heartbeat Bar": "Motyw - pasek bicia serca",
|
RespTime: "Czas odp. (ms)",
|
||||||
Normal: "Normalne",
|
NotAvailableShort: "N/A",
|
||||||
Bottom: "Na dole",
|
DefaultEnabled: "Domyślnie włączone",
|
||||||
None: "Brak",
|
ApplyOnAllExistingMonitors: "Zastosuj do wszystki obecnych monitorów",
|
||||||
Timezone: "Strefa czasowa",
|
ClearData: "Usuń dane",
|
||||||
"Search Engine Visibility": "Widoczność w wyszukiwarce",
|
AutoGet: "Pobierz automatycznie",
|
||||||
"Allow indexing": "Pozwól na indeksowanie",
|
BackupDescription: "Możesz wykonać kopię zapasową wszystkich monitorów i wszystkich powiadomień do pliku JSON.",
|
||||||
"Discourage search engines from indexing site": "Zniechęcaj wyszukiwarki do indeksowania strony",
|
BackupDescription2: "PS: Historia i dane zdarzeń nie są uwzględniane.",
|
||||||
"Change Password": "Zmień hasło",
|
BackupDescription3: "Poufne dane, takie jak tokeny powiadomień, są zawarte w pliku eksportu, prosimy o ostrożne przechowywanie.",
|
||||||
"Current Password": "Aktualne hasło",
|
AlertNoFile: "Proszę wybrać plik do importu.",
|
||||||
"New Password": "Nowe hasło",
|
AlertWrongFileType: "Proszę wybrać plik JSON.",
|
||||||
"Repeat New Password": "Powtórz nowe hasło",
|
ClearAllStatistics: "Wyczyść wszystkie statystyki",
|
||||||
"Update Password": "Zaktualizuj hasło",
|
SkipExisting: "Pomiń istniejące",
|
||||||
"Disable Auth": "Wyłącz autoryzację",
|
KeepBoth: "Zachowaj oba",
|
||||||
"Enable Auth": "Włącz autoryzację ",
|
VerifyToken: "Weryfikuj token",
|
||||||
Logout: "Wyloguj się",
|
Setup2Fa: "Konfiguracja 2FA",
|
||||||
Leave: "Zostaw",
|
Enable2Fa: "Włącz 2FA",
|
||||||
"I understand, please disable": "Rozumiem, proszę wyłączyć",
|
Disable2Fa: "Wyłącz 2FA",
|
||||||
Confirm: "Potwierdź",
|
TwoFaSettings: "Ustawienia 2FA",
|
||||||
Yes: "Tak",
|
TwoFactorAuthentication: "Uwierzytelnienie dwuskładnikowe",
|
||||||
No: "Nie",
|
ShowUri: "Pokaż URI",
|
||||||
Username: "Nazwa użytkownika",
|
AddNewBelowOrSelect: "Dodaj nowy poniżej lub wybierz...",
|
||||||
Password: "Hasło",
|
TagWithThisNameAlreadyExist: "Tag o tej nazwie już istnieje.",
|
||||||
"Remember me": "Zapamiętaj mnie",
|
TagWithThisValueAlreadyExist: "Tag o tej wartości już istnieje.",
|
||||||
Login: "Zaloguj się",
|
Color: "kolor",
|
||||||
"No Monitors, please": "Brak monitorów, proszę",
|
ValueOptional: "wartość (opcjonalnie)",
|
||||||
"add one": "dodaj jeden",
|
Search: "Szukaj...",
|
||||||
"Notification Type": "Typ powiadomienia",
|
AvgPing: "Średni ping",
|
||||||
Email: "Email",
|
AvgResponse: "Średnia odpowiedź",
|
||||||
Test: "Test",
|
EntryPage: "Wejdź na stronę",
|
||||||
"Certificate Info": "Informacje o certyfikacie",
|
StatusPageNothing: "Nic tu nie ma, dodaj monitor lub grupę.",
|
||||||
"Resolver Server": "Server resolver",
|
NoServices: "Brak usług",
|
||||||
"Resource Record Type": "Typ rekordu zasobów",
|
AllSystemsOperational: "Wszystkie systemy działają",
|
||||||
"Last Result": "Ostatni wynik",
|
PartiallyDegradedService: "Częściowy błąd usługi",
|
||||||
"Create your admin account": "Utwórz swoje konto administratora",
|
DegradedService: "Błąd usługi",
|
||||||
"Repeat Password": "Powtórz hasło",
|
AddGroup: "Dodaj grupę",
|
||||||
respTime: "Czas odp. (ms)",
|
AddAMonitor: "Dodaj monitoe",
|
||||||
notAvailableShort: "N/A",
|
EditStatusPage: "Edytuj stronę statusu",
|
||||||
Create: "Stwórz",
|
GoToDashboard: "Idź do panelu",
|
||||||
clearEventsMsg: "Jesteś pewien, że chcesz usunąć wszystkie monitory dla tej strony?",
|
Telegram: "Telegram",
|
||||||
clearHeartbeatsMsg: "Jesteś pewien, że chcesz usunąć wszystkie bicia serca dla tego monitora?",
|
Webhook: "Webhook",
|
||||||
confirmClearStatisticsMsg: "Jesteś pewien, że chcesz usunąć WSZYSTKIE statystyki?",
|
Smtp: "Email (SMTP)",
|
||||||
"Clear Data": "Usuń dane",
|
Discord: "Discord",
|
||||||
Events: "Wydarzenia",
|
Teams: "Microsoft Teams",
|
||||||
Heartbeats: "Bicia serca",
|
Signal: "Signal",
|
||||||
"Auto Get": "Pobierz automatycznie",
|
Gotify: "Gotify",
|
||||||
enableDefaultNotificationDescription: "Dla każdego nowego monitora to powiadomienie będzie domyślnie włączone. Nadal możesz wyłączyć powiadomienia osobno dla każdego monitora.",
|
Slack: "Slack",
|
||||||
"Default enabled": "Domyślnie włączone",
|
RocketChat: "Rocket.chat",
|
||||||
"Also apply to existing monitors": "Również zastosuj do obecnych monitorów",
|
Pushover: "Pushover",
|
||||||
Export: "Eksportuj",
|
Pushy: "Pushy",
|
||||||
Import: "Importuj",
|
Octopush: "Octopush",
|
||||||
backupDescription: "Możesz wykonać kopię zapasową wszystkich monitorów i wszystkich powiadomień do pliku JSON.",
|
Lunasea: "LunaSea",
|
||||||
backupDescription2: "PS: Historia i dane zdarzeń nie są uwzględniane.",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription3: "Poufne dane, takie jak tokeny powiadomień, są zawarte w pliku eksportu, prosimy o ostrożne przechowywanie.",
|
Pushbullet: "Pushbullet",
|
||||||
alertNoFile: "Proszę wybrać plik do importu.",
|
Line: "Line Messenger",
|
||||||
alertWrongFileType: "Proszę wybrać plik JSON.",
|
Mattermost: "Mattermost"
|
||||||
twoFAVerifyLabel: "Proszę podaj swój token 2FA, aby sprawdzić czy 2FA działa",
|
|
||||||
tokenValidSettingsMsg: "Token jest poprawny! Możesz teraz zapisać ustawienia 2FA.",
|
|
||||||
confirmEnableTwoFAMsg: "Jesteś pewien że chcesz włączyć 2FA?",
|
|
||||||
confirmDisableTwoFAMsg: "Jesteś pewien że chcesz wyłączyć 2FA?",
|
|
||||||
"Apply on all existing monitors": "Zastosuj do wszystki obecnych monitorów",
|
|
||||||
"Verify Token": "Weryfikuj token",
|
|
||||||
"Setup 2FA": "Konfiguracja 2FA",
|
|
||||||
"Enable 2FA": "Włącz 2FA",
|
|
||||||
"Disable 2FA": "Wyłącz 2FA",
|
|
||||||
"2FA Settings": "Ustawienia 2FA",
|
|
||||||
"Two Factor Authentication": "Uwierzytelnienie dwuskładnikowe",
|
|
||||||
Active: "Włączone",
|
|
||||||
Inactive: "Wyłączone",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Pokaż URI",
|
|
||||||
"Clear all statistics": "Wyczyść wszystkie statystyki",
|
|
||||||
retryCheckEverySecond: "Ponawiaj co {0} sekund.",
|
|
||||||
importHandleDescription: "Wybierz 'Pomiń istniejące', jeśli chcesz pominąć każdy monitor lub powiadomienie o tej samej nazwie. 'Nadpisz' spowoduje usunięcie każdego istniejącego monitora i powiadomienia.",
|
|
||||||
confirmImportMsg: "Czy na pewno chcesz zaimportować kopię zapasową? Upewnij się, że wybrałeś właściwą opcję importu.",
|
|
||||||
"Heartbeat Retry Interval": "Częstotliwość ponawiania bicia serca",
|
|
||||||
"Import Backup": "Importuj kopię zapasową",
|
|
||||||
"Export Backup": "Eksportuj kopię zapasową",
|
|
||||||
"Skip existing": "Pomiń istniejące",
|
|
||||||
Overwrite: "Nadpisz",
|
|
||||||
Options: "Opcje",
|
|
||||||
"Keep both": "Zachowaj oba",
|
|
||||||
Tags: "Tagi",
|
|
||||||
"Add New below or Select...": "Dodaj nowy poniżej lub wybierz...",
|
|
||||||
"Tag with this name already exist.": "Tag o tej nazwie już istnieje.",
|
|
||||||
"Tag with this value already exist.": "Tag o tej wartości już istnieje.",
|
|
||||||
color: "kolor",
|
|
||||||
"value (optional)": "wartość (opcjonalnie)",
|
|
||||||
Gray: "Szary",
|
|
||||||
Red: "Czerwony",
|
|
||||||
Orange: "Pomarańczowy",
|
|
||||||
Green: "Zielony",
|
|
||||||
Blue: "Niebieski",
|
|
||||||
Indigo: "Indygo",
|
|
||||||
Purple: "Fioletowy",
|
|
||||||
Pink: "Różowy",
|
|
||||||
"Search...": "Szukaj...",
|
|
||||||
"Avg. Ping": "Średni ping",
|
|
||||||
"Avg. Response": "Średnia odpowiedź",
|
|
||||||
"Entry Page": "Wejdź na stronę",
|
|
||||||
"statusPageNothing": "Nic tu nie ma, dodaj monitor lub grupę.",
|
|
||||||
"No Services": "Brak usług",
|
|
||||||
"All Systems Operational": "Wszystkie systemy działają",
|
|
||||||
"Partially Degraded Service": "Częściowy błąd usługi",
|
|
||||||
"Degraded Service": "Błąd usługi",
|
|
||||||
"Add Group": "Dodaj grupę",
|
|
||||||
"Add a monitor": "Dodaj monitoe",
|
|
||||||
"Edit Status Page": "Edytuj stronę statusu",
|
|
||||||
"Go to Dashboard": "Idź do panelu",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Português (Brasileiro)",
|
Status Page: "Página de Status",
|
||||||
checkEverySecond: "Verificar cada {0} segundos.",
|
LanguageName: "Português (Brasileiro)",
|
||||||
retryCheckEverySecond: "Tentar novamente a cada {0} segundos.",
|
CheckEverySecond: "Verificar cada {0} segundos.",
|
||||||
retriesDescription: "Máximo de tentativas antes que o serviço seja marcado como inativo e uma notificação seja enviada",
|
RetryCheckEverySecond: "Tentar novamente a cada {0} segundos.",
|
||||||
ignoreTLSError: "Ignorar erros TLS/SSL para sites HTTPS",
|
RetriesDescription: "Máximo de tentativas antes que o serviço seja marcado como inativo e uma notificação seja enviada",
|
||||||
upsideDownModeDescription: "Inverta o status de cabeça para baixo. Se o serviço estiver acessível, ele está OFFLINE.",
|
IgnoreTlsError: "Ignorar erros TLS/SSL para sites HTTPS",
|
||||||
maxRedirectDescription: "Número máximo de redirecionamentos a seguir. Defina como 0 para desativar redirecionamentos.",
|
UpsideDownModeDescription: "Inverta o status de cabeça para baixo. Se o serviço estiver acessível, ele está OFFLINE.",
|
||||||
acceptedStatusCodesDescription: "Selecione os códigos de status que são considerados uma resposta bem-sucedida.",
|
MaxRedirectDescription: "Número máximo de redirecionamentos a seguir. Defina como 0 para desativar redirecionamentos.",
|
||||||
passwordNotMatchMsg: "A senha repetida não corresponde.",
|
AcceptedStatusCodesDescription: "Selecione os códigos de status que são considerados uma resposta bem-sucedida.",
|
||||||
notificationDescription: "Atribua uma notificação ao (s) monitor (es) para que funcione.",
|
PasswordNotMatchMsg: "A senha repetida não corresponde.",
|
||||||
keywordDescription: "Pesquise a palavra-chave em html simples ou resposta JSON e diferencia maiúsculas de minúsculas",
|
NotificationDescription: "Atribua uma notificação ao (s) monitor (es) para que funcione.",
|
||||||
pauseDashboardHome: "Pausar",
|
KeywordDescription: "Pesquise a palavra-chave em html simples ou resposta JSON e diferencia maiúsculas de minúsculas",
|
||||||
deleteMonitorMsg: "Tem certeza de que deseja excluir este monitor?",
|
PauseDashboardHome: "Pausar",
|
||||||
deleteNotificationMsg: "Tem certeza de que deseja excluir esta notificação para todos os monitores?",
|
DeleteMonitorMsg: "Tem certeza de que deseja excluir este monitor?",
|
||||||
resoverserverDescription: "Cloudflare é o servidor padrão, você pode alterar o servidor resolvedor a qualquer momento.",
|
DeleteNotificationMsg: "Tem certeza de que deseja excluir esta notificação para todos os monitores?",
|
||||||
rrtypeDescription: "Selecione o RR-Type que você deseja monitorar",
|
ResoverserverDescription: "Cloudflare é o servidor padrão, você pode alterar o servidor resolvedor a qualquer momento.",
|
||||||
pauseMonitorMsg: "Tem certeza que deseja fazer uma pausa?",
|
RrtypeDescription: "Selecione o RR-Type que você deseja monitorar",
|
||||||
enableDefaultNotificationDescription: "Para cada novo monitor, esta notificação será habilitada por padrão. Você ainda pode desativar a notificação separadamente para cada monitor.",
|
PauseMonitorMsg: "Tem certeza que deseja fazer uma pausa?",
|
||||||
clearEventsMsg: "Tem certeza de que deseja excluir todos os eventos deste monitor?",
|
EnableDefaultNotificationDescription: "Para cada novo monitor, esta notificação será habilitada por padrão. Você ainda pode desativar a notificação separadamente para cada monitor.",
|
||||||
clearHeartbeatsMsg: "Tem certeza de que deseja excluir todos os heartbeats deste monitor?",
|
ClearEventsMsg: "Tem certeza de que deseja excluir todos os eventos deste monitor?",
|
||||||
confirmClearStatisticsMsg: "Tem certeza que deseja excluir TODAS as estatísticas?",
|
ClearHeartbeatsMsg: "Tem certeza de que deseja excluir todos os heartbeats deste monitor?",
|
||||||
importHandleDescription: "Escolha 'Ignorar existente' se quiser ignorar todos os monitores ou notificações com o mesmo nome. 'Substituir' excluirá todos os monitores e notificações existentes.",
|
ConfirmClearStatisticsMsg: "Tem certeza que deseja excluir TODAS as estatísticas?",
|
||||||
confirmImportMsg: "Tem certeza que deseja importar o backup? Certifique-se de que selecionou a opção de importação correta.",
|
ImportHandleDescription: "Escolha 'Ignorar existente' se quiser ignorar todos os monitores ou notificações com o mesmo nome. 'Substituir' excluirá todos os monitores e notificações existentes.",
|
||||||
twoFAVerifyLabel: "Digite seu token para verificar se 2FA está funcionando",
|
ConfirmImportMsg: "Tem certeza que deseja importar o backup? Certifique-se de que selecionou a opção de importação correta.",
|
||||||
tokenValidSettingsMsg: "O token é válido! Agora você pode salvar as configurações 2FA.",
|
TwoFaVerifyLabel: "Digite seu token para verificar se 2FA está funcionando",
|
||||||
confirmEnableTwoFAMsg: "Tem certeza de que deseja habilitar 2FA?",
|
TokenValidSettingsMsg: "O token é válido! Agora você pode salvar as configurações 2FA.",
|
||||||
confirmDisableTwoFAMsg: "Tem certeza de que deseja desativar 2FA?",
|
ConfirmEnableTwoFaMsg: "Tem certeza de que deseja habilitar 2FA?",
|
||||||
Settings: "Configurações",
|
ConfirmDisableTwoFaMsg: "Tem certeza de que deseja desativar 2FA?",
|
||||||
Dashboard: "Dashboard",
|
NewUpdate: "Nova Atualização",
|
||||||
"New Update": "Nova Atualização",
|
CheckUpdateOnGitHub: "Verificar atualização no Github",
|
||||||
Language: "Linguagem",
|
AddNewMonitor: "Adicionar novo monitor",
|
||||||
Appearance: "Aparência",
|
QuickStats: "Estatísticas rápidas",
|
||||||
Theme: "Tema",
|
NoImportantEvents: "Nenhum evento importante",
|
||||||
General: "Geral",
|
CertExp: "Cert Exp.",
|
||||||
Version: "Versão",
|
Days: "dias",
|
||||||
"Check Update On GitHub": "Verificar atualização no Github",
|
Day: "dia",
|
||||||
List: "Lista",
|
Hour: "hora",
|
||||||
Add: "Adicionar",
|
MonitorType: "Tipo de Monitor",
|
||||||
"Add New Monitor": "Adicionar novo monitor",
|
FriendlyName: "Nome Amigável",
|
||||||
"Quick Stats": "Estatísticas rápidas",
|
Url: "URL",
|
||||||
Up: "On",
|
HeartbeatInterval: "Intervalo de Heartbeat",
|
||||||
Down: "Off",
|
HeartbeatRetryInterval: "Intervalo de repetição de Heartbeat",
|
||||||
Pending: "Pendente",
|
UpsideDownMode: "Modo de cabeça para baixo",
|
||||||
Unknown: "Desconhecido",
|
MaxRedirects: "Redirecionamento Máx.",
|
||||||
Pause: "Pausar",
|
AcceptedStatusCodes: "Status Code Aceitáveis",
|
||||||
Name: "Nome",
|
NotAvailablePleaseSetup: "Não disponível, por favor configure.",
|
||||||
Status: "Status",
|
SetupNotification: "Configurar Notificação",
|
||||||
DateTime: "Data hora",
|
ThemeHeartbeatBar: "Tema - Barra de Heartbeat",
|
||||||
Message: "Mensagem",
|
SearchEngineVisibility: "Visibilidade do mecanismo de pesquisa",
|
||||||
"No important events": "Nenhum evento importante",
|
AllowIndexing: "Permitir Indexação",
|
||||||
Resume: "Resumo",
|
DiscourageSearchEnginesFromIndexingSite: "Desencoraje os motores de busca de indexar o site",
|
||||||
Edit: "Editar",
|
ChangePassword: "Mudar senha",
|
||||||
Delete: "Deletar",
|
CurrentPassword: "Senha atual",
|
||||||
Current: "Atual",
|
NewPassword: "Nova Senha",
|
||||||
Uptime: "Tempo de atividade",
|
RepeatNewPassword: "Repetir Nova Senha",
|
||||||
"Cert Exp.": "Cert Exp.",
|
UpdatePassword: "Atualizar Senha",
|
||||||
days: "dias",
|
DisableAuth: "Desativar Autenticação",
|
||||||
day: "dia",
|
EnableAuth: "Ativar Autenticação",
|
||||||
DaysInMonth: "30-dia",
|
IUnderstandPleaseDisable: "Eu entendo, por favor desative.",
|
||||||
hour: "hora",
|
RememberMe: "Lembre-me",
|
||||||
HoursInDay: "24-hora",
|
NoMonitorsPlease: "Nenhum monitor, por favor",
|
||||||
Response: "Resposta",
|
AddOne: "adicionar um",
|
||||||
Ping: "Ping",
|
NotificationType: "Tipo de Notificação",
|
||||||
"Monitor Type": "Tipo de Monitor",
|
CertificateInfo: "Info. do Certificado ",
|
||||||
Keyword: "Palavra-Chave",
|
ResolverServer: "Resolver Servidor",
|
||||||
"Friendly Name": "Nome Amigável",
|
ResourceRecordType: "Tipo de registro de aplicação",
|
||||||
URL: "URL",
|
LastResult: "Último resultado",
|
||||||
Hostname: "Hostname",
|
CreateYourAdminAccount: "Crie sua conta de admin",
|
||||||
Port: "Porta",
|
RepeatPassword: "Repita a senha",
|
||||||
"Heartbeat Interval": "Intervalo de Heartbeat",
|
ImportBackup: "Importar Backup",
|
||||||
Retries: "Novas tentativas",
|
ExportBackup: "Exportar Backup",
|
||||||
"Heartbeat Retry Interval": "Intervalo de repetição de Heartbeat",
|
RespTime: "Tempo de Resp. (ms)",
|
||||||
Advanced: "Avançado",
|
NotAvailableShort: "N/A",
|
||||||
"Upside Down Mode": "Modo de cabeça para baixo",
|
DefaultEnabled: "Padrão habilitado",
|
||||||
"Max. Redirects": "Redirecionamento Máx.",
|
ApplyOnAllExistingMonitors: "Aplicar em todos os monitores existentes",
|
||||||
"Accepted Status Codes": "Status Code Aceitáveis",
|
ClearData: "Limpar Dados",
|
||||||
Save: "Salvar",
|
AutoGet: "Obter Automático",
|
||||||
Notifications: "Notificações",
|
BackupDescription: "Você pode fazer backup de todos os monitores e todas as notificações em um arquivo JSON.",
|
||||||
"Not available, please setup.": "Não disponível, por favor configure.",
|
BackupDescription2: "OBS: Os dados do histórico e do evento não estão incluídos.",
|
||||||
"Setup Notification": "Configurar Notificação",
|
BackupDescription3: "Dados confidenciais, como tokens de notificação, estão incluídos no arquivo de exportação, mantenha-o com cuidado.",
|
||||||
Light: "Claro",
|
AlertNoFile: "Selecione um arquivo para importar.",
|
||||||
Dark: "Escuro",
|
AlertWrongFileType: "Selecione um arquivo JSON.",
|
||||||
Auto: "Auto",
|
ClearAllStatistics: "Limpar todas as estatísticas",
|
||||||
"Theme - Heartbeat Bar": "Tema - Barra de Heartbeat",
|
SkipExisting: "Pular existente",
|
||||||
Normal: "Normal",
|
KeepBoth: "Manter os dois",
|
||||||
Bottom: "Inferior",
|
VerifyToken: "Verificar Token",
|
||||||
None: "Nenhum",
|
Setup2Fa: "Configurar 2FA",
|
||||||
Timezone: "Fuso horário",
|
Enable2Fa: "Ativar 2FA",
|
||||||
"Search Engine Visibility": "Visibilidade do mecanismo de pesquisa",
|
Disable2Fa: "Desativar 2FA",
|
||||||
"Allow indexing": "Permitir Indexação",
|
TwoFaSettings: "Configurações do 2FA ",
|
||||||
"Discourage search engines from indexing site": "Desencoraje os motores de busca de indexar o site",
|
TwoFactorAuthentication: "Autenticação e Dois Fatores",
|
||||||
"Change Password": "Mudar senha",
|
ShowUri: "Mostrar URI",
|
||||||
"Current Password": "Senha atual",
|
AddNewBelowOrSelect: "Adicionar Novo abaixo ou Selecionar ...",
|
||||||
"New Password": "Nova Senha",
|
TagWithThisNameAlreadyExist: "Já existe uma etiqueta com este nome.",
|
||||||
"Repeat New Password": "Repetir Nova Senha",
|
TagWithThisValueAlreadyExist: "Já existe uma etiqueta com este valor.",
|
||||||
"Update Password": "Atualizar Senha",
|
Color: "cor",
|
||||||
"Disable Auth": "Desativar Autenticação",
|
ValueOptional: "valor (opcional)",
|
||||||
"Enable Auth": "Ativar Autenticação",
|
Search: "Buscar...",
|
||||||
Logout: "Deslogar",
|
AvgPing: "Ping Médio.",
|
||||||
Leave: "Sair",
|
AvgResponse: "Resposta Média. ",
|
||||||
"I understand, please disable": "Eu entendo, por favor desative.",
|
EntryPage: "Página de entrada",
|
||||||
Confirm: "Confirmar",
|
StatusPageNothing: "Nada aqui, por favor, adicione um grupo ou monitor.",
|
||||||
Yes: "Sim",
|
NoServices: "Nenhum Serviço",
|
||||||
No: "Não",
|
AllSystemsOperational: "Todos os Serviços Operacionais",
|
||||||
Username: "Usuário",
|
PartiallyDegradedService: "Serviço parcialmente degradado",
|
||||||
Password: "Senha",
|
DegradedService: "Serviço Degradado",
|
||||||
"Remember me": "Lembre-me",
|
AddGroup: "Adicionar Grupo",
|
||||||
Login: "Autenticar",
|
AddAMonitor: "Adicionar um monitor",
|
||||||
"No Monitors, please": "Nenhum monitor, por favor",
|
EditStatusPage: "Editar Página de Status",
|
||||||
"add one": "adicionar um",
|
GoToDashboard: "Ir para a dashboard",
|
||||||
"Notification Type": "Tipo de Notificação",
|
Telegram: "Telegram",
|
||||||
Email: "Email",
|
Webhook: "Webhook",
|
||||||
Test: "Testar",
|
Smtp: "Email (SMTP)",
|
||||||
"Certificate Info": "Info. do Certificado ",
|
Discord: "Discord",
|
||||||
"Resolver Server": "Resolver Servidor",
|
Teams: "Microsoft Teams",
|
||||||
"Resource Record Type": "Tipo de registro de aplicação",
|
Signal: "Signal",
|
||||||
"Last Result": "Último resultado",
|
Gotify: "Gotify",
|
||||||
"Create your admin account": "Crie sua conta de admin",
|
Slack: "Slack",
|
||||||
"Repeat Password": "Repita a senha",
|
RocketChat: "Rocket.chat",
|
||||||
"Import Backup": "Importar Backup",
|
Pushover: "Pushover",
|
||||||
"Export Backup": "Exportar Backup",
|
Pushy: "Pushy",
|
||||||
Export: "Exportar",
|
Octopush: "Octopush",
|
||||||
Import: "Importar",
|
Lunasea: "LunaSea",
|
||||||
respTime: "Tempo de Resp. (ms)",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
notAvailableShort: "N/A",
|
Pushbullet: "Pushbullet",
|
||||||
"Default enabled": "Padrão habilitado",
|
Line: "Line Messenger",
|
||||||
"Apply on all existing monitors": "Aplicar em todos os monitores existentes",
|
Mattermost: "Mattermost"
|
||||||
Create: "Criar",
|
|
||||||
"Clear Data": "Limpar Dados",
|
|
||||||
Events: "Eventos",
|
|
||||||
Heartbeats: "Heartbeats",
|
|
||||||
"Auto Get": "Obter Automático",
|
|
||||||
backupDescription: "Você pode fazer backup de todos os monitores e todas as notificações em um arquivo JSON.",
|
|
||||||
backupDescription2: "OBS: Os dados do histórico e do evento não estão incluídos.",
|
|
||||||
backupDescription3: "Dados confidenciais, como tokens de notificação, estão incluídos no arquivo de exportação, mantenha-o com cuidado.",
|
|
||||||
alertNoFile: "Selecione um arquivo para importar.",
|
|
||||||
alertWrongFileType: "Selecione um arquivo JSON.",
|
|
||||||
"Clear all statistics": "Limpar todas as estatísticas",
|
|
||||||
"Skip existing": "Pular existente",
|
|
||||||
Overwrite: "Sobrescrever",
|
|
||||||
Options: "Opções",
|
|
||||||
"Keep both": "Manter os dois",
|
|
||||||
"Verify Token": "Verificar Token",
|
|
||||||
"Setup 2FA": "Configurar 2FA",
|
|
||||||
"Enable 2FA": "Ativar 2FA",
|
|
||||||
"Disable 2FA": "Desativar 2FA",
|
|
||||||
"2FA Settings": "Configurações do 2FA ",
|
|
||||||
"Two Factor Authentication": "Autenticação e Dois Fatores",
|
|
||||||
Active: "Ativo",
|
|
||||||
Inactive: "Inativo",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Mostrar URI",
|
|
||||||
Tags: "Tag",
|
|
||||||
"Add New below or Select...": "Adicionar Novo abaixo ou Selecionar ...",
|
|
||||||
"Tag with this name already exist.": "Já existe uma etiqueta com este nome.",
|
|
||||||
"Tag with this value already exist.": "Já existe uma etiqueta com este valor.",
|
|
||||||
color: "cor",
|
|
||||||
"value (optional)": "valor (opcional)",
|
|
||||||
Gray: "Cinza",
|
|
||||||
Red: "Vermelho",
|
|
||||||
Orange: "Laranja",
|
|
||||||
Green: "Verde",
|
|
||||||
Blue: "Azul",
|
|
||||||
Indigo: "Índigo",
|
|
||||||
Purple: "Roxo",
|
|
||||||
Pink: "Rosa",
|
|
||||||
"Search...": "Buscar...",
|
|
||||||
"Avg. Ping": "Ping Médio.",
|
|
||||||
"Avg. Response": "Resposta Média. ",
|
|
||||||
"Status Page": "Página de Status",
|
|
||||||
"Entry Page": "Página de entrada",
|
|
||||||
statusPageNothing: "Nada aqui, por favor, adicione um grupo ou monitor.",
|
|
||||||
"No Services": "Nenhum Serviço",
|
|
||||||
"All Systems Operational": "Todos os Serviços Operacionais",
|
|
||||||
"Partially Degraded Service": "Serviço parcialmente degradado",
|
|
||||||
"Degraded Service": "Serviço Degradado",
|
|
||||||
"Add Group": "Adicionar Grupo",
|
|
||||||
"Add a monitor": "Adicionar um monitor",
|
|
||||||
"Edit Status Page": "Editar Página de Status",
|
|
||||||
"Go to Dashboard": "Ir para a dashboard",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,187 +1,134 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Русский",
|
Also apply to existing monitors: "Применить к существующим мониторам",
|
||||||
checkEverySecond: "проверять каждые {0} секунд",
|
Status Page: "Статус сервисов",
|
||||||
retriesDescription: "Максимальное количество попыток перед пометкой сервиса как недоступного и отправкой уведомления",
|
Discard: "Отмена",
|
||||||
ignoreTLSError: "Игнорировать ошибку TLS/SSL для HTTPS сайтов",
|
Create Incident: "Создать инцидент",
|
||||||
upsideDownModeDescription: "Реверс статуса сервиса. Если сервис доступен, то он помечается как НЕДОСТУПНЫЙ.",
|
Switch to Dark Theme: "Тёмная тема",
|
||||||
maxRedirectDescription: "Максимальное количество перенаправлений. Поставьте 0, чтобы отключить перенаправления.",
|
Switch to Light Theme: "Светлая тема",
|
||||||
acceptedStatusCodesDescription: "Выберите коды статусов для определения доступности сервиса.",
|
LanguageName: "Русский",
|
||||||
passwordNotMatchMsg: "Повтор пароля не совпадает.",
|
CheckEverySecond: "проверять каждые {0} секунд",
|
||||||
notificationDescription: "Привяжите уведомления к мониторам.",
|
RetryCheckEverySecond: "повторять каждые {0} секунд",
|
||||||
keywordDescription: "Поиск слова в чистом HTML или в JSON-ответе (чувствительно к регистру)",
|
RetriesDescription: "Максимальное количество попыток перед пометкой сервиса как недоступного и отправкой уведомления",
|
||||||
pauseDashboardHome: "Пауза",
|
IgnoreTlsError: "Игнорировать ошибку TLS/SSL для HTTPS сайтов",
|
||||||
deleteMonitorMsg: "Вы действительно хотите удалить данный монитор?",
|
UpsideDownModeDescription: "Реверс статуса сервиса. Если сервис доступен, то он помечается как НЕДОСТУПНЫЙ.",
|
||||||
deleteNotificationMsg: "Вы действительно хотите удалить это уведомление для всех мониторов?",
|
MaxRedirectDescription: "Максимальное количество перенаправлений. Поставьте 0, чтобы отключить перенаправления.",
|
||||||
resoverserverDescription: "Cloudflare является сервером по умолчанию. Вы всегда можете сменить данный сервер.",
|
AcceptedStatusCodesDescription: "Выберите коды статусов для определения доступности сервиса.",
|
||||||
rrtypeDescription: "Выберите тип ресурсной записи, который вы хотите отслеживать",
|
PasswordNotMatchMsg: "Повтор пароля не совпадает.",
|
||||||
pauseMonitorMsg: "Вы действительно хотите поставить на паузу?",
|
NotificationDescription: "Привяжите уведомления к мониторам.",
|
||||||
Settings: "Настройки",
|
KeywordDescription: "Поиск слова в чистом HTML или в JSON-ответе (чувствительно к регистру)",
|
||||||
Dashboard: "Панель мониторов",
|
PauseDashboardHome: "Пауза",
|
||||||
"New Update": "Обновление",
|
DeleteMonitorMsg: "Вы действительно хотите удалить данный монитор?",
|
||||||
Language: "Язык",
|
DeleteNotificationMsg: "Вы действительно хотите удалить это уведомление для всех мониторов?",
|
||||||
Appearance: "Внешний вид",
|
ResoverserverDescription: "Cloudflare является сервером по умолчанию. Вы всегда можете сменить данный сервер.",
|
||||||
Theme: "Тема",
|
RrtypeDescription: "Выберите тип ресурсной записи, который вы хотите отслеживать",
|
||||||
General: "Общее",
|
PauseMonitorMsg: "Вы действительно хотите поставить на паузу?",
|
||||||
Version: "Версия",
|
EnableDefaultNotificationDescription: "Для каждого нового монитора это уведомление будет включено по умолчанию. Вы всё ещё можете отключить уведомления в каждом мониторе отдельно.",
|
||||||
"Check Update On GitHub": "Проверить обновления на GitHub",
|
ClearEventsMsg: "Вы действительно хотите удалить всю статистику событий данного монитора?",
|
||||||
List: "Список",
|
ClearHeartbeatsMsg: "Вы действительно хотите удалить всю статистику опросов данного монитора?",
|
||||||
Add: "Добавить",
|
ConfirmClearStatisticsMsg: "Вы действительно хотите удалить ВСЮ статистику?",
|
||||||
"Add New Monitor": "Новый монитор",
|
ImportHandleDescription: "Выберите \"Пропустить существующие\", если вы хотите пропустить каждый монитор или уведомление с таким же именем. \"Перезаписать\" удалит каждый существующий монитор или уведомление и добавит заново. Вариант \"Не проверять\" принудительно восстанавливает все мониторы и уведомления, даже если они уже существуют.",
|
||||||
"Quick Stats": "Статистика",
|
ConfirmImportMsg: "Вы действительно хотите восстановить резервную копию? Убедитесь, что вы выбрали подходящий вариант импорта.",
|
||||||
Up: "Доступен",
|
TwoFaVerifyLabel: "Пожалуйста, введите свой токен, чтобы проверить работу 2FA",
|
||||||
Down: "Н/Д",
|
TokenValidSettingsMsg: "Токен действителен! Теперь вы можете сохранить настройки 2FA.",
|
||||||
Pending: "Ожидание",
|
ConfirmEnableTwoFaMsg: "Вы действительно хотите включить 2FA?",
|
||||||
Unknown: "Неизвестно",
|
ConfirmDisableTwoFaMsg: "Вы действительно хотите выключить 2FA?",
|
||||||
Pause: "Пауза",
|
NewUpdate: "Обновление",
|
||||||
Name: "Имя",
|
CheckUpdateOnGitHub: "Проверить обновления на GitHub",
|
||||||
Status: "Статус",
|
AddNewMonitor: "Новый монитор",
|
||||||
DateTime: "Дата и время",
|
QuickStats: "Статистика",
|
||||||
Message: "Сообщение",
|
NoImportantEvents: "Важных событий нет",
|
||||||
"No important events": "Важных событий нет",
|
CertExp: "Сертификат просрочен",
|
||||||
Resume: "Возобновить",
|
Days: "дней",
|
||||||
Edit: "Изменить",
|
Day: "день",
|
||||||
Delete: "Удалить",
|
Hour: "час",
|
||||||
Current: "Текущий",
|
MonitorType: "Тип монитора",
|
||||||
Uptime: "Аптайм",
|
FriendlyName: "Имя",
|
||||||
"Cert Exp.": "Сертификат просрочен",
|
Url: "URL",
|
||||||
days: "дней",
|
HeartbeatInterval: "Частота опроса",
|
||||||
day: "день",
|
HeartbeatRetryInterval: "Интервал повтора опроса",
|
||||||
DaysInMonth: "30-дней",
|
UpsideDownMode: "Режим реверса статуса",
|
||||||
hour: "час",
|
MaxRedirects: "Макс. количество перенаправлений",
|
||||||
HoursInDay: "24-часа",
|
AcceptedStatusCodes: "Допустимые коды статуса",
|
||||||
Response: "Ответ",
|
NotAvailablePleaseSetup: "Доступных уведомлений нет, необходима настройка.",
|
||||||
Ping: "Пинг",
|
SetupNotification: "Настроить уведомления",
|
||||||
"Monitor Type": "Тип монитора",
|
ThemeHeartbeatBar: "Тема - Полоса частоты опроса",
|
||||||
Keyword: "Слово",
|
SearchEngineVisibility: "Видимость поисковым движком",
|
||||||
"Friendly Name": "Имя",
|
AllowIndexing: "Разрешить индексирование",
|
||||||
URL: "URL",
|
DiscourageSearchEnginesFromIndexingSite: "Не позволять индексировать сайт",
|
||||||
Hostname: "Имя хоста",
|
ChangePassword: "Сменить пароль",
|
||||||
Port: "Порт",
|
CurrentPassword: "Текущий пароль",
|
||||||
"Heartbeat Interval": "Частота опроса",
|
NewPassword: "Новый пароль",
|
||||||
Retries: "Попыток",
|
RepeatNewPassword: "Повтор нового пароля",
|
||||||
Advanced: "Дополнительно",
|
UpdatePassword: "Обновить пароль",
|
||||||
"Upside Down Mode": "Режим реверса статуса",
|
DisableAuth: "Отключить авторизацию",
|
||||||
"Max. Redirects": "Макс. количество перенаправлений",
|
EnableAuth: "Включить авторизацию",
|
||||||
"Accepted Status Codes": "Допустимые коды статуса",
|
IUnderstandPleaseDisable: "Я понимаю, всё равно отключить",
|
||||||
Save: "Сохранить",
|
RememberMe: "Запомнить меня",
|
||||||
Notifications: "Уведомления",
|
NoMonitorsPlease: "Мониторов нет, пожалуйста",
|
||||||
"Not available, please setup.": "Доступных уведомлений нет, необходима настройка.",
|
AddOne: "создайте новый",
|
||||||
"Setup Notification": "Настроить уведомления",
|
NotificationType: "Тип уведомления",
|
||||||
Light: "Светлая",
|
CertificateInfo: "Информация о сертификате",
|
||||||
Dark: "Тёмная",
|
ResolverServer: "DNS сервер",
|
||||||
Auto: "Авто",
|
ResourceRecordType: "Тип ресурсной записи",
|
||||||
"Theme - Heartbeat Bar": "Тема - Полоса частоты опроса",
|
LastResult: "Последний результат",
|
||||||
Normal: "Обычный",
|
CreateYourAdminAccount: "Создайте аккаунт администратора",
|
||||||
Bottom: "Снизу",
|
RepeatPassword: "Повторите пароль",
|
||||||
None: "Отсутствует",
|
ImportBackup: "Восстановление резервной копии",
|
||||||
Timezone: "Часовой пояс",
|
ExportBackup: "Резервная копия",
|
||||||
"Search Engine Visibility": "Видимость поисковым движком",
|
RespTime: "Время ответа (мс)",
|
||||||
"Allow indexing": "Разрешить индексирование",
|
NotAvailableShort: "Н/Д",
|
||||||
"Discourage search engines from indexing site": "Не позволять индексировать сайт",
|
DefaultEnabled: "Использовать по умолчанию",
|
||||||
"Change Password": "Сменить пароль",
|
ApplyOnAllExistingMonitors: "Применить ко всем существующим мониторам",
|
||||||
"Current Password": "Текущий пароль",
|
ClearData: "Удалить статистику",
|
||||||
"New Password": "Новый пароль",
|
AutoGet: "Авто-получение",
|
||||||
"Repeat New Password": "Повтор нового пароля",
|
BackupDescription: "Вы можете сохранить резервную копию всех мониторов и уведомлений в виде JSON-файла",
|
||||||
"Update Password": "Обновить пароль",
|
BackupDescription2: "P.S. История и события сохранены не будут",
|
||||||
"Disable Auth": "Отключить авторизацию",
|
BackupDescription3: "Важные данные, такие как токены уведомлений, добавляются при экспорте, поэтому храните файлы в безопасном месте",
|
||||||
"Enable Auth": "Включить авторизацию",
|
AlertNoFile: "Выберите файл для импорта.",
|
||||||
Logout: "Выйти",
|
AlertWrongFileType: "Выберите JSON-файл.",
|
||||||
Leave: "Отмена",
|
ClearAllStatistics: "Удалить всю статистику",
|
||||||
"I understand, please disable": "Я понимаю, всё равно отключить",
|
SkipExisting: "Пропустить существующие",
|
||||||
Confirm: "Подтвердить",
|
KeepBoth: "Не проверять",
|
||||||
Yes: "Да",
|
VerifyToken: "Проверить токен",
|
||||||
No: "Нет",
|
Setup2Fa: "Настройка 2FA",
|
||||||
Username: "Логин",
|
Enable2Fa: "Включить 2FA",
|
||||||
Password: "Пароль",
|
Disable2Fa: "Выключить 2FA",
|
||||||
"Remember me": "Запомнить меня",
|
TwoFaSettings: "Настройки 2FA",
|
||||||
Login: "Вход в систему",
|
TwoFactorAuthentication: "Двухфакторная аутентификация",
|
||||||
"No Monitors, please": "Мониторов нет, пожалуйста",
|
ShowUri: "Показать URI",
|
||||||
"add one": "создайте новый",
|
AddNewBelowOrSelect: "Добавить новый или выбрать...",
|
||||||
"Notification Type": "Тип уведомления",
|
TagWithThisNameAlreadyExist: "Такой тег уже существует.",
|
||||||
Email: "Почта",
|
TagWithThisValueAlreadyExist: "Тег с таким значением уже существует.",
|
||||||
Test: "Проверка",
|
Color: "цвет",
|
||||||
"Certificate Info": "Информация о сертификате",
|
ValueOptional: "значение (опционально)",
|
||||||
"Resolver Server": "DNS сервер",
|
Search: "Поиск...",
|
||||||
"Resource Record Type": "Тип ресурсной записи",
|
AvgPing: "Средн. пинг",
|
||||||
"Last Result": "Последний результат",
|
AvgResponse: "Средн. ответ",
|
||||||
"Create your admin account": "Создайте аккаунт администратора",
|
EntryPage: "Главная страница",
|
||||||
"Repeat Password": "Повторите пароль",
|
StatusPageNothing: "Здесь пусто. Добавьте группу или монитор.",
|
||||||
respTime: "Время ответа (мс)",
|
NoServices: "Нет сервисов",
|
||||||
notAvailableShort: "Н/Д",
|
AllSystemsOperational: "Все сервисы работают",
|
||||||
Create: "Создать",
|
PartiallyDegradedService: "Сервисы частично не работают",
|
||||||
clearEventsMsg: "Вы действительно хотите удалить всю статистику событий данного монитора?",
|
DegradedService: "Все сервисы не работают",
|
||||||
clearHeartbeatsMsg: "Вы действительно хотите удалить всю статистику опросов данного монитора?",
|
AddGroup: "Добавить группу",
|
||||||
confirmClearStatisticsMsg: "Вы действительно хотите удалить ВСЮ статистику?",
|
AddAMonitor: "Добавить монитор",
|
||||||
"Clear Data": "Удалить статистику",
|
EditStatusPage: "Редактировать",
|
||||||
Events: "События",
|
GoToDashboard: "Панель мониторов",
|
||||||
Heartbeats: "Опросы",
|
Telegram: "Telegram",
|
||||||
"Auto Get": "Авто-получение",
|
Webhook: "Webhook",
|
||||||
enableDefaultNotificationDescription: "Для каждого нового монитора это уведомление будет включено по умолчанию. Вы всё ещё можете отключить уведомления в каждом мониторе отдельно.",
|
Smtp: "Email (SMTP)",
|
||||||
"Default enabled": "Использовать по умолчанию",
|
Discord: "Discord",
|
||||||
"Also apply to existing monitors": "Применить к существующим мониторам",
|
Teams: "Microsoft Teams",
|
||||||
Export: "Резервная копия",
|
Signal: "Signal",
|
||||||
Import: "Восстановление",
|
Gotify: "Gotify",
|
||||||
backupDescription: "Вы можете сохранить резервную копию всех мониторов и уведомлений в виде JSON-файла",
|
Slack: "Slack",
|
||||||
backupDescription2: "P.S. История и события сохранены не будут",
|
RocketChat: "Rocket.chat",
|
||||||
backupDescription3: "Важные данные, такие как токены уведомлений, добавляются при экспорте, поэтому храните файлы в безопасном месте",
|
Pushover: "Pushover",
|
||||||
alertNoFile: "Выберите файл для импорта.",
|
Pushy: "Pushy",
|
||||||
alertWrongFileType: "Выберите JSON-файл.",
|
Octopush: "Octopush",
|
||||||
twoFAVerifyLabel: "Пожалуйста, введите свой токен, чтобы проверить работу 2FA",
|
Lunasea: "LunaSea",
|
||||||
tokenValidSettingsMsg: "Токен действителен! Теперь вы можете сохранить настройки 2FA.",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
confirmEnableTwoFAMsg: "Вы действительно хотите включить 2FA?",
|
Pushbullet: "Pushbullet",
|
||||||
confirmDisableTwoFAMsg: "Вы действительно хотите выключить 2FA?",
|
Line: "Line Messenger",
|
||||||
"Apply on all existing monitors": "Применить ко всем существующим мониторам",
|
Mattermost: "Mattermost"
|
||||||
"Verify Token": "Проверить токен",
|
|
||||||
"Setup 2FA": "Настройка 2FA",
|
|
||||||
"Enable 2FA": "Включить 2FA",
|
|
||||||
"Disable 2FA": "Выключить 2FA",
|
|
||||||
"2FA Settings": "Настройки 2FA",
|
|
||||||
"Two Factor Authentication": "Двухфакторная аутентификация",
|
|
||||||
Active: "Активно",
|
|
||||||
Inactive: "Неактивно",
|
|
||||||
Token: "Токен",
|
|
||||||
"Show URI": "Показать URI",
|
|
||||||
"Clear all statistics": "Удалить всю статистику",
|
|
||||||
retryCheckEverySecond: "повторять каждые {0} секунд",
|
|
||||||
importHandleDescription: "Выберите \"Пропустить существующие\", если вы хотите пропустить каждый монитор или уведомление с таким же именем. \"Перезаписать\" удалит каждый существующий монитор или уведомление и добавит заново. Вариант \"Не проверять\" принудительно восстанавливает все мониторы и уведомления, даже если они уже существуют.",
|
|
||||||
confirmImportMsg: "Вы действительно хотите восстановить резервную копию? Убедитесь, что вы выбрали подходящий вариант импорта.",
|
|
||||||
"Heartbeat Retry Interval": "Интервал повтора опроса",
|
|
||||||
"Import Backup": "Восстановление резервной копии",
|
|
||||||
"Export Backup": "Резервная копия",
|
|
||||||
"Skip existing": "Пропустить существующие",
|
|
||||||
Overwrite: "Перезаписать",
|
|
||||||
Options: "Опции",
|
|
||||||
"Keep both": "Не проверять",
|
|
||||||
Tags: "Теги",
|
|
||||||
"Add New below or Select...": "Добавить новый или выбрать...",
|
|
||||||
"Tag with this name already exist.": "Такой тег уже существует.",
|
|
||||||
"Tag with this value already exist.": "Тег с таким значением уже существует.",
|
|
||||||
color: "цвет",
|
|
||||||
"value (optional)": "значение (опционально)",
|
|
||||||
Gray: "Серый",
|
|
||||||
Red: "Красный",
|
|
||||||
Orange: "Оранжевый",
|
|
||||||
Green: "Зелёный",
|
|
||||||
Blue: "Синий",
|
|
||||||
Indigo: "Индиго",
|
|
||||||
Purple: "Пурпурный",
|
|
||||||
Pink: "Розовый",
|
|
||||||
"Search...": "Поиск...",
|
|
||||||
"Avg. Ping": "Средн. пинг",
|
|
||||||
"Avg. Response": "Средн. ответ",
|
|
||||||
"Entry Page": "Главная страница",
|
|
||||||
statusPageNothing: "Здесь пусто. Добавьте группу или монитор.",
|
|
||||||
"No Services": "Нет сервисов",
|
|
||||||
"All Systems Operational": "Все сервисы работают",
|
|
||||||
"Partially Degraded Service": "Сервисы частично не работают",
|
|
||||||
"Degraded Service": "Все сервисы не работают",
|
|
||||||
"Add Group": "Добавить группу",
|
|
||||||
"Add a monitor": "Добавить монитор",
|
|
||||||
"Edit Status Page": "Редактировать",
|
|
||||||
"Go to Dashboard": "Панель мониторов",
|
|
||||||
"Status Page": "Статус сервисов",
|
|
||||||
"Discard": "Отмена",
|
|
||||||
"Create Incident": "Создать инцидент",
|
|
||||||
"Switch to Dark Theme": "Тёмная тема",
|
|
||||||
"Switch to Light Theme": "Светлая тема",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Srpski",
|
Also apply to existing monitors: "Also apply to existing monitors",
|
||||||
checkEverySecond: "Proveri svakih {0} sekundi.",
|
LanguageName: "Srpski",
|
||||||
retriesDescription: "Maksimum pokušaja pre nego što se servis obeleži kao neaktivan i pošalje se obaveštenje.",
|
CheckEverySecond: "Proveri svakih {0} sekundi.",
|
||||||
ignoreTLSError: "Ignoriši TLS/SSL greške za HTTPS veb stranice.",
|
RetryCheckEverySecond: "Retry every {0} seconds.",
|
||||||
upsideDownModeDescription: "Obrnite status. Ako je servis dostupan, onda je obeležen kao neaktivan.",
|
RetriesDescription: "Maksimum pokušaja pre nego što se servis obeleži kao neaktivan i pošalje se obaveštenje.",
|
||||||
maxRedirectDescription: "Maksimani broj preusmerenja da se prate. Postavite na 0 da bi se isključila preusmerenja.",
|
IgnoreTlsError: "Ignoriši TLS/SSL greške za HTTPS veb stranice.",
|
||||||
acceptedStatusCodesDescription: "Odaberite statusne kodove koji se smatraju uspešnim odgovorom.",
|
UpsideDownModeDescription: "Obrnite status. Ako je servis dostupan, onda je obeležen kao neaktivan.",
|
||||||
passwordNotMatchMsg: "Ponovljena lozinka se ne poklapa.",
|
MaxRedirectDescription: "Maksimani broj preusmerenja da se prate. Postavite na 0 da bi se isključila preusmerenja.",
|
||||||
notificationDescription: "Molim Vas postavite obaveštenje za masmatrače da bise aktivirali.",
|
AcceptedStatusCodesDescription: "Odaberite statusne kodove koji se smatraju uspešnim odgovorom.",
|
||||||
keywordDescription: "Pretraži ključnu reč u čistom html ili JSON odgovoru sa osetljivim velikim i malim slovima",
|
PasswordNotMatchMsg: "Ponovljena lozinka se ne poklapa.",
|
||||||
pauseDashboardHome: "Pauziraj",
|
NotificationDescription: "Molim Vas postavite obaveštenje za masmatrače da bise aktivirali.",
|
||||||
deleteMonitorMsg: "Da li ste sigurni da želite da obrišete ovog posmatrača?",
|
KeywordDescription: "Pretraži ključnu reč u čistom html ili JSON odgovoru sa osetljivim velikim i malim slovima",
|
||||||
deleteNotificationMsg: "Da li ste sigurni d aželite da uklonite ovo obaveštenje za sve posmatrače?",
|
PauseDashboardHome: "Pauziraj",
|
||||||
resoverserverDescription: "Cloudflare je podrazumevani server. Možete promeniti server za raszrešavanje u bilo kom trenutku.",
|
DeleteMonitorMsg: "Da li ste sigurni da želite da obrišete ovog posmatrača?",
|
||||||
rrtypeDescription: "Odaberite RR-Type koji želite da posmatrate",
|
DeleteNotificationMsg: "Da li ste sigurni d aželite da uklonite ovo obaveštenje za sve posmatrače?",
|
||||||
pauseMonitorMsg: "Da li ste sigurni da želite da pauzirate?",
|
ResoverserverDescription: "Cloudflare je podrazumevani server. Možete promeniti server za raszrešavanje u bilo kom trenutku.",
|
||||||
Settings: "Podešavanja",
|
RrtypeDescription: "Odaberite RR-Type koji želite da posmatrate",
|
||||||
Dashboard: "Komandna tabla",
|
PauseMonitorMsg: "Da li ste sigurni da želite da pauzirate?",
|
||||||
"New Update": "Nova verzija",
|
EnableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
||||||
Language: "Jezik",
|
ClearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
||||||
Appearance: "Izgled",
|
ClearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
||||||
Theme: "Tema",
|
ConfirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
||||||
General: "Opšte",
|
ImportHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
||||||
Version: "Verzija",
|
ConfirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
||||||
"Check Update On GitHub": "Proverite novu verziju na GitHub-u",
|
TwoFaVerifyLabel: "Please type in your token to verify that 2FA is working",
|
||||||
List: "Lista",
|
TokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
||||||
Add: "Dodaj",
|
ConfirmEnableTwoFaMsg: "Are you sure you want to enable 2FA?",
|
||||||
"Add New Monitor": "Dodaj novog posmatrača",
|
ConfirmDisableTwoFaMsg: "Are you sure you want to disable 2FA?",
|
||||||
"Quick Stats": "Brze statistike",
|
NewUpdate: "Nova verzija",
|
||||||
Up: "Aktivno",
|
CheckUpdateOnGitHub: "Proverite novu verziju na GitHub-u",
|
||||||
Down: "Neaktivno",
|
AddNewMonitor: "Dodaj novog posmatrača",
|
||||||
Pending: "Nerešeno",
|
QuickStats: "Brze statistike",
|
||||||
Unknown: "Nepoznato",
|
NoImportantEvents: "Nema bitnih događaja",
|
||||||
Pause: "Pauziraj",
|
CertExp: "Istek sert.",
|
||||||
Name: "Ime",
|
Days: "dana",
|
||||||
Status: "Status",
|
Day: "dan",
|
||||||
DateTime: "Datum i vreme",
|
Hour: "sat",
|
||||||
Message: "Poruka",
|
MonitorType: "Tip posmatrača",
|
||||||
"No important events": "Nema bitnih događaja",
|
FriendlyName: "Prijateljsko ime",
|
||||||
Resume: "Nastavi",
|
Url: "URL",
|
||||||
Edit: "Izmeni",
|
HeartbeatInterval: "Interval otkucaja srca",
|
||||||
Delete: "Ukloni",
|
HeartbeatRetryInterval: "Heartbeat Retry Interval",
|
||||||
Current: "Trenutno",
|
UpsideDownMode: "Naopak mod",
|
||||||
Uptime: "Vreme rada",
|
MaxRedirects: "Maks. preusmerenja",
|
||||||
"Cert Exp.": "Istek sert.",
|
AcceptedStatusCodes: "Prihvaćeni statusni kodovi",
|
||||||
days: "dana",
|
NotAvailablePleaseSetup: "Nije dostupno, molim Vas podesite.",
|
||||||
day: "dan",
|
SetupNotification: "Postavi obaveštenje",
|
||||||
DaysInMonth: "30-dana",
|
ThemeHeartbeatBar: "Tema - Traka otkucaja srca",
|
||||||
hour: "sat",
|
SearchEngineVisibility: "Vidljivost pretraživačima",
|
||||||
HoursInDay: "24-sata",
|
AllowIndexing: "Dozvoli indeksiranje",
|
||||||
Response: "Odgovor",
|
DiscourageSearchEnginesFromIndexingSite: "Odvraćajte pretraživače od indeksiranja sajta",
|
||||||
Ping: "Ping",
|
ChangePassword: "Promeni lozinku",
|
||||||
"Monitor Type": "Tip posmatrača",
|
CurrentPassword: "Trenutna lozinka",
|
||||||
Keyword: "Ključna reč",
|
NewPassword: "Nova lozinka",
|
||||||
"Friendly Name": "Prijateljsko ime",
|
RepeatNewPassword: "Ponovi novu lozinku",
|
||||||
URL: "URL",
|
UpdatePassword: "Izmeni lozinku",
|
||||||
Hostname: "Hostname",
|
DisableAuth: "Isključi autentifikaciju",
|
||||||
Port: "Port",
|
EnableAuth: "Uključi autentifikaciju",
|
||||||
"Heartbeat Interval": "Interval otkucaja srca",
|
IUnderstandPleaseDisable: "Razumem, molim te isključi",
|
||||||
Retries: "Pokušaji",
|
RememberMe: "Zapamti me",
|
||||||
Advanced: "Napredno",
|
NoMonitorsPlease: "Bez posmatrača molim",
|
||||||
"Upside Down Mode": "Naopak mod",
|
AddOne: "dodaj jednog",
|
||||||
"Max. Redirects": "Maks. preusmerenja",
|
NotificationType: "Tip obaveštenja",
|
||||||
"Accepted Status Codes": "Prihvaćeni statusni kodovi",
|
CertificateInfo: "Informacije sertifikata",
|
||||||
Save: "Sačuvaj",
|
ResolverServer: "Razrešivački server",
|
||||||
Notifications: "Obaveštenja",
|
ResourceRecordType: "Tip zapisa resursa",
|
||||||
"Not available, please setup.": "Nije dostupno, molim Vas podesite.",
|
LastResult: "Poslednji rezultat",
|
||||||
"Setup Notification": "Postavi obaveštenje",
|
CreateYourAdminAccount: "Naprivi administratorski nalog",
|
||||||
Light: "Svetlo",
|
RepeatPassword: "Ponovite lozinku",
|
||||||
Dark: "Tamno",
|
ImportBackup: "Import Backup",
|
||||||
Auto: "Automatsko",
|
ExportBackup: "Export Backup",
|
||||||
"Theme - Heartbeat Bar": "Tema - Traka otkucaja srca",
|
RespTime: "Vreme odg. (ms)",
|
||||||
Normal: "Normalno",
|
NotAvailableShort: "N/A",
|
||||||
Bottom: "Dole",
|
DefaultEnabled: "Default enabled",
|
||||||
None: "Isključeno",
|
ApplyOnAllExistingMonitors: "Apply on all existing monitors",
|
||||||
Timezone: "Vremenska zona",
|
ClearData: "Clear Data",
|
||||||
"Search Engine Visibility": "Vidljivost pretraživačima",
|
AutoGet: "Auto Get",
|
||||||
"Allow indexing": "Dozvoli indeksiranje",
|
BackupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
||||||
"Discourage search engines from indexing site": "Odvraćajte pretraživače od indeksiranja sajta",
|
BackupDescription2: "PS: History and event data is not included.",
|
||||||
"Change Password": "Promeni lozinku",
|
BackupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
||||||
"Current Password": "Trenutna lozinka",
|
AlertNoFile: "Please select a file to import.",
|
||||||
"New Password": "Nova lozinka",
|
AlertWrongFileType: "Please select a JSON file.",
|
||||||
"Repeat New Password": "Ponovi novu lozinku",
|
ClearAllStatistics: "Clear all Statistics",
|
||||||
"Update Password": "Izmeni lozinku",
|
SkipExisting: "Skip existing",
|
||||||
"Disable Auth": "Isključi autentifikaciju",
|
KeepBoth: "Keep both",
|
||||||
"Enable Auth": "Uključi autentifikaciju",
|
VerifyToken: "Verify Token",
|
||||||
Logout: "Odloguj se",
|
Setup2Fa: "Setup 2FA",
|
||||||
Leave: "Izađi",
|
Enable2Fa: "Enable 2FA",
|
||||||
"I understand, please disable": "Razumem, molim te isključi",
|
Disable2Fa: "Disable 2FA",
|
||||||
Confirm: "Potvrdi",
|
TwoFaSettings: "2FA Settings",
|
||||||
Yes: "Da",
|
TwoFactorAuthentication: "Two Factor Authentication",
|
||||||
No: "Ne",
|
ShowUri: "Show URI",
|
||||||
Username: "Korisničko ime",
|
AddNewBelowOrSelect: "Add New below or Select...",
|
||||||
Password: "Lozinka",
|
TagWithThisNameAlreadyExist: "Tag with this name already exist.",
|
||||||
"Remember me": "Zapamti me",
|
TagWithThisValueAlreadyExist: "Tag with this value already exist.",
|
||||||
Login: "Uloguj se",
|
Color: "color",
|
||||||
"No Monitors, please": "Bez posmatrača molim",
|
ValueOptional: "value (optional)",
|
||||||
"add one": "dodaj jednog",
|
Search: "Search...",
|
||||||
"Notification Type": "Tip obaveštenja",
|
AvgPing: "Avg. Ping",
|
||||||
Email: "E-pošta",
|
AvgResponse: "Avg. Response",
|
||||||
Test: "Test",
|
EntryPage: "Entry Page",
|
||||||
"Certificate Info": "Informacije sertifikata",
|
StatusPageNothing: "Nothing here, please add a group or a monitor.",
|
||||||
"Resolver Server": "Razrešivački server",
|
NoServices: "No Services",
|
||||||
"Resource Record Type": "Tip zapisa resursa",
|
AllSystemsOperational: "All Systems Operational",
|
||||||
"Last Result": "Poslednji rezultat",
|
PartiallyDegradedService: "Partially Degraded Service",
|
||||||
"Create your admin account": "Naprivi administratorski nalog",
|
DegradedService: "Degraded Service",
|
||||||
"Repeat Password": "Ponovite lozinku",
|
AddGroup: "Add Group",
|
||||||
respTime: "Vreme odg. (ms)",
|
AddAMonitor: "Add a monitor",
|
||||||
notAvailableShort: "N/A",
|
EditStatusPage: "Edit Status Page",
|
||||||
Create: "Create",
|
GoToDashboard: "Go to Dashboard",
|
||||||
clearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
Telegram: "Telegram",
|
||||||
clearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
Webhook: "Webhook",
|
||||||
confirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
Smtp: "Email (SMTP)",
|
||||||
"Clear Data": "Clear Data",
|
Discord: "Discord",
|
||||||
Events: "Events",
|
Teams: "Microsoft Teams",
|
||||||
Heartbeats: "Heartbeats",
|
Signal: "Signal",
|
||||||
"Auto Get": "Auto Get",
|
Gotify: "Gotify",
|
||||||
enableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
Slack: "Slack",
|
||||||
"Default enabled": "Default enabled",
|
RocketChat: "Rocket.chat",
|
||||||
"Also apply to existing monitors": "Also apply to existing monitors",
|
Pushover: "Pushover",
|
||||||
Export: "Export",
|
Pushy: "Pushy",
|
||||||
Import: "Import",
|
Octopush: "Octopush",
|
||||||
backupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
Lunasea: "LunaSea",
|
||||||
backupDescription2: "PS: History and event data is not included.",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
Pushbullet: "Pushbullet",
|
||||||
alertNoFile: "Please select a file to import.",
|
Line: "Line Messenger",
|
||||||
alertWrongFileType: "Please select a JSON file.",
|
Mattermost: "Mattermost"
|
||||||
twoFAVerifyLabel: "Please type in your token to verify that 2FA is working",
|
|
||||||
tokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
|
||||||
confirmEnableTwoFAMsg: "Are you sure you want to enable 2FA?",
|
|
||||||
confirmDisableTwoFAMsg: "Are you sure you want to disable 2FA?",
|
|
||||||
"Apply on all existing monitors": "Apply on all existing monitors",
|
|
||||||
"Verify Token": "Verify Token",
|
|
||||||
"Setup 2FA": "Setup 2FA",
|
|
||||||
"Enable 2FA": "Enable 2FA",
|
|
||||||
"Disable 2FA": "Disable 2FA",
|
|
||||||
"2FA Settings": "2FA Settings",
|
|
||||||
"Two Factor Authentication": "Two Factor Authentication",
|
|
||||||
Active: "Active",
|
|
||||||
Inactive: "Inactive",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Show URI",
|
|
||||||
"Clear all statistics": "Clear all Statistics",
|
|
||||||
retryCheckEverySecond: "Retry every {0} seconds.",
|
|
||||||
importHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
|
||||||
confirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
|
||||||
"Heartbeat Retry Interval": "Heartbeat Retry Interval",
|
|
||||||
"Import Backup": "Import Backup",
|
|
||||||
"Export Backup": "Export Backup",
|
|
||||||
"Skip existing": "Skip existing",
|
|
||||||
Overwrite: "Overwrite",
|
|
||||||
Options: "Options",
|
|
||||||
"Keep both": "Keep both",
|
|
||||||
Tags: "Tags",
|
|
||||||
"Add New below or Select...": "Add New below or Select...",
|
|
||||||
"Tag with this name already exist.": "Tag with this name already exist.",
|
|
||||||
"Tag with this value already exist.": "Tag with this value already exist.",
|
|
||||||
color: "color",
|
|
||||||
"value (optional)": "value (optional)",
|
|
||||||
Gray: "Gray",
|
|
||||||
Red: "Red",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Green",
|
|
||||||
Blue: "Blue",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Purple",
|
|
||||||
Pink: "Pink",
|
|
||||||
"Search...": "Search...",
|
|
||||||
"Avg. Ping": "Avg. Ping",
|
|
||||||
"Avg. Response": "Avg. Response",
|
|
||||||
"Entry Page": "Entry Page",
|
|
||||||
statusPageNothing: "Nothing here, please add a group or a monitor.",
|
|
||||||
"No Services": "No Services",
|
|
||||||
"All Systems Operational": "All Systems Operational",
|
|
||||||
"Partially Degraded Service": "Partially Degraded Service",
|
|
||||||
"Degraded Service": "Degraded Service",
|
|
||||||
"Add Group": "Add Group",
|
|
||||||
"Add a monitor": "Add a monitor",
|
|
||||||
"Edit Status Page": "Edit Status Page",
|
|
||||||
"Go to Dashboard": "Go to Dashboard",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Српски",
|
Also apply to existing monitors: "Also apply to existing monitors",
|
||||||
checkEverySecond: "Провери сваких {0} секунди.",
|
LanguageName: "Српски",
|
||||||
retriesDescription: "Максимум покушаја пре него што се сервис обележи као неактиван и пошаље се обавештење.",
|
CheckEverySecond: "Провери сваких {0} секунди.",
|
||||||
ignoreTLSError: "Игнориши TLS/SSL грешке за HTTPS веб странице.",
|
RetryCheckEverySecond: "Retry every {0} seconds.",
|
||||||
upsideDownModeDescription: "Обрните статус. Ако је сервис доступан, онда је обележен као неактиван.",
|
RetriesDescription: "Максимум покушаја пре него што се сервис обележи као неактиван и пошаље се обавештење.",
|
||||||
maxRedirectDescription: "Максимани број преусмерења да се прате. Поставите на 0 да би се искључила преусмерења.",
|
IgnoreTlsError: "Игнориши TLS/SSL грешке за HTTPS веб странице.",
|
||||||
acceptedStatusCodesDescription: "Одаберите статусне кодове који се сматрају успешним одговором.",
|
UpsideDownModeDescription: "Обрните статус. Ако је сервис доступан, онда је обележен као неактиван.",
|
||||||
passwordNotMatchMsg: "Поновљена лозинка се не поклапа.",
|
MaxRedirectDescription: "Максимани број преусмерења да се прате. Поставите на 0 да би се искључила преусмерења.",
|
||||||
notificationDescription: "Молим Вас поставите обавештење за масматраче да бисе активирали.",
|
AcceptedStatusCodesDescription: "Одаберите статусне кодове који се сматрају успешним одговором.",
|
||||||
keywordDescription: "Претражи кључну реч у чистом html или JSON одговору са осетљивим великим и малим словима",
|
PasswordNotMatchMsg: "Поновљена лозинка се не поклапа.",
|
||||||
pauseDashboardHome: "Паузирај",
|
NotificationDescription: "Молим Вас поставите обавештење за масматраче да бисе активирали.",
|
||||||
deleteMonitorMsg: "Да ли сте сигурни да желите да обришете овог посматрача?",
|
KeywordDescription: "Претражи кључну реч у чистом html или JSON одговору са осетљивим великим и малим словима",
|
||||||
deleteNotificationMsg: "Да ли сте сигурни д ажелите да уклоните ово обавештење за све посматраче?",
|
PauseDashboardHome: "Паузирај",
|
||||||
resoverserverDescription: "Cloudflare је подразумевани сервер. Можете променити сервер за расзрешавање у било ком тренутку.",
|
DeleteMonitorMsg: "Да ли сте сигурни да желите да обришете овог посматрача?",
|
||||||
rrtypeDescription: "Одаберите RR-Type који желите да посматрате",
|
DeleteNotificationMsg: "Да ли сте сигурни д ажелите да уклоните ово обавештење за све посматраче?",
|
||||||
pauseMonitorMsg: "Да ли сте сигурни да желите да паузирате?",
|
ResoverserverDescription: "Cloudflare је подразумевани сервер. Можете променити сервер за расзрешавање у било ком тренутку.",
|
||||||
Settings: "Подешавања",
|
RrtypeDescription: "Одаберите RR-Type који желите да посматрате",
|
||||||
Dashboard: "Командна табла",
|
PauseMonitorMsg: "Да ли сте сигурни да желите да паузирате?",
|
||||||
"New Update": "Нова верзија",
|
EnableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
||||||
Language: "Језик",
|
ClearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
||||||
Appearance: "Изглед",
|
ClearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
||||||
Theme: "Тема",
|
ConfirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
||||||
General: "Опште",
|
ImportHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
||||||
Version: "Верзија",
|
ConfirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
||||||
"Check Update On GitHub": "Проверите нову верзију на GitHub-у",
|
TwoFaVerifyLabel: "Please type in your token to verify that 2FA is working",
|
||||||
List: "Листа",
|
TokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
||||||
Add: "Додај",
|
ConfirmEnableTwoFaMsg: "Are you sure you want to enable 2FA?",
|
||||||
"Add New Monitor": "Додај новог посматрача",
|
ConfirmDisableTwoFaMsg: "Are you sure you want to disable 2FA?",
|
||||||
"Quick Stats": "Брзе статистике",
|
NewUpdate: "Нова верзија",
|
||||||
Up: "Активно",
|
CheckUpdateOnGitHub: "Проверите нову верзију на GitHub-у",
|
||||||
Down: "Неактивно",
|
AddNewMonitor: "Додај новог посматрача",
|
||||||
Pending: "Нерешено",
|
QuickStats: "Брзе статистике",
|
||||||
Unknown: "Непознато",
|
NoImportantEvents: "Нема битних догађаја",
|
||||||
Pause: "Паузирај",
|
CertExp: "Истек серт.",
|
||||||
Name: "Име",
|
Days: "дана",
|
||||||
Status: "Статус",
|
Day: "дан",
|
||||||
DateTime: "Датум и време",
|
Hour: "сат",
|
||||||
Message: "Порука",
|
MonitorType: "Тип посматрача",
|
||||||
"No important events": "Нема битних догађаја",
|
FriendlyName: "Пријатељско име",
|
||||||
Resume: "Настави",
|
Url: "URL",
|
||||||
Edit: "Измени",
|
HeartbeatInterval: "Интервал откуцаја срца",
|
||||||
Delete: "Уклони",
|
HeartbeatRetryInterval: "Heartbeat Retry Interval",
|
||||||
Current: "Тренутно",
|
UpsideDownMode: "Наопак мод",
|
||||||
Uptime: "Време рада",
|
MaxRedirects: "Макс. преусмерења",
|
||||||
"Cert Exp.": "Истек серт.",
|
AcceptedStatusCodes: "Прихваћени статусни кодови",
|
||||||
days: "дана",
|
NotAvailablePleaseSetup: "Није доступно, молим Вас подесите.",
|
||||||
day: "дан",
|
SetupNotification: "Постави обавештење",
|
||||||
DaysInMonth: "30-дана",
|
ThemeHeartbeatBar: "Тема - Трака откуцаја срца",
|
||||||
hour: "сат",
|
SearchEngineVisibility: "Видљивост претраживачима",
|
||||||
HoursInDay: "24-сата",
|
AllowIndexing: "Дозволи индексирање",
|
||||||
Response: "Одговор",
|
DiscourageSearchEnginesFromIndexingSite: "Одвраћајте претраживаче од индексирања сајта",
|
||||||
Ping: "Пинг",
|
ChangePassword: "Промени лозинку",
|
||||||
"Monitor Type": "Тип посматрача",
|
CurrentPassword: "Тренутна лозинка",
|
||||||
Keyword: "Кључна реч",
|
NewPassword: "Нова лозинка",
|
||||||
"Friendly Name": "Пријатељско име",
|
RepeatNewPassword: "Понови нову лозинку",
|
||||||
URL: "URL",
|
UpdatePassword: "Измени лозинку",
|
||||||
Hostname: "Hostname",
|
DisableAuth: "Искључи аутентификацију",
|
||||||
Port: "Порт",
|
EnableAuth: "Укључи аутентификацију",
|
||||||
"Heartbeat Interval": "Интервал откуцаја срца",
|
IUnderstandPleaseDisable: "Разумем, молим те искључи",
|
||||||
Retries: "Покушаји",
|
RememberMe: "Запамти ме",
|
||||||
Advanced: "Напредно",
|
NoMonitorsPlease: "Без посматрача молим",
|
||||||
"Upside Down Mode": "Наопак мод",
|
AddOne: "додај једног",
|
||||||
"Max. Redirects": "Макс. преусмерења",
|
NotificationType: "Тип обавештења",
|
||||||
"Accepted Status Codes": "Прихваћени статусни кодови",
|
CertificateInfo: "Информације сертификата",
|
||||||
Save: "Сачувај",
|
ResolverServer: "Разрешивачки сервер",
|
||||||
Notifications: "Обавештења",
|
ResourceRecordType: "Тип записа ресурса",
|
||||||
"Not available, please setup.": "Није доступно, молим Вас подесите.",
|
LastResult: "Последњи резултат",
|
||||||
"Setup Notification": "Постави обавештење",
|
CreateYourAdminAccount: "Наприви администраторски налог",
|
||||||
Light: "Светло",
|
RepeatPassword: "Поновите лозинку",
|
||||||
Dark: "Тамно",
|
ImportBackup: "Import Backup",
|
||||||
Auto: "Аутоматско",
|
ExportBackup: "Export Backup",
|
||||||
"Theme - Heartbeat Bar": "Тема - Трака откуцаја срца",
|
RespTime: "Време одг. (мс)",
|
||||||
Normal: "Нормално",
|
NotAvailableShort: "N/A",
|
||||||
Bottom: "Доле",
|
DefaultEnabled: "Default enabled",
|
||||||
None: "Искључено",
|
ApplyOnAllExistingMonitors: "Apply on all existing monitors",
|
||||||
Timezone: "Временска зона",
|
ClearData: "Clear Data",
|
||||||
"Search Engine Visibility": "Видљивост претраживачима",
|
AutoGet: "Auto Get",
|
||||||
"Allow indexing": "Дозволи индексирање",
|
BackupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
||||||
"Discourage search engines from indexing site": "Одвраћајте претраживаче од индексирања сајта",
|
BackupDescription2: "PS: History and event data is not included.",
|
||||||
"Change Password": "Промени лозинку",
|
BackupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
||||||
"Current Password": "Тренутна лозинка",
|
AlertNoFile: "Please select a file to import.",
|
||||||
"New Password": "Нова лозинка",
|
AlertWrongFileType: "Please select a JSON file.",
|
||||||
"Repeat New Password": "Понови нову лозинку",
|
ClearAllStatistics: "Clear all Statistics",
|
||||||
"Update Password": "Измени лозинку",
|
SkipExisting: "Skip existing",
|
||||||
"Disable Auth": "Искључи аутентификацију",
|
KeepBoth: "Keep both",
|
||||||
"Enable Auth": "Укључи аутентификацију",
|
VerifyToken: "Verify Token",
|
||||||
Logout: "Одлогуј се",
|
Setup2Fa: "Setup 2FA",
|
||||||
Leave: "Изађи",
|
Enable2Fa: "Enable 2FA",
|
||||||
"I understand, please disable": "Разумем, молим те искључи",
|
Disable2Fa: "Disable 2FA",
|
||||||
Confirm: "Потврди",
|
TwoFaSettings: "2FA Settings",
|
||||||
Yes: "Да",
|
TwoFactorAuthentication: "Two Factor Authentication",
|
||||||
No: "Не",
|
ShowUri: "Show URI",
|
||||||
Username: "Корисничко име",
|
AddNewBelowOrSelect: "Add New below or Select...",
|
||||||
Password: "Лозинка",
|
TagWithThisNameAlreadyExist: "Tag with this name already exist.",
|
||||||
"Remember me": "Запамти ме",
|
TagWithThisValueAlreadyExist: "Tag with this value already exist.",
|
||||||
Login: "Улогуј се",
|
Color: "color",
|
||||||
"No Monitors, please": "Без посматрача молим",
|
ValueOptional: "value (optional)",
|
||||||
"add one": "додај једног",
|
Search: "Search...",
|
||||||
"Notification Type": "Тип обавештења",
|
AvgPing: "Avg. Ping",
|
||||||
Email: "Е-пошта",
|
AvgResponse: "Avg. Response",
|
||||||
Test: "Тест",
|
EntryPage: "Entry Page",
|
||||||
"Certificate Info": "Информације сертификата",
|
StatusPageNothing: "Nothing here, please add a group or a monitor.",
|
||||||
"Resolver Server": "Разрешивачки сервер",
|
NoServices: "No Services",
|
||||||
"Resource Record Type": "Тип записа ресурса",
|
AllSystemsOperational: "All Systems Operational",
|
||||||
"Last Result": "Последњи резултат",
|
PartiallyDegradedService: "Partially Degraded Service",
|
||||||
"Create your admin account": "Наприви администраторски налог",
|
DegradedService: "Degraded Service",
|
||||||
"Repeat Password": "Поновите лозинку",
|
AddGroup: "Add Group",
|
||||||
respTime: "Време одг. (мс)",
|
AddAMonitor: "Add a monitor",
|
||||||
notAvailableShort: "N/A",
|
EditStatusPage: "Edit Status Page",
|
||||||
Create: "Create",
|
GoToDashboard: "Go to Dashboard",
|
||||||
clearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
Telegram: "Telegram",
|
||||||
clearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
Webhook: "Webhook",
|
||||||
confirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
Smtp: "Email (SMTP)",
|
||||||
"Clear Data": "Clear Data",
|
Discord: "Discord",
|
||||||
Events: "Events",
|
Teams: "Microsoft Teams",
|
||||||
Heartbeats: "Heartbeats",
|
Signal: "Signal",
|
||||||
"Auto Get": "Auto Get",
|
Gotify: "Gotify",
|
||||||
enableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
Slack: "Slack",
|
||||||
"Default enabled": "Default enabled",
|
RocketChat: "Rocket.chat",
|
||||||
"Also apply to existing monitors": "Also apply to existing monitors",
|
Pushover: "Pushover",
|
||||||
Export: "Export",
|
Pushy: "Pushy",
|
||||||
Import: "Import",
|
Octopush: "Octopush",
|
||||||
backupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
Lunasea: "LunaSea",
|
||||||
backupDescription2: "PS: History and event data is not included.",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
Pushbullet: "Pushbullet",
|
||||||
alertNoFile: "Please select a file to import.",
|
Line: "Line Messenger",
|
||||||
alertWrongFileType: "Please select a JSON file.",
|
Mattermost: "Mattermost"
|
||||||
twoFAVerifyLabel: "Please type in your token to verify that 2FA is working",
|
|
||||||
tokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
|
||||||
confirmEnableTwoFAMsg: "Are you sure you want to enable 2FA?",
|
|
||||||
confirmDisableTwoFAMsg: "Are you sure you want to disable 2FA?",
|
|
||||||
"Apply on all existing monitors": "Apply on all existing monitors",
|
|
||||||
"Verify Token": "Verify Token",
|
|
||||||
"Setup 2FA": "Setup 2FA",
|
|
||||||
"Enable 2FA": "Enable 2FA",
|
|
||||||
"Disable 2FA": "Disable 2FA",
|
|
||||||
"2FA Settings": "2FA Settings",
|
|
||||||
"Two Factor Authentication": "Two Factor Authentication",
|
|
||||||
Active: "Active",
|
|
||||||
Inactive: "Inactive",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Show URI",
|
|
||||||
"Clear all statistics": "Clear all Statistics",
|
|
||||||
retryCheckEverySecond: "Retry every {0} seconds.",
|
|
||||||
importHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
|
||||||
confirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
|
||||||
"Heartbeat Retry Interval": "Heartbeat Retry Interval",
|
|
||||||
"Import Backup": "Import Backup",
|
|
||||||
"Export Backup": "Export Backup",
|
|
||||||
"Skip existing": "Skip existing",
|
|
||||||
Overwrite: "Overwrite",
|
|
||||||
Options: "Options",
|
|
||||||
"Keep both": "Keep both",
|
|
||||||
Tags: "Tags",
|
|
||||||
"Add New below or Select...": "Add New below or Select...",
|
|
||||||
"Tag with this name already exist.": "Tag with this name already exist.",
|
|
||||||
"Tag with this value already exist.": "Tag with this value already exist.",
|
|
||||||
color: "color",
|
|
||||||
"value (optional)": "value (optional)",
|
|
||||||
Gray: "Gray",
|
|
||||||
Red: "Red",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Green",
|
|
||||||
Blue: "Blue",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Purple",
|
|
||||||
Pink: "Pink",
|
|
||||||
"Search...": "Search...",
|
|
||||||
"Avg. Ping": "Avg. Ping",
|
|
||||||
"Avg. Response": "Avg. Response",
|
|
||||||
"Entry Page": "Entry Page",
|
|
||||||
statusPageNothing: "Nothing here, please add a group or a monitor.",
|
|
||||||
"No Services": "No Services",
|
|
||||||
"All Systems Operational": "All Systems Operational",
|
|
||||||
"Partially Degraded Service": "Partially Degraded Service",
|
|
||||||
"Degraded Service": "Degraded Service",
|
|
||||||
"Add Group": "Add Group",
|
|
||||||
"Add a monitor": "Add a monitor",
|
|
||||||
"Edit Status Page": "Edit Status Page",
|
|
||||||
"Go to Dashboard": "Go to Dashboard",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Svenska",
|
Also apply to existing monitors: "Also apply to existing monitors",
|
||||||
checkEverySecond: "Uppdatera var {0} sekund.",
|
LanguageName: "Svenska",
|
||||||
retriesDescription: "Max antal försök innan tjänsten markeras som nere och en notis skickas",
|
CheckEverySecond: "Uppdatera var {0} sekund.",
|
||||||
ignoreTLSError: "Ignorera TLS/SSL-fel för webbsidor med HTTPS",
|
RetryCheckEverySecond: "Retry every {0} seconds.",
|
||||||
upsideDownModeDescription: "Vänd upp och ner på statusen. Om tjänsten är nåbar visas den som NERE.",
|
RetriesDescription: "Max antal försök innan tjänsten markeras som nere och en notis skickas",
|
||||||
maxRedirectDescription: "Max antal omdirigeringar att följa. Välj 0 för att avaktivera omdirigeringar.",
|
IgnoreTlsError: "Ignorera TLS/SSL-fel för webbsidor med HTTPS",
|
||||||
acceptedStatusCodesDescription: "Välj statuskoder som räknas som lyckade.",
|
UpsideDownModeDescription: "Vänd upp och ner på statusen. Om tjänsten är nåbar visas den som NERE.",
|
||||||
passwordNotMatchMsg: "Det bekräftade lösenordet stämmer ej överens.",
|
MaxRedirectDescription: "Max antal omdirigeringar att följa. Välj 0 för att avaktivera omdirigeringar.",
|
||||||
notificationDescription: "Vänligen lägg till en notistjänst till dina övervakare.",
|
AcceptedStatusCodesDescription: "Välj statuskoder som räknas som lyckade.",
|
||||||
keywordDescription: "Sök efter nyckelord i ren HTML eller JSON-svar. Sökningen är skiftkänslig.",
|
PasswordNotMatchMsg: "Det bekräftade lösenordet stämmer ej överens.",
|
||||||
pauseDashboardHome: "Pausa",
|
NotificationDescription: "Vänligen lägg till en notistjänst till dina övervakare.",
|
||||||
deleteMonitorMsg: "Är du säker på att du vill ta bort den här övervakningen?",
|
KeywordDescription: "Sök efter nyckelord i ren HTML eller JSON-svar. Sökningen är skiftkänslig.",
|
||||||
deleteNotificationMsg: "Är du säker på att du vill ta bort den här notisen för alla övervakare?",
|
PauseDashboardHome: "Pausa",
|
||||||
resoverserverDescription: "Cloudflare är den förvalda servern. Du kan byta resolver när som helst.",
|
DeleteMonitorMsg: "Är du säker på att du vill ta bort den här övervakningen?",
|
||||||
rrtypeDescription: "Välj den RR-typ du vill övervaka",
|
DeleteNotificationMsg: "Är du säker på att du vill ta bort den här notisen för alla övervakare?",
|
||||||
pauseMonitorMsg: "Är du säker på att du vill pausa?",
|
ResoverserverDescription: "Cloudflare är den förvalda servern. Du kan byta resolver när som helst.",
|
||||||
Settings: "Inställningar",
|
RrtypeDescription: "Välj den RR-typ du vill övervaka",
|
||||||
Dashboard: "Infopanel",
|
PauseMonitorMsg: "Är du säker på att du vill pausa?",
|
||||||
"New Update": "Ny uppdatering",
|
EnableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
||||||
Language: "Språk",
|
ClearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
||||||
Appearance: "Utseende",
|
ClearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
||||||
Theme: "Tema",
|
ConfirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
||||||
General: "Allmänt",
|
ImportHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
||||||
Version: "Version",
|
ConfirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
||||||
"Check Update On GitHub": "Sök efter uppdatering på GitHub",
|
TwoFaVerifyLabel: "Please type in your token to verify that 2FA is working",
|
||||||
List: "Lista",
|
TokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
||||||
Add: "Lägg till",
|
ConfirmEnableTwoFaMsg: "Are you sure you want to enable 2FA?",
|
||||||
"Add New Monitor": "Lägg Till Ny Övervakare",
|
ConfirmDisableTwoFaMsg: "Are you sure you want to disable 2FA?",
|
||||||
"Quick Stats": "Snabbstatistik",
|
NewUpdate: "Ny uppdatering",
|
||||||
Up: "Uppe",
|
CheckUpdateOnGitHub: "Sök efter uppdatering på GitHub",
|
||||||
Down: "Nere",
|
AddNewMonitor: "Lägg Till Ny Övervakare",
|
||||||
Pending: "Pågående",
|
QuickStats: "Snabbstatistik",
|
||||||
Unknown: "Okänt",
|
NoImportantEvents: "Inga viktiga händelser",
|
||||||
Pause: "Pausa",
|
CertExp: "Certifikat utgår",
|
||||||
Name: "Namn",
|
Days: "dagar",
|
||||||
Status: "Status",
|
Day: "dag",
|
||||||
DateTime: "Datum & Tid",
|
Hour: "timme",
|
||||||
Message: "Meddelande",
|
MonitorType: "Övervakningstyp",
|
||||||
"No important events": "Inga viktiga händelser",
|
FriendlyName: "Namn",
|
||||||
Resume: "Återuppta",
|
Url: "URL",
|
||||||
Edit: "Redigera",
|
HeartbeatInterval: "Hjärtslagsintervall",
|
||||||
Delete: "Ta bort",
|
HeartbeatRetryInterval: "Heartbeat Retry Interval",
|
||||||
Current: "Nuvarande",
|
UpsideDownMode: "Upp och ner-läge",
|
||||||
Uptime: "Drifttid",
|
MaxRedirects: "Max antal omdirigeringar",
|
||||||
"Cert Exp.": "Certifikat utgår",
|
AcceptedStatusCodes: "Tillåtna statuskoder",
|
||||||
days: "dagar",
|
NotAvailablePleaseSetup: "Ej tillgänglig, vänligen konfigurera.",
|
||||||
day: "dag",
|
SetupNotification: "Ny Notistjänst",
|
||||||
DaysInMonth: "30-dagar",
|
ThemeHeartbeatBar: "Tema - Heartbeat Bar",
|
||||||
hour: "timme",
|
SearchEngineVisibility: "Synlighet på Sökmotorer",
|
||||||
HoursInDay: "24-timmar",
|
AllowIndexing: "Tillåt indexering",
|
||||||
Response: "Svar",
|
DiscourageSearchEnginesFromIndexingSite: "Hindra sökmotorer från att indexera sidan",
|
||||||
Ping: "Ping",
|
ChangePassword: "Byt Lösenord",
|
||||||
"Monitor Type": "Övervakningstyp",
|
CurrentPassword: "Nuvarande Lösenord",
|
||||||
Keyword: "Nyckelord",
|
NewPassword: "Nytt Lösenord",
|
||||||
"Friendly Name": "Namn",
|
RepeatNewPassword: "Upprepa Nytt Lösenord",
|
||||||
URL: "URL",
|
UpdatePassword: "Uppdatera Lösenord",
|
||||||
Hostname: "Värdnamn",
|
DisableAuth: "Avaktivera Autentisering",
|
||||||
Port: "Port",
|
EnableAuth: "Aktivera Autentisering",
|
||||||
"Heartbeat Interval": "Hjärtslagsintervall",
|
IUnderstandPleaseDisable: "Jag förstår, vänligen avaktivera",
|
||||||
Retries: "Försök",
|
RememberMe: "Kom ihåg mig",
|
||||||
Advanced: "Avancerat",
|
NoMonitorsPlease: "Inga Övervakare, tack",
|
||||||
"Upside Down Mode": "Upp och ner-läge",
|
AddOne: "lägg till en",
|
||||||
"Max. Redirects": "Max antal omdirigeringar",
|
NotificationType: "Notistyp",
|
||||||
"Accepted Status Codes": "Tillåtna statuskoder",
|
CertificateInfo: "Certifikatsinfo",
|
||||||
Save: "Spara",
|
ResolverServer: "Resolverserver",
|
||||||
Notifications: "Notiser",
|
ResourceRecordType: "RR-typ",
|
||||||
"Not available, please setup.": "Ej tillgänglig, vänligen konfigurera.",
|
LastResult: "Senaste resultat",
|
||||||
"Setup Notification": "Ny Notistjänst",
|
CreateYourAdminAccount: "Skapa ditt administratörskonto",
|
||||||
Light: "Ljust",
|
RepeatPassword: "Upprepa Lösenord",
|
||||||
Dark: "Mörkt",
|
ImportBackup: "Import Backup",
|
||||||
Auto: "Automatiskt",
|
ExportBackup: "Export Backup",
|
||||||
"Theme - Heartbeat Bar": "Tema - Heartbeat Bar",
|
RespTime: "Svarstid (ms)",
|
||||||
Normal: "Normal",
|
NotAvailableShort: "Ej Tillg.",
|
||||||
Bottom: "Botten",
|
DefaultEnabled: "Default enabled",
|
||||||
None: "Tomt",
|
ApplyOnAllExistingMonitors: "Apply on all existing monitors",
|
||||||
Timezone: "Tidszon",
|
ClearData: "Clear Data",
|
||||||
"Search Engine Visibility": "Synlighet på Sökmotorer",
|
AutoGet: "Auto Get",
|
||||||
"Allow indexing": "Tillåt indexering",
|
BackupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
||||||
"Discourage search engines from indexing site": "Hindra sökmotorer från att indexera sidan",
|
BackupDescription2: "PS: History and event data is not included.",
|
||||||
"Change Password": "Byt Lösenord",
|
BackupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
||||||
"Current Password": "Nuvarande Lösenord",
|
AlertNoFile: "Please select a file to import.",
|
||||||
"New Password": "Nytt Lösenord",
|
AlertWrongFileType: "Please select a JSON file.",
|
||||||
"Repeat New Password": "Upprepa Nytt Lösenord",
|
ClearAllStatistics: "Clear all Statistics",
|
||||||
"Update Password": "Uppdatera Lösenord",
|
SkipExisting: "Skip existing",
|
||||||
"Disable Auth": "Avaktivera Autentisering",
|
KeepBoth: "Keep both",
|
||||||
"Enable Auth": "Aktivera Autentisering",
|
VerifyToken: "Verify Token",
|
||||||
Logout: "Logga ut",
|
Setup2Fa: "Setup 2FA",
|
||||||
Leave: "Lämna",
|
Enable2Fa: "Enable 2FA",
|
||||||
"I understand, please disable": "Jag förstår, vänligen avaktivera",
|
Disable2Fa: "Disable 2FA",
|
||||||
Confirm: "Bekräfta",
|
TwoFaSettings: "2FA Settings",
|
||||||
Yes: "Ja",
|
TwoFactorAuthentication: "Two Factor Authentication",
|
||||||
No: "Nej",
|
ShowUri: "Show URI",
|
||||||
Username: "Användarnamn",
|
AddNewBelowOrSelect: "Add New below or Select...",
|
||||||
Password: "Lösenord",
|
TagWithThisNameAlreadyExist: "Tag with this name already exist.",
|
||||||
"Remember me": "Kom ihåg mig",
|
TagWithThisValueAlreadyExist: "Tag with this value already exist.",
|
||||||
Login: "Logga in",
|
Color: "color",
|
||||||
"No Monitors, please": "Inga Övervakare, tack",
|
ValueOptional: "value (optional)",
|
||||||
"add one": "lägg till en",
|
Search: "Search...",
|
||||||
"Notification Type": "Notistyp",
|
AvgPing: "Avg. Ping",
|
||||||
Email: "Email",
|
AvgResponse: "Avg. Response",
|
||||||
Test: "Test",
|
EntryPage: "Entry Page",
|
||||||
"Certificate Info": "Certifikatsinfo",
|
StatusPageNothing: "Nothing here, please add a group or a monitor.",
|
||||||
"Resolver Server": "Resolverserver",
|
NoServices: "No Services",
|
||||||
"Resource Record Type": "RR-typ",
|
AllSystemsOperational: "All Systems Operational",
|
||||||
"Last Result": "Senaste resultat",
|
PartiallyDegradedService: "Partially Degraded Service",
|
||||||
"Create your admin account": "Skapa ditt administratörskonto",
|
DegradedService: "Degraded Service",
|
||||||
"Repeat Password": "Upprepa Lösenord",
|
AddGroup: "Add Group",
|
||||||
respTime: "Svarstid (ms)",
|
AddAMonitor: "Add a monitor",
|
||||||
notAvailableShort: "Ej Tillg.",
|
EditStatusPage: "Edit Status Page",
|
||||||
Create: "Create",
|
GoToDashboard: "Go to Dashboard",
|
||||||
clearEventsMsg: "Are you sure want to delete all events for this monitor?",
|
Telegram: "Telegram",
|
||||||
clearHeartbeatsMsg: "Are you sure want to delete all heartbeats for this monitor?",
|
Webhook: "Webhook",
|
||||||
confirmClearStatisticsMsg: "Are you sure want to delete ALL statistics?",
|
Smtp: "Email (SMTP)",
|
||||||
"Clear Data": "Clear Data",
|
Discord: "Discord",
|
||||||
Events: "Events",
|
Teams: "Microsoft Teams",
|
||||||
Heartbeats: "Heartbeats",
|
Signal: "Signal",
|
||||||
"Auto Get": "Auto Get",
|
Gotify: "Gotify",
|
||||||
enableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
Slack: "Slack",
|
||||||
"Default enabled": "Default enabled",
|
RocketChat: "Rocket.chat",
|
||||||
"Also apply to existing monitors": "Also apply to existing monitors",
|
Pushover: "Pushover",
|
||||||
Export: "Export",
|
Pushy: "Pushy",
|
||||||
Import: "Import",
|
Octopush: "Octopush",
|
||||||
backupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
Lunasea: "LunaSea",
|
||||||
backupDescription2: "PS: History and event data is not included.",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
Pushbullet: "Pushbullet",
|
||||||
alertNoFile: "Please select a file to import.",
|
Line: "Line Messenger",
|
||||||
alertWrongFileType: "Please select a JSON file.",
|
Mattermost: "Mattermost"
|
||||||
twoFAVerifyLabel: "Please type in your token to verify that 2FA is working",
|
|
||||||
tokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
|
||||||
confirmEnableTwoFAMsg: "Are you sure you want to enable 2FA?",
|
|
||||||
confirmDisableTwoFAMsg: "Are you sure you want to disable 2FA?",
|
|
||||||
"Apply on all existing monitors": "Apply on all existing monitors",
|
|
||||||
"Verify Token": "Verify Token",
|
|
||||||
"Setup 2FA": "Setup 2FA",
|
|
||||||
"Enable 2FA": "Enable 2FA",
|
|
||||||
"Disable 2FA": "Disable 2FA",
|
|
||||||
"2FA Settings": "2FA Settings",
|
|
||||||
"Two Factor Authentication": "Two Factor Authentication",
|
|
||||||
Active: "Active",
|
|
||||||
Inactive: "Inactive",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Show URI",
|
|
||||||
"Clear all statistics": "Clear all Statistics",
|
|
||||||
retryCheckEverySecond: "Retry every {0} seconds.",
|
|
||||||
importHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
|
||||||
confirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
|
||||||
"Heartbeat Retry Interval": "Heartbeat Retry Interval",
|
|
||||||
"Import Backup": "Import Backup",
|
|
||||||
"Export Backup": "Export Backup",
|
|
||||||
"Skip existing": "Skip existing",
|
|
||||||
Overwrite: "Overwrite",
|
|
||||||
Options: "Options",
|
|
||||||
"Keep both": "Keep both",
|
|
||||||
Tags: "Tags",
|
|
||||||
"Add New below or Select...": "Add New below or Select...",
|
|
||||||
"Tag with this name already exist.": "Tag with this name already exist.",
|
|
||||||
"Tag with this value already exist.": "Tag with this value already exist.",
|
|
||||||
color: "color",
|
|
||||||
"value (optional)": "value (optional)",
|
|
||||||
Gray: "Gray",
|
|
||||||
Red: "Red",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Green",
|
|
||||||
Blue: "Blue",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Purple",
|
|
||||||
Pink: "Pink",
|
|
||||||
"Search...": "Search...",
|
|
||||||
"Avg. Ping": "Avg. Ping",
|
|
||||||
"Avg. Response": "Avg. Response",
|
|
||||||
"Entry Page": "Entry Page",
|
|
||||||
statusPageNothing: "Nothing here, please add a group or a monitor.",
|
|
||||||
"No Services": "No Services",
|
|
||||||
"All Systems Operational": "All Systems Operational",
|
|
||||||
"Partially Degraded Service": "Partially Degraded Service",
|
|
||||||
"Degraded Service": "Degraded Service",
|
|
||||||
"Add Group": "Add Group",
|
|
||||||
"Add a monitor": "Add a monitor",
|
|
||||||
"Edit Status Page": "Edit Status Page",
|
|
||||||
"Go to Dashboard": "Go to Dashboard",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,181 +1,128 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "Türkçe",
|
LanguageName: "Türkçe",
|
||||||
checkEverySecond: "{0} Saniyede bir kontrol et.",
|
CheckEverySecond: "{0} Saniyede bir kontrol et.",
|
||||||
retriesDescription: "Servisin kapalı olarak işaretlenmeden ve bir bildirim gönderilmeden önce maksimum yeniden deneme sayısı",
|
RetryCheckEverySecond: "Retry every {0} seconds.",
|
||||||
ignoreTLSError: "HTTPS web siteleri için TLS/SSL hatasını yoksay",
|
RetriesDescription: "Servisin kapalı olarak işaretlenmeden ve bir bildirim gönderilmeden önce maksimum yeniden deneme sayısı",
|
||||||
upsideDownModeDescription: "Servisin durumunu tersine çevirir. Servis çalışıyorsa kapalı olarak işaretler.",
|
IgnoreTlsError: "HTTPS web siteleri için TLS/SSL hatasını yoksay",
|
||||||
maxRedirectDescription: "İzlenecek maksimum yönlendirme sayısı. Yönlendirmeleri devre dışı bırakmak için 0'a ayarlayın.",
|
UpsideDownModeDescription: "Servisin durumunu tersine çevirir. Servis çalışıyorsa kapalı olarak işaretler.",
|
||||||
acceptedStatusCodesDescription: "Servisin çalıştığını hangi durum kodları belirlesin?",
|
MaxRedirectDescription: "İzlenecek maksimum yönlendirme sayısı. Yönlendirmeleri devre dışı bırakmak için 0'a ayarlayın.",
|
||||||
passwordNotMatchMsg: "Şifre eşleşmiyor.",
|
AcceptedStatusCodesDescription: "Servisin çalıştığını hangi durum kodları belirlesin?",
|
||||||
notificationDescription: "Servislerin bildirim gönderebilmesi için bir bildirim yöntemi belirleyin.",
|
PasswordNotMatchMsg: "Şifre eşleşmiyor.",
|
||||||
keywordDescription: "Anahtar kelimeyi düz html veya JSON yanıtında arayın ve büyük/küçük harfe duyarlıdır",
|
NotificationDescription: "Servislerin bildirim gönderebilmesi için bir bildirim yöntemi belirleyin.",
|
||||||
pauseDashboardHome: "Durdur",
|
KeywordDescription: "Anahtar kelimeyi düz html veya JSON yanıtında arayın ve büyük/küçük harfe duyarlıdır",
|
||||||
deleteMonitorMsg: "Servisi silmek istediğinden emin misin?",
|
PauseDashboardHome: "Durdur",
|
||||||
deleteNotificationMsg: "Bu bildirimi tüm servisler için silmek istediğinden emin misin?",
|
DeleteMonitorMsg: "Servisi silmek istediğinden emin misin?",
|
||||||
resoverserverDescription: "Cloudflare varsayılan sunucudur, çözümleyici sunucusunu istediğiniz zaman değiştirebilirsiniz.",
|
DeleteNotificationMsg: "Bu bildirimi tüm servisler için silmek istediğinden emin misin?",
|
||||||
rrtypeDescription: "İzlemek istediğiniz servisin RR-Tipini seçin",
|
ResoverserverDescription: "Cloudflare varsayılan sunucudur, çözümleyici sunucusunu istediğiniz zaman değiştirebilirsiniz.",
|
||||||
pauseMonitorMsg: "Durdurmak istediğinden emin misin?",
|
RrtypeDescription: "İzlemek istediğiniz servisin RR-Tipini seçin",
|
||||||
clearEventsMsg: "Bu servisin bütün kayıtlarını silmek istediğinden emin misin?",
|
PauseMonitorMsg: "Durdurmak istediğinden emin misin?",
|
||||||
clearHeartbeatsMsg: "Bu servis için tüm sağlık durumunu silmek istediğinden emin misin?",
|
EnableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
||||||
confirmClearStatisticsMsg: "Tüm istatistikleri silmek istediğinden emin misin?",
|
ClearEventsMsg: "Bu servisin bütün kayıtlarını silmek istediğinden emin misin?",
|
||||||
Settings: "Ayarlar",
|
ClearHeartbeatsMsg: "Bu servis için tüm sağlık durumunu silmek istediğinden emin misin?",
|
||||||
Dashboard: "Panel",
|
ConfirmClearStatisticsMsg: "Tüm istatistikleri silmek istediğinden emin misin?",
|
||||||
"New Update": "Yeni Güncelleme",
|
ImportHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
||||||
Language: "Dil",
|
ConfirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
||||||
Appearance: "Görünüm",
|
TwoFaVerifyLabel: "Please type in your token to verify that 2FA is working",
|
||||||
Theme: "Tema",
|
TokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
||||||
General: "Genel",
|
ConfirmEnableTwoFaMsg: "Are you sure you want to enable 2FA?",
|
||||||
Version: "Versiyon",
|
ConfirmDisableTwoFaMsg: "Are you sure you want to disable 2FA?",
|
||||||
"Check Update On GitHub": "GitHub'da Güncellemeyi Kontrol Edin",
|
NewUpdate: "Yeni Güncelleme",
|
||||||
List: "Liste",
|
CheckUpdateOnGitHub: "GitHub'da Güncellemeyi Kontrol Edin",
|
||||||
Add: "Ekle",
|
AddNewMonitor: "Yeni Servis Ekle",
|
||||||
"Add New Monitor": "Yeni Servis Ekle",
|
QuickStats: "Servis istatistikleri",
|
||||||
"Quick Stats": "Servis istatistikleri",
|
NoImportantEvents: "Önemli olay yok",
|
||||||
Up: "Normal",
|
CertExp: "Sertifika Süresi",
|
||||||
Down: "Hatalı",
|
Days: "günler",
|
||||||
Pending: "Bekliyor",
|
Day: "gün",
|
||||||
Unknown: "Bilinmeyen",
|
Hour: "saat",
|
||||||
Pause: "Durdur",
|
MonitorType: "Servis Tipi",
|
||||||
Name: "Servis ismi",
|
FriendlyName: "Panelde görünecek isim",
|
||||||
Status: "Durum",
|
Url: "URL",
|
||||||
DateTime: "Zaman",
|
HeartbeatInterval: "Servis Test Aralığı",
|
||||||
Message: "Mesaj",
|
HeartbeatRetryInterval: "Heartbeat Retry Interval",
|
||||||
"No important events": "Önemli olay yok",
|
UpsideDownMode: "Ters/Düz Modu",
|
||||||
Resume: "Devam et",
|
MaxRedirects: "Maksimum Yönlendirme",
|
||||||
Edit: "Düzenle",
|
AcceptedStatusCodes: "Kabul Edilen Durum Kodları",
|
||||||
Delete: "Sil",
|
NotAvailablePleaseSetup: "Atanmış bildirim yöntemi yok. Ayarlardan belirleyebilirsiniz.",
|
||||||
Current: "Şu anda",
|
SetupNotification: "Bildirim yöntemi kur",
|
||||||
Uptime: "Çalışma zamanı",
|
ThemeHeartbeatBar: "Servis Bar Konumu",
|
||||||
"Cert Exp.": "Sertifika Süresi",
|
SearchEngineVisibility: "Arama Motoru Görünürlüğü",
|
||||||
days: "günler",
|
AllowIndexing: "İndekslemeye izin ver",
|
||||||
day: "gün",
|
DiscourageSearchEnginesFromIndexingSite: "İndekslemeyi reddet",
|
||||||
DaysInMonth: "30-gün",
|
ChangePassword: "Şifre Değiştir",
|
||||||
hour: "saat",
|
CurrentPassword: "Şuan ki Şifre",
|
||||||
HoursInDay: "24-saat",
|
NewPassword: "Yeni Şifre",
|
||||||
Response: "Cevap Süresi",
|
RepeatNewPassword: "Yeni Şifreyi Tekrar Girin",
|
||||||
Ping: "Ping",
|
UpdatePassword: "Şifreyi Değiştir",
|
||||||
"Monitor Type": "Servis Tipi",
|
DisableAuth: "Şifreli girişi iptal et.",
|
||||||
Keyword: "Anahtar Kelime",
|
EnableAuth: "Şifreli girişi aktif et.",
|
||||||
"Friendly Name": "Panelde görünecek isim",
|
IUnderstandPleaseDisable: "Evet farkındayım, iptal et",
|
||||||
URL: "URL",
|
RememberMe: "Beni Hatırla",
|
||||||
Hostname: "IP Adresi",
|
NoMonitorsPlease: "Servis yok, lütfen",
|
||||||
Port: "Port",
|
AddOne: "bir servis ekleyin",
|
||||||
"Heartbeat Interval": "Servis Test Aralığı",
|
NotificationType: "Bildirim Yöntemi",
|
||||||
Retries: "Yeniden deneme",
|
CertificateInfo: "Sertifika Bilgisi",
|
||||||
Advanced: "Gelişmiş",
|
ResolverServer: "Çözümleyici Sunucu",
|
||||||
"Upside Down Mode": "Ters/Düz Modu",
|
ResourceRecordType: "Kaynak Kayıt Türü",
|
||||||
"Max. Redirects": "Maksimum Yönlendirme",
|
LastResult: "En son sonuçlar",
|
||||||
"Accepted Status Codes": "Kabul Edilen Durum Kodları",
|
CreateYourAdminAccount: "Yönetici hesabınızı oluşturun",
|
||||||
Save: "Kaydet",
|
RepeatPassword: "Şifrenizi tekrar girin",
|
||||||
Notifications: "Bildirimler",
|
ImportBackup: "Import Backup",
|
||||||
"Not available, please setup.": "Atanmış bildirim yöntemi yok. Ayarlardan belirleyebilirsiniz.",
|
ExportBackup: "Export Backup",
|
||||||
"Setup Notification": "Bildirim yöntemi kur",
|
RespTime: "Cevap Süresi (ms)",
|
||||||
Light: "Açık",
|
NotAvailableShort: "N/A",
|
||||||
Dark: "Koyu",
|
DefaultEnabled: "Default enabled",
|
||||||
Auto: "Oto",
|
ApplyOnAllExistingMonitors: "Apply on all existing monitors",
|
||||||
"Theme - Heartbeat Bar": "Servis Bar Konumu",
|
ClearData: "Verileri Temizle",
|
||||||
Normal: "Normal",
|
AutoGet: "Otomatik Al",
|
||||||
Bottom: "Aşağıda",
|
BackupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
||||||
None: "Gösterme",
|
BackupDescription2: "PS: History and event data is not included.",
|
||||||
Timezone: "Zaman Dilimi",
|
BackupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
||||||
"Search Engine Visibility": "Arama Motoru Görünürlüğü",
|
AlertNoFile: "Please select a file to import.",
|
||||||
"Allow indexing": "İndekslemeye izin ver",
|
AlertWrongFileType: "Please select a JSON file.",
|
||||||
"Discourage search engines from indexing site": "İndekslemeyi reddet",
|
ClearAllStatistics: "Clear all Statistics",
|
||||||
"Change Password": "Şifre Değiştir",
|
SkipExisting: "Skip existing",
|
||||||
"Current Password": "Şuan ki Şifre",
|
KeepBoth: "Keep both",
|
||||||
"New Password": "Yeni Şifre",
|
VerifyToken: "Verify Token",
|
||||||
"Repeat New Password": "Yeni Şifreyi Tekrar Girin",
|
Setup2Fa: "Setup 2FA",
|
||||||
"Update Password": "Şifreyi Değiştir",
|
Enable2Fa: "Enable 2FA",
|
||||||
"Disable Auth": "Şifreli girişi iptal et.",
|
Disable2Fa: "Disable 2FA",
|
||||||
"Enable Auth": "Şifreli girişi aktif et.",
|
TwoFaSettings: "2FA Settings",
|
||||||
Logout: "Çıkış yap",
|
TwoFactorAuthentication: "Two Factor Authentication",
|
||||||
Leave: "Ayrıl",
|
ShowUri: "Show URI",
|
||||||
"I understand, please disable": "Evet farkındayım, iptal et",
|
AddNewBelowOrSelect: "Add New below or Select...",
|
||||||
Confirm: "Onayla",
|
TagWithThisNameAlreadyExist: "Tag with this name already exist.",
|
||||||
Yes: "Evet",
|
TagWithThisValueAlreadyExist: "Tag with this value already exist.",
|
||||||
No: "Hayır",
|
Color: "color",
|
||||||
Username: "Kullanıcı Adı",
|
ValueOptional: "value (optional)",
|
||||||
Password: "Şifre",
|
Search: "Search...",
|
||||||
"Remember me": "Beni Hatırla",
|
AvgPing: "Avg. Ping",
|
||||||
Login: "Giriş yap",
|
AvgResponse: "Avg. Response",
|
||||||
"No Monitors, please": "Servis yok, lütfen",
|
EntryPage: "Entry Page",
|
||||||
"add one": "bir servis ekleyin",
|
StatusPageNothing: "Nothing here, please add a group or a monitor.",
|
||||||
"Notification Type": "Bildirim Yöntemi",
|
NoServices: "No Services",
|
||||||
Email: "E-mail",
|
AllSystemsOperational: "All Systems Operational",
|
||||||
Test: "Test",
|
PartiallyDegradedService: "Partially Degraded Service",
|
||||||
"Certificate Info": "Sertifika Bilgisi",
|
DegradedService: "Degraded Service",
|
||||||
"Resolver Server": "Çözümleyici Sunucu",
|
AddGroup: "Add Group",
|
||||||
"Resource Record Type": "Kaynak Kayıt Türü",
|
AddAMonitor: "Add a monitor",
|
||||||
"Last Result": "En son sonuçlar",
|
EditStatusPage: "Edit Status Page",
|
||||||
"Create your admin account": "Yönetici hesabınızı oluşturun",
|
GoToDashboard: "Go to Dashboard",
|
||||||
"Repeat Password": "Şifrenizi tekrar girin",
|
Telegram: "Telegram",
|
||||||
respTime: "Cevap Süresi (ms)",
|
Webhook: "Webhook",
|
||||||
notAvailableShort: "N/A",
|
Smtp: "Email (SMTP)",
|
||||||
Create: "Yarat",
|
Discord: "Discord",
|
||||||
"Clear Data": "Verileri Temizle",
|
Teams: "Microsoft Teams",
|
||||||
Events: "Olaylar",
|
Signal: "Signal",
|
||||||
Heartbeats: "Sağlık Durumları",
|
Gotify: "Gotify",
|
||||||
"Auto Get": "Otomatik Al",
|
Slack: "Slack",
|
||||||
retryCheckEverySecond: "Retry every {0} seconds.",
|
RocketChat: "Rocket.chat",
|
||||||
enableDefaultNotificationDescription: "For every new monitor this notification will be enabled by default. You can still disable the notification separately for each monitor.",
|
Pushover: "Pushover",
|
||||||
importHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
Pushy: "Pushy",
|
||||||
confirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
Octopush: "Octopush",
|
||||||
twoFAVerifyLabel: "Please type in your token to verify that 2FA is working",
|
Lunasea: "LunaSea",
|
||||||
tokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
confirmEnableTwoFAMsg: "Are you sure you want to enable 2FA?",
|
Pushbullet: "Pushbullet",
|
||||||
confirmDisableTwoFAMsg: "Are you sure you want to disable 2FA?",
|
Line: "Line Messenger",
|
||||||
"Heartbeat Retry Interval": "Heartbeat Retry Interval",
|
Mattermost: "Mattermost"
|
||||||
"Import Backup": "Import Backup",
|
|
||||||
"Export Backup": "Export Backup",
|
|
||||||
Export: "Export",
|
|
||||||
Import: "Import",
|
|
||||||
"Default enabled": "Default enabled",
|
|
||||||
"Apply on all existing monitors": "Apply on all existing monitors",
|
|
||||||
backupDescription: "You can backup all monitors and all notifications into a JSON file.",
|
|
||||||
backupDescription2: "PS: History and event data is not included.",
|
|
||||||
backupDescription3: "Sensitive data such as notification tokens is included in the export file, please keep it carefully.",
|
|
||||||
alertNoFile: "Please select a file to import.",
|
|
||||||
alertWrongFileType: "Please select a JSON file.",
|
|
||||||
"Clear all statistics": "Clear all Statistics",
|
|
||||||
"Skip existing": "Skip existing",
|
|
||||||
Overwrite: "Overwrite",
|
|
||||||
Options: "Options",
|
|
||||||
"Keep both": "Keep both",
|
|
||||||
"Verify Token": "Verify Token",
|
|
||||||
"Setup 2FA": "Setup 2FA",
|
|
||||||
"Enable 2FA": "Enable 2FA",
|
|
||||||
"Disable 2FA": "Disable 2FA",
|
|
||||||
"2FA Settings": "2FA Settings",
|
|
||||||
"Two Factor Authentication": "Two Factor Authentication",
|
|
||||||
Active: "Active",
|
|
||||||
Inactive: "Inactive",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "Show URI",
|
|
||||||
Tags: "Tags",
|
|
||||||
"Add New below or Select...": "Add New below or Select...",
|
|
||||||
"Tag with this name already exist.": "Tag with this name already exist.",
|
|
||||||
"Tag with this value already exist.": "Tag with this value already exist.",
|
|
||||||
color: "color",
|
|
||||||
"value (optional)": "value (optional)",
|
|
||||||
Gray: "Gray",
|
|
||||||
Red: "Red",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Green",
|
|
||||||
Blue: "Blue",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Purple",
|
|
||||||
Pink: "Pink",
|
|
||||||
"Search...": "Search...",
|
|
||||||
"Avg. Ping": "Avg. Ping",
|
|
||||||
"Avg. Response": "Avg. Response",
|
|
||||||
"Entry Page": "Entry Page",
|
|
||||||
statusPageNothing: "Nothing here, please add a group or a monitor.",
|
|
||||||
"No Services": "No Services",
|
|
||||||
"All Systems Operational": "All Systems Operational",
|
|
||||||
"Partially Degraded Service": "Partially Degraded Service",
|
|
||||||
"Degraded Service": "Degraded Service",
|
|
||||||
"Add Group": "Add Group",
|
|
||||||
"Add a monitor": "Add a monitor",
|
|
||||||
"Edit Status Page": "Edit Status Page",
|
|
||||||
"Go to Dashboard": "Go to Dashboard",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "简体中文",
|
Also apply to existing monitors: "应用到所有监控项",
|
||||||
checkEverySecond: "检测频率 {0} 秒",
|
LanguageName: "简体中文",
|
||||||
retriesDescription: "最大重试失败次数",
|
CheckEverySecond: "检测频率 {0} 秒",
|
||||||
ignoreTLSError: "忽略HTTPS站点的证书错误",
|
RetryCheckEverySecond: "重试间隔 {0} 秒",
|
||||||
upsideDownModeDescription: "反向状态监控(状态码范围外为有效状态,反之为无效)",
|
RetriesDescription: "最大重试失败次数",
|
||||||
maxRedirectDescription: "最大重定向次数,设置为 0 禁止重定向",
|
IgnoreTlsError: "忽略HTTPS站点的证书错误",
|
||||||
acceptedStatusCodesDescription: "选择被视为成功响应的状态码",
|
UpsideDownModeDescription: "反向状态监控(状态码范围外为有效状态,反之为无效)",
|
||||||
passwordNotMatchMsg: "两次密码输入不一致",
|
MaxRedirectDescription: "最大重定向次数,设置为 0 禁止重定向",
|
||||||
notificationDescription: "请为监控项配置消息通知",
|
AcceptedStatusCodesDescription: "选择被视为成功响应的状态码",
|
||||||
keywordDescription: "检测响应内容中的关键字,区分大小写",
|
PasswordNotMatchMsg: "两次密码输入不一致",
|
||||||
pauseDashboardHome: "暂停",
|
NotificationDescription: "请为监控项配置消息通知",
|
||||||
deleteMonitorMsg: "确定要删除此监控吗?",
|
KeywordDescription: "检测响应内容中的关键字,区分大小写",
|
||||||
deleteNotificationMsg: "确定要删除此消息通知吗?这将对所有监控生效。",
|
PauseDashboardHome: "暂停",
|
||||||
resoverserverDescription: "可自定义要使用的DNS服务器",
|
DeleteMonitorMsg: "确定要删除此监控吗?",
|
||||||
rrtypeDescription: "选择要监控的资源记录类型",
|
DeleteNotificationMsg: "确定要删除此消息通知吗?这将对所有监控生效。",
|
||||||
pauseMonitorMsg: "确定要暂停吗?",
|
ResoverserverDescription: "可自定义要使用的DNS服务器",
|
||||||
Settings: "设置",
|
RrtypeDescription: "选择要监控的资源记录类型",
|
||||||
Dashboard: "仪表盘",
|
PauseMonitorMsg: "确定要暂停吗?",
|
||||||
"New Update": "有新版本更新",
|
EnableDefaultNotificationDescription: "新的监控项将默认启用,你也可以在每个监控项中分别设置",
|
||||||
Language: "语言",
|
ClearEventsMsg: "确定要删除此监控项的所有事件吗?",
|
||||||
Appearance: "外观设置",
|
ClearHeartbeatsMsg: "确定要删除此监控项的所有状态吗?",
|
||||||
Theme: "主题",
|
ConfirmClearStatisticsMsg: "确定要删除所有统计信息吗?",
|
||||||
General: "基本设置",
|
ImportHandleDescription: "如果想跳过同名的监控项或通知,请选择“跳过”;“覆盖”将删除所有现有的监控项和通知。",
|
||||||
Version: "Version",
|
ConfirmImportMsg: "确定要导入备份吗?请确保已经选择了正确的导入选项。",
|
||||||
"Check Update On GitHub": "检查更新",
|
TwoFaVerifyLabel: "请输入Token以验证2FA(二次验证)是否正常工作",
|
||||||
List: "列表",
|
TokenValidSettingsMsg: "Token有效!您现在可以保存2FA(二次验证)设置",
|
||||||
Add: "添加",
|
ConfirmEnableTwoFaMsg: "确定要启用2FA(二次验证)吗?",
|
||||||
"Add New Monitor": "创建监控项",
|
ConfirmDisableTwoFaMsg: "确定要禁用2FA(二次验证)吗?",
|
||||||
"Quick Stats": "状态速览",
|
NewUpdate: "有新版本更新",
|
||||||
Up: "正常",
|
CheckUpdateOnGitHub: "检查更新",
|
||||||
Down: "故障",
|
AddNewMonitor: "创建监控项",
|
||||||
Pending: "检测失败",
|
QuickStats: "状态速览",
|
||||||
Unknown: "未知",
|
NoImportantEvents: "暂无重要事件",
|
||||||
Pause: "暂停",
|
CertExp: "证书过期",
|
||||||
Name: "名称",
|
Days: "天",
|
||||||
Status: "状态",
|
Day: "天",
|
||||||
DateTime: "时间",
|
Hour: "小时",
|
||||||
Message: "事件",
|
MonitorType: "监控类型",
|
||||||
"No important events": "暂无重要事件",
|
FriendlyName: "自定义名称",
|
||||||
Resume: "恢复",
|
Url: "网址URL",
|
||||||
Edit: "修改",
|
HeartbeatInterval: "心跳间隔",
|
||||||
Delete: "删除",
|
HeartbeatRetryInterval: "心跳重试间隔",
|
||||||
Current: "当前",
|
UpsideDownMode: "反向监控",
|
||||||
Uptime: "可用率",
|
MaxRedirects: "重定向次数",
|
||||||
"Cert Exp.": "证书过期",
|
AcceptedStatusCodes: "有效状态码",
|
||||||
days: "天",
|
NotAvailablePleaseSetup: "无可用通道,请先设置",
|
||||||
day: "天",
|
SetupNotification: "设置通知",
|
||||||
DaysInMonth: "30-天",
|
ThemeHeartbeatBar: "状态显示",
|
||||||
hour: "小时",
|
SearchEngineVisibility: "搜索引擎设置",
|
||||||
HoursInDay: "24-小时",
|
AllowIndexing: "允许索引",
|
||||||
Response: "响应时长",
|
DiscourageSearchEnginesFromIndexingSite: "阻止搜索引擎索引网站",
|
||||||
Ping: "Ping",
|
ChangePassword: "修改密码",
|
||||||
"Monitor Type": "监控类型",
|
CurrentPassword: "当前密码",
|
||||||
Keyword: "关键字",
|
NewPassword: "新的密码",
|
||||||
"Friendly Name": "自定义名称",
|
RepeatNewPassword: "重复新的密码",
|
||||||
URL: "网址URL",
|
UpdatePassword: "更新密码",
|
||||||
Hostname: "主机名",
|
DisableAuth: "禁用身份验证",
|
||||||
Port: "端口号",
|
EnableAuth: "启用身份验证",
|
||||||
"Heartbeat Interval": "心跳间隔",
|
IUnderstandPleaseDisable: "我已了解,继续禁用",
|
||||||
Retries: "重试次数",
|
RememberMe: "记住登录",
|
||||||
Advanced: "高级选项",
|
NoMonitorsPlease: "还没有监控项,",
|
||||||
"Upside Down Mode": "反向监控",
|
AddOne: "点击新增",
|
||||||
"Max. Redirects": "重定向次数",
|
NotificationType: "消息类型",
|
||||||
"Accepted Status Codes": "有效状态码",
|
CertificateInfo: "证书信息",
|
||||||
Save: "保存",
|
ResolverServer: "解析服务器",
|
||||||
Notifications: "消息通知",
|
ResourceRecordType: "资源记录类型",
|
||||||
"Not available, please setup.": "无可用通道,请先设置",
|
LastResult: "Last Result",
|
||||||
"Setup Notification": "设置通知",
|
CreateYourAdminAccount: "创建管理员账号",
|
||||||
Light: "明亮",
|
RepeatPassword: "重复密码",
|
||||||
Dark: "黑暗",
|
ImportBackup: "导入备份",
|
||||||
Auto: "自动",
|
ExportBackup: "导出备份",
|
||||||
"Theme - Heartbeat Bar": "状态显示",
|
RespTime: "Resp. Time (ms)",
|
||||||
Normal: "正常显示",
|
NotAvailableShort: "N/A",
|
||||||
Bottom: "靠下显示",
|
DefaultEnabled: "默认开启",
|
||||||
None: "不显示",
|
ApplyOnAllExistingMonitors: "应用到所有监控项",
|
||||||
Timezone: "时区",
|
ClearData: "清除数据",
|
||||||
"Search Engine Visibility": "搜索引擎设置",
|
AutoGet: "自动获取",
|
||||||
"Allow indexing": "允许索引",
|
BackupDescription: "你可以将所有的监控项和消息通知备份到一个 JSON 文件中",
|
||||||
"Discourage search engines from indexing site": "阻止搜索引擎索引网站",
|
BackupDescription2: "注意: 不包括历史状态和事件数据",
|
||||||
"Change Password": "修改密码",
|
BackupDescription3: "导出的文件中可能包含敏感信息,如消息通知的 Token 信息,请小心存放!",
|
||||||
"Current Password": "当前密码",
|
AlertNoFile: "请选择一个文件导入",
|
||||||
"New Password": "新的密码",
|
AlertWrongFileType: "请选择一个 JSON 格式的文件",
|
||||||
"Repeat New Password": "重复新的密码",
|
ClearAllStatistics: "清除所有统计数据",
|
||||||
"Update Password": "更新密码",
|
SkipExisting: "跳过",
|
||||||
"Disable Auth": "禁用身份验证",
|
KeepBoth: "全部保留",
|
||||||
"Enable Auth": "启用身份验证",
|
VerifyToken: "验证Token",
|
||||||
Logout: "退出",
|
Setup2Fa: "设置2FA",
|
||||||
Leave: "离开",
|
Enable2Fa: "启用2FA",
|
||||||
"I understand, please disable": "我已了解,继续禁用",
|
Disable2Fa: "禁用2FA",
|
||||||
Confirm: "确认",
|
TwoFaSettings: "2FA设置",
|
||||||
Yes: "确定",
|
TwoFactorAuthentication: "双因素认证",
|
||||||
No: "取消",
|
ShowUri: "显示URI",
|
||||||
Username: "用户名",
|
AddNewBelowOrSelect: "在下面新增或选择...",
|
||||||
Password: "密码",
|
TagWithThisNameAlreadyExist: "相同名称的标签已存在",
|
||||||
"Remember me": "记住登录",
|
TagWithThisValueAlreadyExist: "相同内容的标签已存在",
|
||||||
Login: "登录",
|
Color: "颜色",
|
||||||
"No Monitors, please": "还没有监控项,",
|
ValueOptional: "值(可选)",
|
||||||
"add one": "点击新增",
|
Search: "搜索...",
|
||||||
"Notification Type": "消息类型",
|
AvgPing: "平均Ping",
|
||||||
Email: "邮件",
|
AvgResponse: "平均响应",
|
||||||
Test: "测试一下",
|
EntryPage: "入口页面",
|
||||||
"Certificate Info": "证书信息",
|
StatusPageNothing: "这里什么也没有,请添加一个分组或一个监控项。",
|
||||||
"Resolver Server": "解析服务器",
|
NoServices: "无服务",
|
||||||
"Resource Record Type": "资源记录类型",
|
AllSystemsOperational: "所有服务运行正常",
|
||||||
"Last Result": "Last Result",
|
PartiallyDegradedService: "部分服务出现故障",
|
||||||
"Create your admin account": "创建管理员账号",
|
DegradedService: "全部服务出现故障",
|
||||||
"Repeat Password": "重复密码",
|
AddGroup: "新建分组",
|
||||||
respTime: "Resp. Time (ms)",
|
AddAMonitor: "添加监控项",
|
||||||
notAvailableShort: "N/A",
|
EditStatusPage: "编辑状态页",
|
||||||
Create: "创建",
|
GoToDashboard: "前往仪表盘",
|
||||||
clearEventsMsg: "确定要删除此监控项的所有事件吗?",
|
Telegram: "Telegram",
|
||||||
clearHeartbeatsMsg: "确定要删除此监控项的所有状态吗?",
|
Webhook: "Webhook",
|
||||||
confirmClearStatisticsMsg: "确定要删除所有统计信息吗?",
|
Smtp: "Email (SMTP)",
|
||||||
"Clear Data": "清除数据",
|
Discord: "Discord",
|
||||||
Events: "事件",
|
Teams: "Microsoft Teams",
|
||||||
Heartbeats: "心跳",
|
Signal: "Signal",
|
||||||
"Auto Get": "自动获取",
|
Gotify: "Gotify",
|
||||||
enableDefaultNotificationDescription: "新的监控项将默认启用,你也可以在每个监控项中分别设置",
|
Slack: "Slack",
|
||||||
"Default enabled": "默认开启",
|
RocketChat: "Rocket.chat",
|
||||||
"Also apply to existing monitors": "应用到所有监控项",
|
Pushover: "Pushover",
|
||||||
Export: "导出",
|
Pushy: "Pushy",
|
||||||
Import: "导入",
|
Octopush: "Octopush",
|
||||||
backupDescription: "你可以将所有的监控项和消息通知备份到一个 JSON 文件中",
|
Lunasea: "LunaSea",
|
||||||
backupDescription2: "注意: 不包括历史状态和事件数据",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription3: "导出的文件中可能包含敏感信息,如消息通知的 Token 信息,请小心存放!",
|
Pushbullet: "Pushbullet",
|
||||||
alertNoFile: "请选择一个文件导入",
|
Line: "Line Messenger",
|
||||||
alertWrongFileType: "请选择一个 JSON 格式的文件",
|
Mattermost: "Mattermost"
|
||||||
twoFAVerifyLabel: "请输入Token以验证2FA(二次验证)是否正常工作",
|
|
||||||
tokenValidSettingsMsg: "Token有效!您现在可以保存2FA(二次验证)设置",
|
|
||||||
confirmEnableTwoFAMsg: "确定要启用2FA(二次验证)吗?",
|
|
||||||
confirmDisableTwoFAMsg: "确定要禁用2FA(二次验证)吗?",
|
|
||||||
"Apply on all existing monitors": "应用到所有监控项",
|
|
||||||
"Verify Token": "验证Token",
|
|
||||||
"Setup 2FA": "设置2FA",
|
|
||||||
"Enable 2FA": "启用2FA",
|
|
||||||
"Disable 2FA": "禁用2FA",
|
|
||||||
"2FA Settings": "2FA设置",
|
|
||||||
"Two Factor Authentication": "双因素认证",
|
|
||||||
Active: "有效",
|
|
||||||
Inactive: "无效",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "显示URI",
|
|
||||||
"Clear all statistics": "清除所有统计数据",
|
|
||||||
retryCheckEverySecond: "重试间隔 {0} 秒",
|
|
||||||
importHandleDescription: "如果想跳过同名的监控项或通知,请选择“跳过”;“覆盖”将删除所有现有的监控项和通知。",
|
|
||||||
confirmImportMsg: "确定要导入备份吗?请确保已经选择了正确的导入选项。",
|
|
||||||
"Heartbeat Retry Interval": "心跳重试间隔",
|
|
||||||
"Import Backup": "导入备份",
|
|
||||||
"Export Backup": "导出备份",
|
|
||||||
"Skip existing": "跳过",
|
|
||||||
Overwrite: "覆盖",
|
|
||||||
Options: "选项",
|
|
||||||
"Keep both": "全部保留",
|
|
||||||
Tags: "标签",
|
|
||||||
"Add New below or Select...": "在下面新增或选择...",
|
|
||||||
"Tag with this name already exist.": "相同名称的标签已存在",
|
|
||||||
"Tag with this value already exist.": "相同内容的标签已存在",
|
|
||||||
color: "颜色",
|
|
||||||
"value (optional)": "值(可选)",
|
|
||||||
Gray: "灰色",
|
|
||||||
Red: "红色",
|
|
||||||
Orange: "橙色",
|
|
||||||
Green: "绿色",
|
|
||||||
Blue: "蓝色",
|
|
||||||
Indigo: "靛蓝",
|
|
||||||
Purple: "紫色",
|
|
||||||
Pink: "粉色",
|
|
||||||
"Search...": "搜索...",
|
|
||||||
"Avg. Ping": "平均Ping",
|
|
||||||
"Avg. Response": "平均响应",
|
|
||||||
"Entry Page": "入口页面",
|
|
||||||
"statusPageNothing": "这里什么也没有,请添加一个分组或一个监控项。",
|
|
||||||
"No Services": "无服务",
|
|
||||||
"All Systems Operational": "所有服务运行正常",
|
|
||||||
"Partially Degraded Service": "部分服务出现故障",
|
|
||||||
"Degraded Service": "全部服务出现故障",
|
|
||||||
"Add Group": "新建分组",
|
|
||||||
"Add a monitor": "添加监控项",
|
|
||||||
"Edit Status Page": "编辑状态页",
|
|
||||||
"Go to Dashboard": "前往仪表盘",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,182 +1,129 @@
|
||||||
export default {
|
export default {
|
||||||
languageName: "繁體中文 (香港)",
|
Also apply to existing monitors: "同時取用至目前所有監測器",
|
||||||
Settings: "設定",
|
LanguageName: "繁體中文 (香港)",
|
||||||
Dashboard: "錶板",
|
CheckEverySecond: "每 {0} 秒檢查一次",
|
||||||
"New Update": "有更新",
|
RetryCheckEverySecond: "Retry every {0} seconds.",
|
||||||
Language: "語言",
|
RetriesDescription: "重試多少次後才判定為離線及傳送通知。如數值為 0 會即判定為離線及傳送通知。",
|
||||||
Appearance: "外觀",
|
IgnoreTlsError: "忽略 TLS/SSL 錯誤",
|
||||||
Theme: "主題",
|
UpsideDownModeDescription: "反轉狀態,如網址是可正常瀏覽,會被判定為 '離線/DOWN'",
|
||||||
General: "一般",
|
MaxRedirectDescription: "設為 0 即不跟蹤",
|
||||||
Version: "版本",
|
AcceptedStatusCodesDescription: "可多選",
|
||||||
"Check Update On GitHub": "到 Github 查看更新",
|
PasswordNotMatchMsg: "密碼不一致",
|
||||||
List: "列表",
|
NotificationDescription: "新增後,你需要在監測器裡啟用。",
|
||||||
Add: "新增",
|
KeywordDescription: "搜索 HTML 或 JSON 裡是否有出現關鍵字(注意英文大細階)",
|
||||||
"Add New Monitor": "新增監測器",
|
PauseDashboardHome: "暫停",
|
||||||
"Quick Stats": "綜合數據",
|
DeleteMonitorMsg: "是否確定刪除這個監測器",
|
||||||
Up: "上線",
|
DeleteNotificationMsg: "是否確定刪除這個通知設定?如監測器啟用了這個通知,將會收不到通知。",
|
||||||
Down: "離線",
|
ResoverserverDescription: "預設值為 Cloudflare DNS 伺服器,你可以轉用其他 DNS 伺服器。",
|
||||||
Pending: "待定",
|
RrtypeDescription: "請選擇 DNS 記錄類型",
|
||||||
Unknown: "不明",
|
PauseMonitorMsg: "是否確定暫停?",
|
||||||
Pause: "暫停",
|
EnableDefaultNotificationDescription: "新增監測器時這個通知會預設啟用,當然每個監測器亦可分別控制開關。",
|
||||||
pauseDashboardHome: "暫停",
|
ClearEventsMsg: "是否確定刪除這個監測器的所有事件?",
|
||||||
Name: "名稱",
|
ClearHeartbeatsMsg: "是否確定刪除這個監測器的所有脈搏資料?",
|
||||||
Status: "狀態",
|
ConfirmClearStatisticsMsg: "是否確定刪除所有監測器的脈搏資料?(您的監測器會繼續正常運作)",
|
||||||
DateTime: "日期時間",
|
ImportHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
||||||
Message: "內容",
|
ConfirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
||||||
"No important events": "沒有重要事件",
|
TwoFaVerifyLabel: "Please type in your token to verify that 2FA is working",
|
||||||
Resume: "恢復",
|
TokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
||||||
Edit: "編輯",
|
ConfirmEnableTwoFaMsg: "Are you sure you want to enable 2FA?",
|
||||||
Delete: "刪除",
|
ConfirmDisableTwoFaMsg: "Are you sure you want to disable 2FA?",
|
||||||
Current: "目前",
|
NewUpdate: "有更新",
|
||||||
Uptime: "上線率",
|
CheckUpdateOnGitHub: "到 Github 查看更新",
|
||||||
"Cert Exp.": "証書期限",
|
AddNewMonitor: "新增監測器",
|
||||||
days: "日",
|
QuickStats: "綜合數據",
|
||||||
day: "日",
|
NoImportantEvents: "沒有重要事件",
|
||||||
DaysInMonth: "30日",
|
CertExp: "証書期限",
|
||||||
hour: "小時",
|
Days: "日",
|
||||||
HoursInDay: "24小時",
|
Day: "日",
|
||||||
checkEverySecond: "每 {0} 秒檢查一次",
|
Hour: "小時",
|
||||||
Response: "反應時間",
|
MonitorType: "監測器類型",
|
||||||
Ping: "反應時間",
|
FriendlyName: "名稱",
|
||||||
"Monitor Type": "監測器類型",
|
Url: "網址 URL",
|
||||||
Keyword: "關鍵字",
|
HeartbeatInterval: "檢查間距",
|
||||||
"Friendly Name": "名稱",
|
HeartbeatRetryInterval: "Heartbeat Retry Interval",
|
||||||
URL: "網址 URL",
|
UpsideDownMode: "反轉模式",
|
||||||
Hostname: "Hostname",
|
MaxRedirects: "跟隨重新導向 (Redirect) 的次數",
|
||||||
Port: "Port",
|
AcceptedStatusCodes: "接受為上線的 HTTP 狀態碼",
|
||||||
"Heartbeat Interval": "檢查間距",
|
NotAvailablePleaseSetup: "無法使用,需要設定",
|
||||||
Retries: "重試數次確定為離線",
|
SetupNotification: "設定通知",
|
||||||
retriesDescription: "重試多少次後才判定為離線及傳送通知。如數值為 0 會即判定為離線及傳送通知。",
|
ThemeHeartbeatBar: "監測器列表 狀態條外觀",
|
||||||
Advanced: "進階",
|
SearchEngineVisibility: "是否允許搜尋器索引",
|
||||||
ignoreTLSError: "忽略 TLS/SSL 錯誤",
|
AllowIndexing: "允許索引",
|
||||||
"Upside Down Mode": "反轉模式",
|
DiscourageSearchEnginesFromIndexingSite: "不建議搜尋器索引",
|
||||||
upsideDownModeDescription: "反轉狀態,如網址是可正常瀏覽,會被判定為 '離線/DOWN'",
|
ChangePassword: "變更密碼",
|
||||||
"Max. Redirects": "跟隨重新導向 (Redirect) 的次數",
|
CurrentPassword: "目前密碼",
|
||||||
maxRedirectDescription: "設為 0 即不跟蹤",
|
NewPassword: "新密碼",
|
||||||
"Accepted Status Codes": "接受為上線的 HTTP 狀態碼",
|
RepeatNewPassword: "確認新密碼",
|
||||||
acceptedStatusCodesDescription: "可多選",
|
UpdatePassword: "更新密碼",
|
||||||
Save: "儲存",
|
DisableAuth: "取消登入認証",
|
||||||
Notifications: "通知",
|
EnableAuth: "開啟登入認証",
|
||||||
"Not available, please setup.": "無法使用,需要設定",
|
IUnderstandPleaseDisable: "我明白,請取消登入認証",
|
||||||
"Setup Notification": "設定通知",
|
RememberMe: "記住我",
|
||||||
Light: "明亮",
|
NoMonitorsPlease: "沒有監測器,請",
|
||||||
Dark: "暗黑",
|
AddOne: "新增",
|
||||||
Auto: "自動",
|
NotificationType: "通知類型",
|
||||||
"Theme - Heartbeat Bar": "監測器列表 狀態條外觀",
|
CertificateInfo: "憑證詳細資料",
|
||||||
Normal: "一般",
|
ResolverServer: "DNS 伺服器",
|
||||||
Bottom: "下方",
|
ResourceRecordType: "DNS 記錄類型",
|
||||||
None: "沒有",
|
LastResult: "最後結果",
|
||||||
Timezone: "時區",
|
CreateYourAdminAccount: "製作你的管理員帳號",
|
||||||
"Search Engine Visibility": "是否允許搜尋器索引",
|
RepeatPassword: "重複密碼",
|
||||||
"Allow indexing": "允許索引",
|
ImportBackup: "Import Backup",
|
||||||
"Discourage search engines from indexing site": "不建議搜尋器索引",
|
ExportBackup: "Export Backup",
|
||||||
"Change Password": "變更密碼",
|
RespTime: "反應時間 (ms)",
|
||||||
"Current Password": "目前密碼",
|
NotAvailableShort: "N/A",
|
||||||
"New Password": "新密碼",
|
DefaultEnabled: "預設通知",
|
||||||
"Repeat New Password": "確認新密碼",
|
ApplyOnAllExistingMonitors: "套用至目前所有監測器",
|
||||||
passwordNotMatchMsg: "密碼不一致",
|
ClearData: "清除資料",
|
||||||
"Update Password": "更新密碼",
|
AutoGet: "自動獲取",
|
||||||
"Disable Auth": "取消登入認証",
|
BackupDescription: "您可以備份所有監測器及所有通知。",
|
||||||
"Enable Auth": "開啟登入認証",
|
BackupDescription2: "註:此備份不包括歷史記錄。",
|
||||||
Logout: "登出",
|
BackupDescription3: "此備份可能包含了一些敏感資料如通知裡的 Token,請小心保存備份。",
|
||||||
notificationDescription: "新增後,你需要在監測器裡啟用。",
|
AlertNoFile: "請選擇一個檔案",
|
||||||
Leave: "離開",
|
AlertWrongFileType: "請選擇 JSON 檔案",
|
||||||
"I understand, please disable": "我明白,請取消登入認証",
|
ClearAllStatistics: "清除所有歷史記錄",
|
||||||
Confirm: "確認",
|
SkipExisting: "Skip existing",
|
||||||
Yes: "是",
|
KeepBoth: "Keep both",
|
||||||
No: "否",
|
VerifyToken: "驗証 Token",
|
||||||
Username: "帳號",
|
Setup2Fa: "設定 2FA",
|
||||||
Password: "密碼",
|
Enable2Fa: "開啟 2FA",
|
||||||
"Remember me": "記住我",
|
Disable2Fa: "關閉 2FA",
|
||||||
Login: "登入",
|
TwoFaSettings: "2FA 設定",
|
||||||
"No Monitors, please": "沒有監測器,請",
|
TwoFactorAuthentication: "雙重認證",
|
||||||
"add one": "新增",
|
ShowUri: "顯示 URI",
|
||||||
"Notification Type": "通知類型",
|
AddNewBelowOrSelect: "Add New below or Select...",
|
||||||
Email: "電郵",
|
TagWithThisNameAlreadyExist: "Tag with this name already exist.",
|
||||||
Test: "測試",
|
TagWithThisValueAlreadyExist: "Tag with this value already exist.",
|
||||||
keywordDescription: "搜索 HTML 或 JSON 裡是否有出現關鍵字(注意英文大細階)",
|
Color: "color",
|
||||||
"Certificate Info": "憑證詳細資料",
|
ValueOptional: "value (optional)",
|
||||||
deleteMonitorMsg: "是否確定刪除這個監測器",
|
Search: "Search...",
|
||||||
deleteNotificationMsg: "是否確定刪除這個通知設定?如監測器啟用了這個通知,將會收不到通知。",
|
AvgPing: "Avg. Ping",
|
||||||
"Resolver Server": "DNS 伺服器",
|
AvgResponse: "Avg. Response",
|
||||||
"Resource Record Type": "DNS 記錄類型",
|
EntryPage: "Entry Page",
|
||||||
resoverserverDescription: "預設值為 Cloudflare DNS 伺服器,你可以轉用其他 DNS 伺服器。",
|
StatusPageNothing: "Nothing here, please add a group or a monitor.",
|
||||||
rrtypeDescription: "請選擇 DNS 記錄類型",
|
NoServices: "No Services",
|
||||||
pauseMonitorMsg: "是否確定暫停?",
|
AllSystemsOperational: "All Systems Operational",
|
||||||
"Last Result": "最後結果",
|
PartiallyDegradedService: "Partially Degraded Service",
|
||||||
"Create your admin account": "製作你的管理員帳號",
|
DegradedService: "Degraded Service",
|
||||||
"Repeat Password": "重複密碼",
|
AddGroup: "Add Group",
|
||||||
respTime: "反應時間 (ms)",
|
AddAMonitor: "Add a monitor",
|
||||||
notAvailableShort: "N/A",
|
EditStatusPage: "Edit Status Page",
|
||||||
Create: "建立",
|
GoToDashboard: "Go to Dashboard",
|
||||||
clearEventsMsg: "是否確定刪除這個監測器的所有事件?",
|
Telegram: "Telegram",
|
||||||
clearHeartbeatsMsg: "是否確定刪除這個監測器的所有脈搏資料?",
|
Webhook: "Webhook",
|
||||||
confirmClearStatisticsMsg: "是否確定刪除所有監測器的脈搏資料?(您的監測器會繼續正常運作)",
|
Smtp: "Email (SMTP)",
|
||||||
"Clear Data": "清除資料",
|
Discord: "Discord",
|
||||||
Events: "事件",
|
Teams: "Microsoft Teams",
|
||||||
Heartbeats: "脈搏",
|
Signal: "Signal",
|
||||||
"Auto Get": "自動獲取",
|
Gotify: "Gotify",
|
||||||
enableDefaultNotificationDescription: "新增監測器時這個通知會預設啟用,當然每個監測器亦可分別控制開關。",
|
Slack: "Slack",
|
||||||
"Default enabled": "預設通知",
|
RocketChat: "Rocket.chat",
|
||||||
"Also apply to existing monitors": "同時取用至目前所有監測器",
|
Pushover: "Pushover",
|
||||||
Export: "匯出",
|
Pushy: "Pushy",
|
||||||
Import: "匯入",
|
Octopush: "Octopush",
|
||||||
backupDescription: "您可以備份所有監測器及所有通知。",
|
Lunasea: "LunaSea",
|
||||||
backupDescription2: "註:此備份不包括歷史記錄。",
|
Apprise: "Apprise (Support 50+ Notification services)",
|
||||||
backupDescription3: "此備份可能包含了一些敏感資料如通知裡的 Token,請小心保存備份。",
|
Pushbullet: "Pushbullet",
|
||||||
alertNoFile: "請選擇一個檔案",
|
Line: "Line Messenger",
|
||||||
alertWrongFileType: "請選擇 JSON 檔案",
|
Mattermost: "Mattermost"
|
||||||
twoFAVerifyLabel: "Please type in your token to verify that 2FA is working",
|
|
||||||
tokenValidSettingsMsg: "Token is valid! You can now save the 2FA settings.",
|
|
||||||
confirmEnableTwoFAMsg: "Are you sure you want to enable 2FA?",
|
|
||||||
confirmDisableTwoFAMsg: "Are you sure you want to disable 2FA?",
|
|
||||||
"Apply on all existing monitors": "套用至目前所有監測器",
|
|
||||||
"Verify Token": "驗証 Token",
|
|
||||||
"Setup 2FA": "設定 2FA",
|
|
||||||
"Enable 2FA": "開啟 2FA",
|
|
||||||
"Disable 2FA": "關閉 2FA",
|
|
||||||
"2FA Settings": "2FA 設定",
|
|
||||||
"Two Factor Authentication": "雙重認證",
|
|
||||||
Active: "生效",
|
|
||||||
Inactive: "未生效",
|
|
||||||
Token: "Token",
|
|
||||||
"Show URI": "顯示 URI",
|
|
||||||
"Clear all statistics": "清除所有歷史記錄",
|
|
||||||
retryCheckEverySecond: "Retry every {0} seconds.",
|
|
||||||
importHandleDescription: "Choose 'Skip existing' if you want to skip every monitor or notification with the same name. 'Overwrite' will delete every existing monitor and notification.",
|
|
||||||
confirmImportMsg: "Are you sure to import the backup? Please make sure you've selected the right import option.",
|
|
||||||
"Heartbeat Retry Interval": "Heartbeat Retry Interval",
|
|
||||||
"Import Backup": "Import Backup",
|
|
||||||
"Export Backup": "Export Backup",
|
|
||||||
"Skip existing": "Skip existing",
|
|
||||||
Overwrite: "Overwrite",
|
|
||||||
Options: "Options",
|
|
||||||
"Keep both": "Keep both",
|
|
||||||
Tags: "Tags",
|
|
||||||
"Add New below or Select...": "Add New below or Select...",
|
|
||||||
"Tag with this name already exist.": "Tag with this name already exist.",
|
|
||||||
"Tag with this value already exist.": "Tag with this value already exist.",
|
|
||||||
color: "color",
|
|
||||||
"value (optional)": "value (optional)",
|
|
||||||
Gray: "Gray",
|
|
||||||
Red: "Red",
|
|
||||||
Orange: "Orange",
|
|
||||||
Green: "Green",
|
|
||||||
Blue: "Blue",
|
|
||||||
Indigo: "Indigo",
|
|
||||||
Purple: "Purple",
|
|
||||||
Pink: "Pink",
|
|
||||||
"Search...": "Search...",
|
|
||||||
"Avg. Ping": "Avg. Ping",
|
|
||||||
"Avg. Response": "Avg. Response",
|
|
||||||
"Entry Page": "Entry Page",
|
|
||||||
statusPageNothing: "Nothing here, please add a group or a monitor.",
|
|
||||||
"No Services": "No Services",
|
|
||||||
"All Systems Operational": "All Systems Operational",
|
|
||||||
"Partially Degraded Service": "Partially Degraded Service",
|
|
||||||
"Degraded Service": "Degraded Service",
|
|
||||||
"Add Group": "Add Group",
|
|
||||||
"Add a monitor": "Add a monitor",
|
|
||||||
"Edit Status Page": "Edit Status Page",
|
|
||||||
"Go to Dashboard": "Go to Dashboard",
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
</router-link>
|
</router-link>
|
||||||
|
|
||||||
<a v-if="hasNewVersion" target="_blank" href="https://github.com/louislam/uptime-kuma/releases" class="btn btn-info me-3">
|
<a v-if="hasNewVersion" target="_blank" href="https://github.com/louislam/uptime-kuma/releases" class="btn btn-info me-3">
|
||||||
<font-awesome-icon icon="arrow-alt-circle-up" /> {{ $t("New Update") }}
|
<font-awesome-icon icon="arrow-alt-circle-up" /> {{ $t("NewUpdate") }}
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<ul class="nav nav-pills">
|
<ul class="nav nav-pills">
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div v-if="! $root.isMobile" class="col-12 col-md-5 col-xl-4">
|
<div v-if="! $root.isMobile" class="col-12 col-md-5 col-xl-4">
|
||||||
<div>
|
<div>
|
||||||
<router-link to="/add" class="btn btn-primary mb-3"><font-awesome-icon icon="plus" /> {{ $t("Add New Monitor") }}</router-link>
|
<router-link to="/add" class="btn btn-primary mb-3"><font-awesome-icon icon="plus" /> {{ $t("AddNewMonitor") }}</router-link>
|
||||||
</div>
|
</div>
|
||||||
<MonitorList :scrollbar="true" />
|
<MonitorList :scrollbar="true" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<transition name="slide-fade" appear>
|
<transition name="slide-fade" appear>
|
||||||
<div v-if="$route.name === 'DashboardHome'">
|
<div v-if="$route.name === 'DashboardHome'">
|
||||||
<h1 class="mb-3">
|
<h1 class="mb-3">
|
||||||
{{ $t("Quick Stats") }}
|
{{ $t("QuickStats") }}
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<div class="shadow-box big-padding text-center mb-4">
|
<div class="shadow-box big-padding text-center mb-4">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<span class="num text-secondary">{{ stats.unknown }}</span>
|
<span class="num text-secondary">{{ stats.unknown }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<h3>{{ $t("pauseDashboardHome") }}</h3>
|
<h3>{{ $t("PauseDashboardHome") }}</h3>
|
||||||
<span class="num text-secondary">{{ stats.pause }}</span>
|
<span class="num text-secondary">{{ stats.pause }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
|
|
||||||
<tr v-if="importantHeartBeatList.length === 0">
|
<tr v-if="importantHeartBeatList.length === 0">
|
||||||
<td colspan="4">
|
<td colspan="4">
|
||||||
{{ $t("No important events") }}
|
{{ $t("NoImportantEvents") }}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
</span>
|
</span>
|
||||||
<span v-if="monitor.type === 'dns'">[{{ monitor.dns_resolve_type }}] {{ monitor.hostname }}
|
<span v-if="monitor.type === 'dns'">[{{ monitor.dns_resolve_type }}] {{ monitor.hostname }}
|
||||||
<br>
|
<br>
|
||||||
<span>{{ $t("Last Result") }}:</span> <span class="keyword">{{ monitor.dns_last_result }}</span>
|
<span>{{ $t("LastResult") }}:</span> <span class="keyword">{{ monitor.dns_last_result }}</span>
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -74,10 +74,10 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="tlsInfo" class="col">
|
<div v-if="tlsInfo" class="col">
|
||||||
<h4>{{ $t("Cert Exp.") }}</h4>
|
<h4>{{ $t("CertExp") }}</h4>
|
||||||
<p>(<Datetime :value="tlsInfo.certInfo.validTo" date-only />)</p>
|
<p>(<Datetime :value="tlsInfo.certInfo.validTo" date-only />)</p>
|
||||||
<span class="num">
|
<span class="num">
|
||||||
<a href="#" @click.prevent="toggleCertInfoBox = !toggleCertInfoBox">{{ tlsInfo.certInfo.daysRemaining }} {{ $t("days") }}</a>
|
<a href="#" @click.prevent="toggleCertInfoBox = !toggleCertInfoBox">{{ tlsInfo.certInfo.daysRemaining }} {{ $t("Days") }}</a>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
<div class="shadow-box table-shadow-box">
|
<div class="shadow-box table-shadow-box">
|
||||||
<div class="dropdown dropdown-clear-data">
|
<div class="dropdown dropdown-clear-data">
|
||||||
<button class="btn btn-sm btn-outline-danger dropdown-toggle" type="button" data-bs-toggle="dropdown">
|
<button class="btn btn-sm btn-outline-danger dropdown-toggle" type="button" data-bs-toggle="dropdown">
|
||||||
<font-awesome-icon icon="trash" /> {{ $t("Clear Data") }}
|
<font-awesome-icon icon="trash" /> {{ $t("ClearData") }}
|
||||||
</button>
|
</button>
|
||||||
<ul class="dropdown-menu dropdown-menu-end">
|
<ul class="dropdown-menu dropdown-menu-end">
|
||||||
<li>
|
<li>
|
||||||
|
@ -136,7 +136,7 @@
|
||||||
|
|
||||||
<tr v-if="importantHeartBeatList.length === 0">
|
<tr v-if="importantHeartBeatList.length === 0">
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
{{ $t("No important events") }}
|
{{ $t("NoImportantEvents") }}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@ -153,19 +153,19 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Confirm ref="confirmPause" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="pauseMonitor">
|
<Confirm ref="confirmPause" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="pauseMonitor">
|
||||||
{{ $t("pauseMonitorMsg") }}
|
{{ $t("PauseMonitorMsg") }}
|
||||||
</Confirm>
|
</Confirm>
|
||||||
|
|
||||||
<Confirm ref="confirmDelete" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="deleteMonitor">
|
<Confirm ref="confirmDelete" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="deleteMonitor">
|
||||||
{{ $t("deleteMonitorMsg") }}
|
{{ $t("DeleteMonitorMsg") }}
|
||||||
</Confirm>
|
</Confirm>
|
||||||
|
|
||||||
<Confirm ref="confirmClearEvents" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="clearEvents">
|
<Confirm ref="confirmClearEvents" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="clearEvents">
|
||||||
{{ $t("clearEventsMsg") }}
|
{{ $t("ClearEventsMsg") }}
|
||||||
</Confirm>
|
</Confirm>
|
||||||
|
|
||||||
<Confirm ref="confirmClearHeartbeats" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="clearHeartbeats">
|
<Confirm ref="confirmClearHeartbeats" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="clearHeartbeats">
|
||||||
{{ $t("clearHeartbeatsMsg") }}
|
{{ $t("ClearHeartbeatsMsg") }}
|
||||||
</Confirm>
|
</Confirm>
|
||||||
</div>
|
</div>
|
||||||
</transition>
|
</transition>
|
||||||
|
@ -240,7 +240,7 @@ export default {
|
||||||
return this.lastHeartBeat.ping;
|
return this.lastHeartBeat.ping;
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.$t("notAvailableShort");
|
return this.$t("NotAvailableShort");
|
||||||
},
|
},
|
||||||
|
|
||||||
avgPing() {
|
avgPing() {
|
||||||
|
@ -248,7 +248,7 @@ export default {
|
||||||
return this.$root.avgPingList[this.monitor.id];
|
return this.$root.avgPingList[this.monitor.id];
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.$t("notAvailableShort");
|
return this.$t("NotAvailableShort");
|
||||||
},
|
},
|
||||||
|
|
||||||
importantHeartBeatList() {
|
importantHeartBeatList() {
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<h2 class="mb-2">{{ $t("General") }}</h2>
|
<h2 class="mb-2">{{ $t("General") }}</h2>
|
||||||
|
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="type" class="form-label">{{ $t("Monitor Type") }}</label>
|
<label for="type" class="form-label">{{ $t("MonitorType") }}</label>
|
||||||
<select id="type" v-model="monitor.type" class="form-select">
|
<select id="type" v-model="monitor.type" class="form-select">
|
||||||
<option value="http">
|
<option value="http">
|
||||||
HTTP(s)
|
HTTP(s)
|
||||||
|
@ -34,13 +34,13 @@
|
||||||
|
|
||||||
<!-- Friendly Name -->
|
<!-- Friendly Name -->
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="name" class="form-label">{{ $t("Friendly Name") }}</label>
|
<label for="name" class="form-label">{{ $t("FriendlyName") }}</label>
|
||||||
<input id="name" v-model="monitor.name" type="text" class="form-control" required>
|
<input id="name" v-model="monitor.name" type="text" class="form-control" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- URL -->
|
<!-- URL -->
|
||||||
<div v-if="monitor.type === 'http' || monitor.type === 'keyword' " class="my-3">
|
<div v-if="monitor.type === 'http' || monitor.type === 'keyword' " class="my-3">
|
||||||
<label for="url" class="form-label">{{ $t("URL") }}</label>
|
<label for="url" class="form-label">{{ $t("Url") }}</label>
|
||||||
<input id="url" v-model="monitor.url" type="url" class="form-control" pattern="https?://.+" required>
|
<input id="url" v-model="monitor.url" type="url" class="form-control" pattern="https?://.+" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
<label for="keyword" class="form-label">{{ $t("Keyword") }}</label>
|
<label for="keyword" class="form-label">{{ $t("Keyword") }}</label>
|
||||||
<input id="keyword" v-model="monitor.keyword" type="text" class="form-control" required>
|
<input id="keyword" v-model="monitor.keyword" type="text" class="form-control" required>
|
||||||
<div class="form-text">
|
<div class="form-text">
|
||||||
{{ $t("keywordDescription") }}
|
{{ $t("KeywordDescription") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -78,15 +78,15 @@
|
||||||
<!-- For DNS Type -->
|
<!-- For DNS Type -->
|
||||||
<template v-if="monitor.type === 'dns'">
|
<template v-if="monitor.type === 'dns'">
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="dns_resolve_server" class="form-label">{{ $t("Resolver Server") }}</label>
|
<label for="dns_resolve_server" class="form-label">{{ $t("ResolverServer") }}</label>
|
||||||
<input id="dns_resolve_server" v-model="monitor.dns_resolve_server" type="text" class="form-control" :pattern="ipRegex" required>
|
<input id="dns_resolve_server" v-model="monitor.dns_resolve_server" type="text" class="form-control" :pattern="ipRegex" required>
|
||||||
<div class="form-text">
|
<div class="form-text">
|
||||||
{{ $t("resoverserverDescription") }}
|
{{ $t("ResoverserverDescription") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="dns_resolve_type" class="form-label">{{ $t("Resource Record Type") }}</label>
|
<label for="dns_resolve_type" class="form-label">{{ $t("ResourceRecordType") }}</label>
|
||||||
|
|
||||||
<!-- :allow-empty="false" is not working, set a default value instead https://github.com/shentao/vue-multiselect/issues/336 -->
|
<!-- :allow-empty="false" is not working, set a default value instead https://github.com/shentao/vue-multiselect/issues/336 -->
|
||||||
<VueMultiselect
|
<VueMultiselect
|
||||||
|
@ -104,14 +104,14 @@
|
||||||
></VueMultiselect>
|
></VueMultiselect>
|
||||||
|
|
||||||
<div class="form-text">
|
<div class="form-text">
|
||||||
{{ $t("rrtypeDescription") }}
|
{{ $t("RrtypeDescription") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<!-- Interval -->
|
<!-- Interval -->
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="interval" class="form-label">{{ $t("Heartbeat Interval") }} ({{ $t("checkEverySecond", [ monitor.interval ]) }})</label>
|
<label for="interval" class="form-label">{{ $t("HeartbeatInterval") }} ({{ $t("checkEverySecond", [ monitor.interval ]) }})</label>
|
||||||
<input id="interval" v-model="monitor.interval" type="number" class="form-control" required min="20" step="1">
|
<input id="interval" v-model="monitor.interval" type="number" class="form-control" required min="20" step="1">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -119,13 +119,13 @@
|
||||||
<label for="maxRetries" class="form-label">{{ $t("Retries") }}</label>
|
<label for="maxRetries" class="form-label">{{ $t("Retries") }}</label>
|
||||||
<input id="maxRetries" v-model="monitor.maxretries" type="number" class="form-control" required min="0" step="1">
|
<input id="maxRetries" v-model="monitor.maxretries" type="number" class="form-control" required min="0" step="1">
|
||||||
<div class="form-text">
|
<div class="form-text">
|
||||||
{{ $t("retriesDescription") }}
|
{{ $t("RetriesDescription") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="retry-interval" class="form-label">
|
<label for="retry-interval" class="form-label">
|
||||||
{{ $t("Heartbeat Retry Interval") }}
|
{{ $t("HeartbeatRetryInterval") }}
|
||||||
<span>({{ $t("retryCheckEverySecond", [ monitor.retryInterval ]) }})</span>
|
<span>({{ $t("retryCheckEverySecond", [ monitor.retryInterval ]) }})</span>
|
||||||
</label>
|
</label>
|
||||||
<input id="retry-interval" v-model="monitor.retryInterval" type="number" class="form-control" required min="20" step="1">
|
<input id="retry-interval" v-model="monitor.retryInterval" type="number" class="form-control" required min="20" step="1">
|
||||||
|
@ -136,32 +136,32 @@
|
||||||
<div v-if="monitor.type === 'http' || monitor.type === 'keyword' " class="my-3 form-check">
|
<div v-if="monitor.type === 'http' || monitor.type === 'keyword' " class="my-3 form-check">
|
||||||
<input id="ignore-tls" v-model="monitor.ignoreTls" class="form-check-input" type="checkbox" value="">
|
<input id="ignore-tls" v-model="monitor.ignoreTls" class="form-check-input" type="checkbox" value="">
|
||||||
<label class="form-check-label" for="ignore-tls">
|
<label class="form-check-label" for="ignore-tls">
|
||||||
{{ $t("ignoreTLSError") }}
|
{{ $t("IgnoreTlsError") }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="my-3 form-check">
|
<div class="my-3 form-check">
|
||||||
<input id="upside-down" v-model="monitor.upsideDown" class="form-check-input" type="checkbox">
|
<input id="upside-down" v-model="monitor.upsideDown" class="form-check-input" type="checkbox">
|
||||||
<label class="form-check-label" for="upside-down">
|
<label class="form-check-label" for="upside-down">
|
||||||
{{ $t("Upside Down Mode") }}
|
{{ $t("UpsideDownMode") }}
|
||||||
</label>
|
</label>
|
||||||
<div class="form-text">
|
<div class="form-text">
|
||||||
{{ $t("upsideDownModeDescription") }}
|
{{ $t("UpsideDownModeDescription") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- HTTP / Keyword only -->
|
<!-- HTTP / Keyword only -->
|
||||||
<template v-if="monitor.type === 'http' || monitor.type === 'keyword' ">
|
<template v-if="monitor.type === 'http' || monitor.type === 'keyword' ">
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="maxRedirects" class="form-label">{{ $t("Max. Redirects") }}</label>
|
<label for="maxRedirects" class="form-label">{{ $t("MaxRedirects") }}</label>
|
||||||
<input id="maxRedirects" v-model="monitor.maxredirects" type="number" class="form-control" required min="0" step="1">
|
<input id="maxRedirects" v-model="monitor.maxredirects" type="number" class="form-control" required min="0" step="1">
|
||||||
<div class="form-text">
|
<div class="form-text">
|
||||||
{{ $t("maxRedirectDescription") }}
|
{{ $t("MaxRedirectDescription") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="acceptedStatusCodes" class="form-label">{{ $t("Accepted Status Codes") }}</label>
|
<label for="acceptedStatusCodes" class="form-label">{{ $t("AcceptedStatusCodes") }}</label>
|
||||||
|
|
||||||
<VueMultiselect
|
<VueMultiselect
|
||||||
id="acceptedStatusCodes"
|
id="acceptedStatusCodes"
|
||||||
|
@ -178,7 +178,7 @@
|
||||||
></VueMultiselect>
|
></VueMultiselect>
|
||||||
|
|
||||||
<div class="form-text">
|
<div class="form-text">
|
||||||
{{ $t("acceptedStatusCodesDescription") }}
|
{{ $t("AcceptedStatusCodesDescription") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -197,7 +197,7 @@
|
||||||
|
|
||||||
<h2 class="mb-2">{{ $t("Notifications") }}</h2>
|
<h2 class="mb-2">{{ $t("Notifications") }}</h2>
|
||||||
<p v-if="$root.notificationList.length === 0">
|
<p v-if="$root.notificationList.length === 0">
|
||||||
{{ $t("Not available, please setup.") }}
|
{{ $t("NotAvailablePleaseSetup") }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div v-for="notification in $root.notificationList" :key="notification.id" class="form-check form-switch my-3">
|
<div v-for="notification in $root.notificationList" :key="notification.id" class="form-check form-switch my-3">
|
||||||
|
@ -212,7 +212,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button class="btn btn-primary me-2" type="button" @click="$refs.notificationDialog.show()">
|
<button class="btn btn-primary me-2" type="button" @click="$refs.notificationDialog.show()">
|
||||||
{{ $t("Setup Notification") }}
|
{{ $t("SetupNotification") }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label class="form-label">{{ $t("Theme - Heartbeat Bar") }}</label>
|
<label class="form-label">{{ $t("ThemeHeartbeatBar") }}</label>
|
||||||
<div>
|
<div>
|
||||||
<div class="btn-group" role="group" aria-label="Basic checkbox toggle button group">
|
<div class="btn-group" role="group" aria-label="Basic checkbox toggle button group">
|
||||||
<input id="btncheck4" v-model="$root.userHeartbeatBar" type="radio" class="btn-check" name="heartbeatBarTheme" autocomplete="off" value="normal">
|
<input id="btncheck4" v-model="$root.userHeartbeatBar" type="radio" class="btn-check" name="heartbeatBarTheme" autocomplete="off" value="normal">
|
||||||
|
@ -67,24 +67,24 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label class="form-label">{{ $t("Search Engine Visibility") }}</label>
|
<label class="form-label">{{ $t("SearchEngineVisibility") }}</label>
|
||||||
|
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input id="searchEngineIndexYes" v-model="settings.searchEngineIndex" class="form-check-input" type="radio" name="flexRadioDefault" :value="true" required>
|
<input id="searchEngineIndexYes" v-model="settings.searchEngineIndex" class="form-check-input" type="radio" name="flexRadioDefault" :value="true" required>
|
||||||
<label class="form-check-label" for="searchEngineIndexYes">
|
<label class="form-check-label" for="searchEngineIndexYes">
|
||||||
{{ $t("Allow indexing") }}
|
{{ $t("AllowIndexing") }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input id="searchEngineIndexNo" v-model="settings.searchEngineIndex" class="form-check-input" type="radio" name="flexRadioDefault" :value="false" required>
|
<input id="searchEngineIndexNo" v-model="settings.searchEngineIndex" class="form-check-input" type="radio" name="flexRadioDefault" :value="false" required>
|
||||||
<label class="form-check-label" for="searchEngineIndexNo">
|
<label class="form-check-label" for="searchEngineIndexNo">
|
||||||
{{ $t("Discourage search engines from indexing site") }}
|
{{ $t("DiscourageSearchEnginesFromIndexingSite") }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label class="form-label">{{ $t("Entry Page") }}</label>
|
<label class="form-label">{{ $t("EntryPage") }}</label>
|
||||||
|
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input id="entryPageYes" v-model="settings.entryPage" class="form-check-input" type="radio" name="statusPage" value="dashboard" required>
|
<input id="entryPageYes" v-model="settings.entryPage" class="form-check-input" type="radio" name="statusPage" value="dashboard" required>
|
||||||
|
@ -110,29 +110,29 @@
|
||||||
|
|
||||||
<template v-if="loaded">
|
<template v-if="loaded">
|
||||||
<template v-if="! settings.disableAuth">
|
<template v-if="! settings.disableAuth">
|
||||||
<h2 class="mt-5 mb-2">{{ $t("Change Password") }}</h2>
|
<h2 class="mt-5 mb-2">{{ $t("ChangePassword") }}</h2>
|
||||||
<form class="mb-3" @submit.prevent="savePassword">
|
<form class="mb-3" @submit.prevent="savePassword">
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="current-password" class="form-label">{{ $t("Current Password") }}</label>
|
<label for="current-password" class="form-label">{{ $t("CurrentPassword") }}</label>
|
||||||
<input id="current-password" v-model="password.currentPassword" type="password" class="form-control" required>
|
<input id="current-password" v-model="password.currentPassword" type="password" class="form-control" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="new-password" class="form-label">{{ $t("New Password") }}</label>
|
<label for="new-password" class="form-label">{{ $t("NewPassword") }}</label>
|
||||||
<input id="new-password" v-model="password.newPassword" type="password" class="form-control" required>
|
<input id="new-password" v-model="password.newPassword" type="password" class="form-control" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="repeat-new-password" class="form-label">{{ $t("Repeat New Password") }}</label>
|
<label for="repeat-new-password" class="form-label">{{ $t("RepeatNewPassword") }}</label>
|
||||||
<input id="repeat-new-password" v-model="password.repeatNewPassword" type="password" class="form-control" :class="{ 'is-invalid' : invalidPassword }" required>
|
<input id="repeat-new-password" v-model="password.repeatNewPassword" type="password" class="form-control" :class="{ 'is-invalid' : invalidPassword }" required>
|
||||||
<div class="invalid-feedback">
|
<div class="invalid-feedback">
|
||||||
{{ $t("passwordNotMatchMsg") }}
|
{{ $t("PasswordNotMatchMsg") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<button class="btn btn-primary" type="submit">
|
<button class="btn btn-primary" type="submit">
|
||||||
{{ $t("Update Password") }}
|
{{ $t("UpdatePassword") }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
@ -140,42 +140,42 @@
|
||||||
|
|
||||||
<div v-if="! settings.disableAuth" class="mt-5 mb-3">
|
<div v-if="! settings.disableAuth" class="mt-5 mb-3">
|
||||||
<h2 class="mb-2">
|
<h2 class="mb-2">
|
||||||
{{ $t("Two Factor Authentication") }}
|
{{ $t("TwoFactorAuthentication") }}
|
||||||
</h2>
|
</h2>
|
||||||
<button class="btn btn-primary me-2" type="button" @click="$refs.TwoFADialog.show()">{{ $t("2FA Settings") }}</button>
|
<button class="btn btn-primary me-2" type="button" @click="$refs.TwoFADialog.show()">{{ $t("TwoFaSettings") }}</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2 class="mt-5 mb-2">{{ $t("Export Backup") }}</h2>
|
<h2 class="mt-5 mb-2">{{ $t("ExportBackup") }}</h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
{{ $t("backupDescription") }} <br />
|
{{ $t("BackupDescription") }} <br />
|
||||||
({{ $t("backupDescription2") }}) <br />
|
({{ $t("BackupDescription2") }}) <br />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div class="mb-2">
|
<div class="mb-2">
|
||||||
<button class="btn btn-primary" @click="downloadBackup">{{ $t("Export") }}</button>
|
<button class="btn btn-primary" @click="downloadBackup">{{ $t("Export") }}</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p><strong>{{ $t("backupDescription3") }}</strong></p>
|
<p><strong>{{ $t("BackupDescription3") }}</strong></p>
|
||||||
|
|
||||||
<h2 class="mt-5 mb-2">{{ $t("Import Backup") }}</h2>
|
<h2 class="mt-5 mb-2">{{ $t("ImportBackup") }}</h2>
|
||||||
|
|
||||||
<label class="form-label">{{ $t("Options") }}:</label>
|
<label class="form-label">{{ $t("Options") }}:</label>
|
||||||
<br>
|
<br>
|
||||||
<div class="form-check form-check-inline">
|
<div class="form-check form-check-inline">
|
||||||
<input id="radioKeep" v-model="importHandle" class="form-check-input" type="radio" name="radioImportHandle" value="keep">
|
<input id="radioKeep" v-model="importHandle" class="form-check-input" type="radio" name="radioImportHandle" value="keep">
|
||||||
<label class="form-check-label" for="radioKeep">{{ $t("Keep both") }}</label>
|
<label class="form-check-label" for="radioKeep">{{ $t("KeepBoth") }}</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-check form-check-inline">
|
<div class="form-check form-check-inline">
|
||||||
<input id="radioSkip" v-model="importHandle" class="form-check-input" type="radio" name="radioImportHandle" value="skip">
|
<input id="radioSkip" v-model="importHandle" class="form-check-input" type="radio" name="radioImportHandle" value="skip">
|
||||||
<label class="form-check-label" for="radioSkip">{{ $t("Skip existing") }}</label>
|
<label class="form-check-label" for="radioSkip">{{ $t("SkipExisting") }}</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-check form-check-inline">
|
<div class="form-check form-check-inline">
|
||||||
<input id="radioOverwrite" v-model="importHandle" class="form-check-input" type="radio" name="radioImportHandle" value="overwrite">
|
<input id="radioOverwrite" v-model="importHandle" class="form-check-input" type="radio" name="radioImportHandle" value="overwrite">
|
||||||
<label class="form-check-label" for="radioOverwrite">{{ $t("Overwrite") }}</label>
|
<label class="form-check-label" for="radioOverwrite">{{ $t("Overwrite") }}</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-text mb-2">
|
<div class="form-text mb-2">
|
||||||
{{ $t("importHandleDescription") }}
|
{{ $t("ImportHandleDescription") }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-2">
|
<div class="mb-2">
|
||||||
|
@ -196,10 +196,10 @@
|
||||||
<h2 class="mt-5 mb-2">{{ $t("Advanced") }}</h2>
|
<h2 class="mt-5 mb-2">{{ $t("Advanced") }}</h2>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<button v-if="settings.disableAuth" class="btn btn-outline-primary me-1 mb-1" @click="enableAuth">{{ $t("Enable Auth") }}</button>
|
<button v-if="settings.disableAuth" class="btn btn-outline-primary me-1 mb-1" @click="enableAuth">{{ $t("EnableAuth") }}</button>
|
||||||
<button v-if="! settings.disableAuth" class="btn btn-primary me-1 mb-1" @click="confirmDisableAuth">{{ $t("Disable Auth") }}</button>
|
<button v-if="! settings.disableAuth" class="btn btn-primary me-1 mb-1" @click="confirmDisableAuth">{{ $t("DisableAuth") }}</button>
|
||||||
<button v-if="! settings.disableAuth" class="btn btn-danger me-1 mb-1" @click="$root.logout">{{ $t("Logout") }}</button>
|
<button v-if="! settings.disableAuth" class="btn btn-danger me-1 mb-1" @click="$root.logout">{{ $t("Logout") }}</button>
|
||||||
<button class="btn btn-outline-danger me-1 mb-1" @click="confirmClearStatistics">{{ $t("Clear all statistics") }}</button>
|
<button class="btn btn-outline-danger me-1 mb-1" @click="confirmClearStatistics">{{ $t("ClearAllStatistics") }}</button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
@ -209,10 +209,10 @@
|
||||||
|
|
||||||
<h2>{{ $t("Notifications") }}</h2>
|
<h2>{{ $t("Notifications") }}</h2>
|
||||||
<p v-if="$root.notificationList.length === 0">
|
<p v-if="$root.notificationList.length === 0">
|
||||||
{{ $t("Not available, please setup.") }}
|
{{ $t("NotAvailablePleaseSetup") }}
|
||||||
</p>
|
</p>
|
||||||
<p v-else>
|
<p v-else>
|
||||||
{{ $t("notificationDescription") }}
|
{{ $t("NotificationDescription") }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<ul class="list-group mb-3" style="border-radius: 1rem;">
|
<ul class="list-group mb-3" style="border-radius: 1rem;">
|
||||||
|
@ -223,13 +223,13 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<button class="btn btn-primary me-2" type="button" @click="$refs.notificationDialog.show()">
|
<button class="btn btn-primary me-2" type="button" @click="$refs.notificationDialog.show()">
|
||||||
{{ $t("Setup Notification") }}
|
{{ $t("SetupNotification") }}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<h2 class="mt-5">{{ $t("Info") }}</h2>
|
<h2 class="mt-5">{{ $t("Info") }}</h2>
|
||||||
|
|
||||||
{{ $t("Version") }}: {{ $root.info.version }} <br />
|
{{ $t("Version") }}: {{ $root.info.version }} <br />
|
||||||
<a href="https://github.com/louislam/uptime-kuma/releases" target="_blank" rel="noopener">{{ $t("Check Update On GitHub") }}</a>
|
<a href="https://github.com/louislam/uptime-kuma/releases" target="_blank" rel="noopener">{{ $t("CheckUpdateOnGitHub") }}</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -343,10 +343,10 @@
|
||||||
</Confirm>
|
</Confirm>
|
||||||
|
|
||||||
<Confirm ref="confirmClearStatistics" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="clearStatistics">
|
<Confirm ref="confirmClearStatistics" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="clearStatistics">
|
||||||
{{ $t("confirmClearStatisticsMsg") }}
|
{{ $t("ConfirmClearStatisticsMsg") }}
|
||||||
</Confirm>
|
</Confirm>
|
||||||
<Confirm ref="confirmImport" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="importBackup">
|
<Confirm ref="confirmImport" btn-style="btn-danger" :yes-text="$t('Yes')" :no-text="$t('No')" @yes="importBackup">
|
||||||
{{ $t("confirmImportMsg") }}
|
{{ $t("ConfirmImportMsg") }}
|
||||||
</Confirm>
|
</Confirm>
|
||||||
</div>
|
</div>
|
||||||
</transition>
|
</transition>
|
||||||
|
@ -498,12 +498,12 @@ export default {
|
||||||
|
|
||||||
if (uploadItem.length <= 0) {
|
if (uploadItem.length <= 0) {
|
||||||
this.processing = false;
|
this.processing = false;
|
||||||
return this.importAlert = this.$t("alertNoFile");
|
return this.importAlert = this.$t("AlertNoFile");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (uploadItem.item(0).type !== "application/json") {
|
if (uploadItem.item(0).type !== "application/json") {
|
||||||
this.processing = false;
|
this.processing = false;
|
||||||
return this.importAlert = this.$t("alertWrongFileType");
|
return this.importAlert = this.$t("AlertWrongFileType");
|
||||||
}
|
}
|
||||||
|
|
||||||
let fileReader = new FileReader();
|
let fileReader = new FileReader();
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p class="mt-3">
|
<p class="mt-3">
|
||||||
{{ $t("Create your admin account") }}
|
{{ $t("CreateYourAdminAccount") }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div class="form-floating">
|
<div class="form-floating">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
<div class="form-floating mt-3">
|
<div class="form-floating mt-3">
|
||||||
<input id="repeat" v-model="repeatPassword" type="password" class="form-control" placeholder="Repeat Password" required>
|
<input id="repeat" v-model="repeatPassword" type="password" class="form-control" placeholder="Repeat Password" required>
|
||||||
<label for="repeat">{{ $t("Repeat Password") }}</label>
|
<label for="repeat">{{ $t("RepeatPassword") }}</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button class="w-100 btn btn-primary mt-3" type="submit" :disabled="processing">
|
<button class="w-100 btn btn-primary mt-3" type="submit" :disabled="processing">
|
||||||
|
|
|
@ -30,12 +30,12 @@
|
||||||
<div v-if="!enableEditMode">
|
<div v-if="!enableEditMode">
|
||||||
<button class="btn btn-info me-2" @click="edit">
|
<button class="btn btn-info me-2" @click="edit">
|
||||||
<font-awesome-icon icon="edit" />
|
<font-awesome-icon icon="edit" />
|
||||||
{{ $t("Edit Status Page") }}
|
{{ $t("EditStatusPage") }}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<a href="/dashboard" class="btn btn-info">
|
<a href="/dashboard" class="btn btn-info">
|
||||||
<font-awesome-icon icon="tachometer-alt" />
|
<font-awesome-icon icon="tachometer-alt" />
|
||||||
{{ $t("Go to Dashboard") }}
|
{{ $t("GoToDashboard") }}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -137,23 +137,23 @@
|
||||||
<div class="shadow-box list p-4 overall-status mb-4">
|
<div class="shadow-box list p-4 overall-status mb-4">
|
||||||
<div v-if="Object.keys($root.publicMonitorList).length === 0 && loadedData">
|
<div v-if="Object.keys($root.publicMonitorList).length === 0 && loadedData">
|
||||||
<font-awesome-icon icon="question-circle" class="ok" />
|
<font-awesome-icon icon="question-circle" class="ok" />
|
||||||
{{ $t("No Services") }}
|
{{ $t("NoServices") }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<div v-if="allUp">
|
<div v-if="allUp">
|
||||||
<font-awesome-icon icon="check-circle" class="ok" />
|
<font-awesome-icon icon="check-circle" class="ok" />
|
||||||
{{ $t("All Systems Operational") }}
|
{{ $t("AllSystemsOperational") }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-else-if="partialDown">
|
<div v-else-if="partialDown">
|
||||||
<font-awesome-icon icon="exclamation-circle" class="warning" />
|
<font-awesome-icon icon="exclamation-circle" class="warning" />
|
||||||
{{ $t("Partially Degraded Service") }}
|
{{ $t("PartiallyDegradedService") }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-else-if="allDown">
|
<div v-else-if="allDown">
|
||||||
<font-awesome-icon icon="times-circle" class="danger" />
|
<font-awesome-icon icon="times-circle" class="danger" />
|
||||||
{{ $t("Degraded Service") }}
|
{{ $t("DegradedService") }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-else>
|
<div v-else>
|
||||||
|
@ -170,13 +170,13 @@
|
||||||
<div>
|
<div>
|
||||||
<button class="btn btn-primary btn-add-group me-2" @click="addGroup">
|
<button class="btn btn-primary btn-add-group me-2" @click="addGroup">
|
||||||
<font-awesome-icon icon="plus" />
|
<font-awesome-icon icon="plus" />
|
||||||
{{ $t("Add Group") }}
|
{{ $t("AddGroup") }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mt-3">
|
<div class="mt-3">
|
||||||
<div v-if="allMonitorList.length > 0 && loadedData">
|
<div v-if="allMonitorList.length > 0 && loadedData">
|
||||||
<label>{{ $t("Add a monitor") }}:</label>
|
<label>{{ $t("AddAMonitor") }}:</label>
|
||||||
<select v-model="selectedMonitor" class="form-control">
|
<select v-model="selectedMonitor" class="form-control">
|
||||||
<option v-for="monitor in allMonitorList" :key="monitor.id" :value="monitor">{{ monitor.name }}</option>
|
<option v-for="monitor in allMonitorList" :key="monitor.id" :value="monitor">{{ monitor.name }}</option>
|
||||||
</select>
|
</select>
|
||||||
|
@ -190,7 +190,7 @@
|
||||||
<div class="mb-4">
|
<div class="mb-4">
|
||||||
<div v-if="$root.publicGroupList.length === 0 && loadedData" class="text-center">
|
<div v-if="$root.publicGroupList.length === 0 && loadedData" class="text-center">
|
||||||
<!-- 👀 Nothing here, please add a group or a monitor. -->
|
<!-- 👀 Nothing here, please add a group or a monitor. -->
|
||||||
👀 {{ $t("statusPageNothing") }}
|
👀 {{ $t("StatusPageNothing") }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<PublicGroupList :edit-mode="enableEditMode" />
|
<PublicGroupList :edit-mode="enableEditMode" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue