From a3e31b22bc958c3619b172abf578d6c3ad566970 Mon Sep 17 00:00:00 2001
From: Louis Lam <louislam@users.noreply.github.com>
Date: Tue, 25 Apr 2023 18:22:17 +0800
Subject: [PATCH] Minor

---
 src/components/notifications/Ntfy.vue | 4 ++--
 src/lang/de-CH.json                   | 4 ++--
 src/lang/de-DE.json                   | 4 ++--
 src/lang/en.json                      | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/components/notifications/Ntfy.vue b/src/components/notifications/Ntfy.vue
index 45776a936..57fac671b 100644
--- a/src/components/notifications/Ntfy.vue
+++ b/src/components/notifications/Ntfy.vue
@@ -16,7 +16,7 @@
         <input id="ntfy-priority" v-model="$parent.notification.ntfyPriority" type="number" class="form-control" required min="1" max="5" step="1">
     </div>
     <div class="mb-3">
-        <label for="authentication-method" class="form-label">{{ $t("AuthenticationMethod") }}</label>
+        <label for="authentication-method" class="form-label">{{ $t("ntfyAuthenticationMethod") }}</label>
         <select id="authentication-method" v-model="$parent.notification.ntfyAuthenticationMethod" class="form-select">
             <option v-for="(name, type) in authenticationMethods" :key="type" :value="type">{{ name }}</option>
         </select>
@@ -56,7 +56,7 @@ export default {
         authenticationMethods() {
             return {
                 none: this.$t("None"),
-                usernamePassword: this.$t("UsernameAndPassword"),
+                usernamePassword: this.$t("ntfyUsernameAndPassword"),
                 accessToken: this.$t("Access Token")
             };
         }
diff --git a/src/lang/de-CH.json b/src/lang/de-CH.json
index 9445e6cd7..3f3a860cc 100644
--- a/src/lang/de-CH.json
+++ b/src/lang/de-CH.json
@@ -736,8 +736,8 @@
     "lunaseaTarget": "Ziel",
     "lunaseaDeviceID": "Geräte-ID",
     "lunaseaUserID": "Benutzer-ID",
-    "AuthenticationMethod": "Authentifizierungsmethode",
-    "UsernameAndPassword": "Benutzername und Passwort",
+    "ntfyAuthenticationMethod": "Authentifizierungsmethode",
+    "ntfyUsernameAndPassword": "Benutzername und Passwort",
     "twilioAccountSID": "Account SID",
     "twilioFromNumber": "Absender",
     "twilioToNumber": "Empfänger",
diff --git a/src/lang/de-DE.json b/src/lang/de-DE.json
index b5d428f95..48a8cd713 100644
--- a/src/lang/de-DE.json
+++ b/src/lang/de-DE.json
@@ -739,8 +739,8 @@
     "lunaseaDeviceID": "Geräte-ID",
     "lunaseaTarget": "Ziel",
     "lunaseaUserID": "Benutzer-ID",
-    "AuthenticationMethod": "Authentifizierungsmethode",
-    "UsernameAndPassword": "Benutzername und Passwort",
+    "ntfyAuthenticationMethod": "Authentifizierungsmethode",
+    "ntfyUsernameAndPassword": "Benutzername und Passwort",
     "twilioAccountSID": "Account SID",
     "twilioFromNumber": "Absender",
     "twilioToNumber": "Empfänger",
diff --git a/src/lang/en.json b/src/lang/en.json
index debedaee4..f33a7de37 100644
--- a/src/lang/en.json
+++ b/src/lang/en.json
@@ -714,8 +714,8 @@
     "lunaseaTarget": "Target",
     "lunaseaDeviceID": "Device ID",
     "lunaseaUserID": "User ID",
-    "AuthenticationMethod": "Authentication Method",
-    "UsernameAndPassword": "Username and Password",
+    "ntfyAuthenticationMethod": "Authentication Method",
+    "ntfyUsernameAndPassword": "Username and Password",
     "twilioAccountSID": "Account SID",
     "twilioAuthToken": "Auth Token",
     "twilioFromNumber": "From Number",