From: Alexander Ebert Date: Thu, 6 Oct 2022 11:10:27 +0000 (+0200) Subject: Fix the quotation marks X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=0321ec0cc48c741aaf4177c252bf03a4e6952374;p=GitHub%2FWoltLab%2Fwoltlab.github.io.git Fix the quotation marks Co-authored-by: Tim Düsterhus --- diff --git a/docs/javascript/components_confirmation.md b/docs/javascript/components_confirmation.md index a41b78ff..4aa076ba 100644 --- a/docs/javascript/components_confirmation.md +++ b/docs/javascript/components_confirmation.md @@ -17,7 +17,7 @@ if (result) { ``` Confirmation dialogs are a special type that use the `role="alertdialog"` attribute and will always include a cancel button. -The dialog itself will be limited to a width of 500px, the title can wrap into multiple lines and there will be no „X“ button to close the dialog. +The dialog itself will be limited to a width of 500px, the title can wrap into multiple lines and there will be no “X” button to close the dialog. ## When to Use @@ -33,7 +33,7 @@ All questions should be phrased in one or two ways depending on the action. Destructive action: > Are you sure you want to delete “Example Object”? -> (German) Wollen Sie „Beispiel-Objekt” wirklich löschen? +> (German) Wollen Sie „Beispiel-Objekt“ wirklich löschen? All other actions: diff --git a/docs/javascript/components_dialog.md b/docs/javascript/components_dialog.md index 11c3620b..71c893b8 100644 --- a/docs/javascript/components_dialog.md +++ b/docs/javascript/components_dialog.md @@ -30,7 +30,7 @@ Alerts are designed to inform the user of something important that requires no f Typical examples for alerts are error messages or warnings. An alert will only provide a single button to acknowledge the dialog and must not contain interactive content. -The dialog itself will be limited to a width of 500px, the title can wrap into multiple lines and there will be no „X“ button to close the dialog. +The dialog itself will be limited to a width of 500px, the title can wrap into multiple lines and there will be no “X” button to close the dialog. ```ts const dialog = dialogFactory()