mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-19 07:44:02 +02:00
used translation
This commit is contained in:
parent
9cdf7042ba
commit
9a1d0e9190
2 changed files with 8 additions and 4 deletions
|
@ -1123,5 +1123,9 @@
|
||||||
"Staged Tags for Batch Add": "Staged Tags for Batch Add",
|
"Staged Tags for Batch Add": "Staged Tags for Batch Add",
|
||||||
"Clear Form": "Clear Form",
|
"Clear Form": "Clear Form",
|
||||||
"pause": "Pause",
|
"pause": "Pause",
|
||||||
"Manual": "Manual"
|
"Manual": "Manual",
|
||||||
|
"RTSP Username": "RTSP Username",
|
||||||
|
"RTSP Password": "RTSP Password",
|
||||||
|
"RTSP Path": "RTSP Path",
|
||||||
|
"Path": "Path"
|
||||||
}
|
}
|
||||||
|
|
|
@ -520,7 +520,7 @@
|
||||||
|
|
||||||
<template v-if="monitor.type === 'rtsp'">
|
<template v-if="monitor.type === 'rtsp'">
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="rtspPath" class="form-label">RTSP {{ $t("path") }}</label>
|
<label for="rtspPath" class="form-label"> {{ $t("RTSP Path") }}</label>
|
||||||
<input id="rtspPath" v-model="monitor.rtspPath" :placeholder="$t('Path')" type="text" class="form-control">
|
<input id="rtspPath" v-model="monitor.rtspPath" :placeholder="$t('Path')" type="text" class="form-control">
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -1066,14 +1066,14 @@
|
||||||
<h4 class="mt-5 mb-2">{{ $t("Authentication") }}</h4>
|
<h4 class="mt-5 mb-2">{{ $t("Authentication") }}</h4>
|
||||||
|
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="rtspUsername" class="form-label">RTSP {{ $t("Username") }}</label>
|
<label for="rtspUsername" class="form-label">{{ $t("RTSP Username") }}</label>
|
||||||
<input
|
<input
|
||||||
id="rtspUsername" v-model="monitor.rtspUsername" :placeholder="$t('Username')" type="text" class="form-control"
|
id="rtspUsername" v-model="monitor.rtspUsername" :placeholder="$t('Username')" type="text" class="form-control"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="my-3">
|
<div class="my-3">
|
||||||
<label for="rtspPassword" class="form-label">RTSP {{ $t("Password") }}</label>
|
<label for="rtspPassword" class="form-label">{{ $t("RTSP Password") }}</label>
|
||||||
<input id="rtspPassword" v-model="monitor.rtspPassword" :placeholder="$t('Password')" type="password" class="form-control">
|
<input id="rtspPassword" v-model="monitor.rtspPassword" :placeholder="$t('Password')" type="password" class="form-control">
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Add table
Reference in a new issue