mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-11 08:04:17 -08:00
Avoid space ending in translation key
This commit is contained in:
parent
6e55c44773
commit
6e9d12638c
|
@ -11,8 +11,8 @@
|
|||
</div>
|
||||
<div class="mb-3">
|
||||
<i18n-t keypath="Status:" tag="p">
|
||||
<span v-if="appriseInstalled" class="text-primary">{{ $t("Apprise is installed. ") }}</span>
|
||||
<span v-else class="text-danger">{{ $t("Apprise is not installed. ") }}<a href="https://github.com/caronc/apprise" target="_blank">{{ $t("Read more") }}</a></span>
|
||||
<span v-if="appriseInstalled" class="text-primary">{{ $t("Apprise is installed.") }}</span>
|
||||
<span v-else class="text-danger">{{ $t("Apprise is not installed.") }}<a href="https://github.com/caronc/apprise" target="_blank">{{ $t("Read more") }}</a></span>
|
||||
</i18n-t>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -3,14 +3,14 @@
|
|||
<label for="line-channel-access-token" class="form-label">{{ $t("Channel access token") }}</label>
|
||||
<HiddenInput id="line-channel-access-token" v-model="$parent.notification.lineChannelAccessToken" :required="true" autocomplete="one-time-code"></HiddenInput>
|
||||
</div>
|
||||
<i18n-t keypath="Line Developers Console - " tag="div" class="form-text">
|
||||
<i18n-t keypath="lineDevConsoleTo" tag="div" class="form-text">
|
||||
<b>{{ $t("Basic Settings") }}</b>
|
||||
</i18n-t>
|
||||
<div class="mb-3" style="margin-top: 12px;">
|
||||
<label for="line-user-id" class="form-label">User ID</label>
|
||||
<input id="line-user-id" v-model="$parent.notification.lineUserID" type="text" class="form-control" required>
|
||||
</div>
|
||||
<i18n-t keypath="Line Developers Console - " tag="div" class="form-text">
|
||||
<i18n-t keypath="lineDevConsoleTo" tag="div" class="form-text">
|
||||
<b>{{ $t("Messaging API") }}</b>
|
||||
</i18n-t>
|
||||
<i18n-t keypath="wayToGetLineChannelToken" tag="div" class="form-text" style="margin-top: 8px;">
|
||||
|
|
|
@ -259,8 +259,8 @@ export default {
|
|||
"Read more:": "Read more: {0}",
|
||||
"Status:": "Status: {0}",
|
||||
"Read more": "Read more",
|
||||
"Apprise is installed. ": "Apprise is installed. ",
|
||||
"Apprise is not installed. ": "Apprise is not installed. ",
|
||||
"Apprise is installed.": "Apprise is installed. ",
|
||||
"Apprise is not installed.": "Apprise is not installed. ",
|
||||
|
||||
"pushbullet": "Pushbullet",
|
||||
"Access Token": "Access Token",
|
||||
|
@ -268,7 +268,7 @@ export default {
|
|||
"line": "Line Messenger",
|
||||
"Channel access token": "Channel access token",
|
||||
"Line Developers Console": "Line Developers Console",
|
||||
"Line Developers Console - ": "Line Developers Console - {0}",
|
||||
lineDevConsoleTo: "Line Developers Console - {0}",
|
||||
"Basic Settings": "Basic Settings",
|
||||
"User ID": "User ID",
|
||||
"Messaging API": "Messaging API",
|
||||
|
|
Loading…
Reference in a new issue