mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
Added German language for DNS Monitor
This commit is contained in:
parent
7652b4849a
commit
6464207f4b
@ -99,4 +99,7 @@ export default {
|
|||||||
keywordDescription: "Suche nach einen Schlüsselwort in einer schlichten HTML oder JSON Ausgabe. Bitte beachte, es wird in der Groß-/Kleinschreibung unterschieden.",
|
keywordDescription: "Suche nach einen Schlüsselwort in einer schlichten HTML oder JSON Ausgabe. Bitte beachte, es wird in der Groß-/Kleinschreibung unterschieden.",
|
||||||
deleteMonitorMsg: "Bist du sicher das du den Monitor löschen möchtest?",
|
deleteMonitorMsg: "Bist du sicher das du den Monitor löschen möchtest?",
|
||||||
deleteNotificationMsg: "Möchtest du diese Benachrichtigung wirklich für alle Monitore löschen?",
|
deleteNotificationMsg: "Möchtest du diese Benachrichtigung wirklich für alle Monitore löschen?",
|
||||||
|
resoverserverDescription: "Cloudflare ist der Standardserver, dieser kann jederzeit geändern werden.",
|
||||||
|
"Resolver Server": "Auflösungsserver",
|
||||||
|
rrtypeDescription: "Wähle den RR-Typ aus, welchen du überwachen möchtest.",
|
||||||
}
|
}
|
||||||
|
@ -13,4 +13,6 @@ export default {
|
|||||||
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.",
|
||||||
|
rrtypeDescription: "Select the RR-Type you want to monitor",
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,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>
|
||||||
|
|
||||||
@ -63,10 +63,10 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="monitor.type === 'dns'" class="my-3">
|
<div v-if="monitor.type === 'dns'" class="my-3">
|
||||||
<label for="dns_resolve_server" class="form-label">Resolver Server</label>
|
<label for="dns_resolve_server" class="form-label">{{ $t("Resolver Server") }}</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">
|
||||||
Cloudflare is the default server, you can change the resolver server anytime.
|
{{ $t("resoverserverDescription") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -88,7 +88,7 @@
|
|||||||
></VueMultiselect>
|
></VueMultiselect>
|
||||||
|
|
||||||
<div class="form-text">
|
<div class="form-text">
|
||||||
Select the RR-Type you want to monitor
|
{{ $t("rrtypeDescription") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user