fix(translations): add more missing translations

This commit is contained in:
Bert Verhelst 2021-10-05 20:06:55 +02:00
parent 49c8dbad8f
commit d38d86a8be
9 changed files with 18 additions and 11 deletions

View file

@ -96,7 +96,7 @@
<div class="mb-2">
<input v-model="newDraftTag.value" class="form-control"
:class="{'is-invalid': validateDraftTag.valueInvalid}"
:placeholder="$t('value (optional)')"
:placeholder="$t('valueOptional')"
@keydown.enter.prevent="onEnter"
/>
<div class="invalid-feedback">

View file

@ -59,7 +59,7 @@ export default {
IUnderstandPleaseDisable: "I understand, please disable",
RememberMe: "Remember me",
NoMonitorsPlease: "No Monitors, please",
AddOne: "add one",
AddOne: "Add one",
NotificationType: "Notification Type",
CertificateInfo: "Certificate Info",
ResolverServer: "Resolver Server",
@ -131,4 +131,11 @@ export default {
PoweredBy: "Powered by",
SwitchToLightTheme: "Switch to Light 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.",
};

View file

@ -208,7 +208,7 @@ export default {
showPingChartBox: true,
paginationConfig: {
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"),
last: this.$t("Last"),
nextPage: ">",

View file

@ -46,7 +46,7 @@
<!-- Push URL -->
<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" />
<div class="form-text">
You should call this url every {{ monitor.interval }} seconds.<br />

View file

@ -182,7 +182,7 @@
</select>
</div>
<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>