Merge pull request #2885 from cyril59310/master

Add keys for translation
This commit is contained in:
Louis Lam 2023-03-10 15:37:08 +08:00 committed by GitHub
commit 6635412980
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 6 deletions

View File

@ -4,17 +4,17 @@
<div class="form-text"> <div class="form-text">
<p> <p>
<select id="lunasea-notification-target" v-model="$parent.notification.lunaseaTarget" class="form-select" required> <select id="lunasea-notification-target" v-model="$parent.notification.lunaseaTarget" class="form-select" required>
<option value="device">Device</option> <option value="device">{{ $t("lunaseaDeviceID") }}</option>
<option value="user">User</option> <option value="user">{{ $t("lunaseaUserID") }}</option>
</select> </select>
</p> </p>
</div> </div>
<div v-if="$parent.notification.lunaseaTarget === 'device'"> <div v-if="$parent.notification.lunaseaTarget === 'device'">
<label for="lunasea-device" class="form-label">{{ $t("Device ID") }}<span style="color: red;"><sup>*</sup></span></label> <label for="lunasea-device" class="form-label">{{ $t("lunaseaDeviceID") }}<span style="color: red;"><sup>*</sup></span></label>
<input id="lunasea-device" v-model="$parent.notification.lunaseaDevice" type="text" class="form-control"> <input id="lunasea-device" v-model="$parent.notification.lunaseaDevice" type="text" class="form-control">
</div> </div>
<div v-if="$parent.notification.lunaseaTarget === 'user'"> <div v-if="$parent.notification.lunaseaTarget === 'user'">
<label for="lunasea-device" class="form-label">{{ $t("User ID") }}<span style="color: red;"><sup>*</sup></span></label> <label for="lunasea-device" class="form-label">{{ $t("lunaseaUserID") }}<span style="color: red;"><sup>*</sup></span></label>
<input id="lunasea-device" v-model="$parent.notification.lunaseaUserID" type="text" class="form-control"> <input id="lunasea-device" v-model="$parent.notification.lunaseaUserID" type="text" class="form-control">
</div> </div>
</div> </div>

View File

@ -154,6 +154,7 @@
"Token": "Token", "Token": "Token",
"Show URI": "Show URI", "Show URI": "Show URI",
"Tags": "Tags", "Tags": "Tags",
"Add New Tag": "Add New Tag",
"Add New below or Select...": "Add New below or Select…", "Add New below or Select...": "Add New below or Select…",
"Tag with this name already exist.": "Tag with this name already exists.", "Tag with this name already exist.": "Tag with this name already exists.",
"Tag with this value already exist.": "Tag with this value already exists.", "Tag with this value already exist.": "Tag with this value already exists.",
@ -442,7 +443,6 @@
"Clone Monitor": "Clone Monitor", "Clone Monitor": "Clone Monitor",
"Clone": "Clone", "Clone": "Clone",
"cloneOf": "Clone of {0}", "cloneOf": "Clone of {0}",
"Description": "Description",
"smtp": "Email (SMTP)", "smtp": "Email (SMTP)",
"secureOptionNone": "None / STARTTLS (25, 587)", "secureOptionNone": "None / STARTTLS (25, 587)",
"secureOptionTLS": "TLS (465)", "secureOptionTLS": "TLS (465)",
@ -703,5 +703,8 @@
"pagertreeCritical": "Critical", "pagertreeCritical": "Critical",
"pagertreeResolve": "Auto Resolve", "pagertreeResolve": "Auto Resolve",
"pagertreeDoNothing": "Do Nothing", "pagertreeDoNothing": "Do Nothing",
"wayToGetPagerTreeIntegrationURL": "After creating the Uptime Kuma integration in PagerTree, copy the Endpoint. See full details {0}" "wayToGetPagerTreeIntegrationURL": "After creating the Uptime Kuma integration in PagerTree, copy the Endpoint. See full details {0}",
"lunaseaTarget": "target",
"lunaseaDeviceID": "Device ID",
"lunaseaUserID": "User ID"
} }