瀏覽代碼

chore: 🌐 Localization

IceToast 2 年之前
父節點
當前提交
2c4b3ea03e
共有 3 個文件被更改,包括 46 次插入4 次删除
  1. 21 0
      lang/de.json
  2. 22 1
      lang/sh.json
  3. 3 3
      resources/views/servers/index.blade.php

+ 21 - 0
lang/de.json

@@ -459,6 +459,27 @@
     "zh": "Chinesisch",
     "tr": "Türkisch",
     "ru": "Russisch",
+    "hourly": "Stündlich",
+    "monthly": "Monatlich",
+    "yearly": "Jährlich",
+    "daily": "Täglich",
+    "weekly": "Wöchentlich",
+    "half-annually": "Halbjährlich",
+    "annually": "Jährlich",
+    "Cancelled": "Gekündigt",
+    "An exception has occurred while trying to cancel the server": "Ein Fehler ist aufgetreten beim Versuch, den Server zu kündigen",
+    "This will cancel your current server to the next billing period. It will get suspended when the current period runs out.": "Dies wird Ihren aktuellen Server zur nächsten Abrechnungsperiode kündigen. Er wird beim Ablauf der aktuellen Periode gesperrt.",
+    "This is an irreversible action, all files of this server will be removed. No funds will get refunded. We recommend deleting the server when server is suspended.": "Dies ist eine irreversibel Aktion, alle Dateien dieses Servers werden gelöscht. Keine Gelder werden zurückgezahlt. Wir empfehlen, den Server zu löschen, wenn er gesperrt ist.",
+    "Cancel Server?": "Server kündigen?",
+    "Delete Server?": "Server löschen?",
+    "Billing Period": "Abrechnungsperiode",
+    "Next Billing Cycle": "Nächste Abrechnungsperiode",
+    "Manage Server": "Server verwalten",
+    "Delete Server": "Server löschen",
+    "Cancel Server": "Server kündigen",
+    "Yes, cancel it!": "Ja, löschen!",
+    "No, abort!": "Abbrechen",
+    "Billing period": "Abrechnungsperiode",
     "sv": "Schwedisch",
     "sk": "Slowakisch",
     "Imprint": "Impressum",

+ 22 - 1
lang/sh.json

@@ -441,5 +441,26 @@
     "pl": "Polish",
     "zh": "Chinese",
     "tr": "Turkish",
-    "ru": "Russian"
+    "ru": "Russian",
+    "hourly": "Hourly",
+    "monthly": "Monthly",
+    "yearly": "Yearly",
+    "daily": "Daily",
+    "weekly": "Weekly",
+    "half-annually": "Half-annually",
+    "annually": "Annually",
+    "Cancelled": "Cancelled",
+    "An exception has occurred while trying to cancel the server": "An exception has occurred while trying to cancel the server",
+    "This will cancel your current server to the next billing period. It will get suspended when the current period runs out.": "This will cancel your current server to the next billing period. It will get suspended when the current period runs out.",
+    "Cancel Server?": "Cancel Server?",
+    "Delete Server?": "Delete Server?",
+    "This is an irreversible action, all files of this server will be removed. No funds will get refunded. We recommend deleting the server when server is suspended.": "This is an irreversible action, all files of this server will be removed. No funds will get refunded. We recommend deleting the server when server is suspended.",
+    "Billing Period": "Billing Period",
+    "Next Billing Cycle": "Next Billing Cycle",
+    "Manage Server": "Manage Server",
+    "Delete Server": "Delete Server",
+    "Cancel Server": "Cancel Server",
+    "Yes, cancel it!": "Yes, cancel it!",
+    "No, abort!": "No, abort!",
+    "Billing period": "Billing period"
 }

+ 3 - 3
resources/views/servers/index.blade.php

@@ -194,17 +194,17 @@
                             <a href="{{ config('SETTINGS::SYSTEM:PTERODACTYL:URL') }}/server/{{ $server->identifier }}"
                                 target="__blank"
                                 class="btn btn-info text-center float-left ml-2"
-                                data-toggle="tooltip" data-placement="bottom" title="Manage Server">
+                                data-toggle="tooltip" data-placement="bottom" title="{{ __('Manage Server') }}">
                                 <i class="fas fa-tools mx-4"></i>
                             </a>
                             <button onclick="handleServerCancel('{{ $server->id }}');" target="__blank"
                                 class="btn btn-warning  text-center"
-                                data-toggle="tooltip" data-placement="bottom" title="Cancel Server">
+                                data-toggle="tooltip" data-placement="bottom" title="{{ __('Cancel Server') }}">
                                 <i class="fas fa-ban mx-4"></i>
                             </button>
                             <button onclick="handleServerDelete('{{ $server->id }}');" target="__blank"
                                 class="btn btn-danger  text-center float-right mr-2"
-                                data-toggle="tooltip" data-placement="bottom" title="Delete Server">
+                                data-toggle="tooltip" data-placement="bottom" title="{{ __('Delete Server') }}">
                                 <i class="fas fa-trash mx-4"></i>
                             </button>
                         </div>