瀏覽代碼

chore: 🌐 Added Bold text for No refund

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

+ 1 - 1
lang/de.json

@@ -470,7 +470,7 @@
     "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.",
+    "This is an irreversible action, all files of this server will be removed. <strong>No funds will get refunded</strong>. We recommend deleting the server when server is suspended.": "Dies ist eine irreversiblen Aktion, alle Dateien dieses Servers werden gelöscht. <strong>Keine Rückerstattung!</strong>. Wir empfehlen, den Server zu löschen, wenn er gesperrt ist.",
     "Cancel Server?": "Server kündigen?",
     "Delete Server?": "Server löschen?",
     "Billing Period": "Abrechnungsperiode",

+ 1 - 1
lang/sh.json

@@ -455,7 +455,7 @@
     "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.",
+    "This is an irreversible action, all files of this server will be removed. <strong>No funds will get refunded</strong>. We recommend deleting the server when server is suspended.": "This is an irreversible action, all files of this server will be removed. <strong>No funds will get refunded</strong>. We recommend deleting the server when server is suspended.",
     "Billing Period": "Billing Period",
     "Next Billing Cycle": "Next Billing Cycle",
     "Manage Server": "Manage Server",

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

@@ -248,7 +248,7 @@
         const handleServerDelete = (serverId) => {
             Swal.fire({
                 title: "{{ __('Delete Server?') }}",
-                text: "{{ __('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.') }}",
+                html: "{{!! __('This is an irreversible action, all files of this server will be removed. <strong>No funds will get refunded</strong>. We recommend deleting the server when server is suspended.') !!}}",
                 icon: 'warning',
                 confirmButtonColor: '#d9534f',
                 showCancelButton: true,