Fix the quotation marks
authorAlexander Ebert <ebert@woltlab.com>
Thu, 6 Oct 2022 11:10:27 +0000 (13:10 +0200)
committerGitHub <noreply@github.com>
Thu, 6 Oct 2022 11:10:27 +0000 (13:10 +0200)
Co-authored-by: Tim Düsterhus <duesterhus@woltlab.com>
docs/javascript/components_confirmation.md
docs/javascript/components_dialog.md

index a41b78ff21c6f9135bf78cd06445f63635acd64b..4aa076baf8c5a39df919f51d1ade535f681bd54d 100644 (file)
@@ -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 â\80\9e\80\9c 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 â\80\9c\80\9d 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 â\80\9eBeispiel-Objektâ\80\9d wirklich löschen?
+> (German) Wollen Sie â\80\9eBeispiel-Objektâ\80\9c wirklich löschen?
 
 All other actions:
 
index 11c3620b33469f46809e6f91b256bb44bf2a0184..71c893b8b9c80054c07313f89a1fd5b55f4a9193 100644 (file)
@@ -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 â\80\9e\80\9c 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 â\80\9c\80\9d button to close the dialog.
 
 ```ts
 const dialog = dialogFactory()