mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-07 21:42:34 +02:00
fix(translations): add more missing translations
This commit is contained in:
parent
49c8dbad8f
commit
d38d86a8be
9 changed files with 18 additions and 11 deletions
|
@ -96,7 +96,7 @@
|
||||||
<div class="mb-2">
|
<div class="mb-2">
|
||||||
<input v-model="newDraftTag.value" class="form-control"
|
<input v-model="newDraftTag.value" class="form-control"
|
||||||
:class="{'is-invalid': validateDraftTag.valueInvalid}"
|
:class="{'is-invalid': validateDraftTag.valueInvalid}"
|
||||||
:placeholder="$t('value (optional)')"
|
:placeholder="$t('valueOptional')"
|
||||||
@keydown.enter.prevent="onEnter"
|
@keydown.enter.prevent="onEnter"
|
||||||
/>
|
/>
|
||||||
<div class="invalid-feedback">
|
<div class="invalid-feedback">
|
||||||
|
|
|
@ -59,7 +59,7 @@ export default {
|
||||||
IUnderstandPleaseDisable: "I understand, please disable",
|
IUnderstandPleaseDisable: "I understand, please disable",
|
||||||
RememberMe: "Remember me",
|
RememberMe: "Remember me",
|
||||||
NoMonitorsPlease: "No Monitors, please",
|
NoMonitorsPlease: "No Monitors, please",
|
||||||
AddOne: "add one",
|
AddOne: "Add one",
|
||||||
NotificationType: "Notification Type",
|
NotificationType: "Notification Type",
|
||||||
CertificateInfo: "Certificate Info",
|
CertificateInfo: "Certificate Info",
|
||||||
ResolverServer: "Resolver Server",
|
ResolverServer: "Resolver Server",
|
||||||
|
@ -131,4 +131,11 @@ export default {
|
||||||
PoweredBy: "Powered by",
|
PoweredBy: "Powered by",
|
||||||
SwitchToLightTheme: "Switch to Light Theme",
|
SwitchToLightTheme: "Switch to Light Theme",
|
||||||
SwitchToDarkTheme: "Switch to Dark Theme",
|
SwitchToDarkTheme: "Switch to Dark Theme",
|
||||||
|
CertificateChain: "Certificate Chain",
|
||||||
|
PushUrl: "Push URL",
|
||||||
|
UptimeKuma: "Uptime Kuma",
|
||||||
|
NoMonitors: "No Monitors",
|
||||||
|
StatusPage: "Status Page",
|
||||||
|
CreateIncident: "Create Incident",
|
||||||
|
NoMonitorsAvailable: "No monitors available.",
|
||||||
};
|
};
|
||||||
|
|
|
@ -208,7 +208,7 @@ export default {
|
||||||
showPingChartBox: true,
|
showPingChartBox: true,
|
||||||
paginationConfig: {
|
paginationConfig: {
|
||||||
texts: {
|
texts: {
|
||||||
count: `${this.$t("Showing {from} to {to} of {count} records")}|{count} ${this.$t("records")}|${this.$t("One record")}`,
|
count: `${this.$t("ShowingFromToOfCountRecords")}|{count} ${this.$t("Records")}|${this.$t("OneRecord")}`,
|
||||||
first: this.$t("First"),
|
first: this.$t("First"),
|
||||||
last: this.$t("Last"),
|
last: this.$t("Last"),
|
||||||
nextPage: ">",
|
nextPage: ">",
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
|
|
||||||
<!-- Push URL -->
|
<!-- Push URL -->
|
||||||
<div v-if="monitor.type === 'push' " class="my-3">
|
<div v-if="monitor.type === 'push' " class="my-3">
|
||||||
<label for="push-url" class="form-label">{{ $t("Push URL") }}</label>
|
<label for="push-url" class="form-label">{{ $t("PushUrl") }}</label>
|
||||||
<CopyableInput id="push-url" v-model="pushURL" type="url" disabled="disabled" />
|
<CopyableInput id="push-url" v-model="pushURL" type="url" disabled="disabled" />
|
||||||
<div class="form-text">
|
<div class="form-text">
|
||||||
You should call this url every {{ monitor.interval }} seconds.<br />
|
You should call this url every {{ monitor.interval }} seconds.<br />
|
||||||
|
|
|
@ -182,7 +182,7 @@
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div v-else class="text-center">
|
<div v-else class="text-center">
|
||||||
{{ $t("No monitors available.") }} <router-link to="/add">{{ $t("Add one") }}</router-link>
|
{{ $t("NoMonitorsAvailable.") }} <router-link to="/add">{{ $t("AddOne") }}</router-link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue