-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(de): translate diff [53930e7004]
Machine translation from English using gpt-4o-2024-08-06. Source: mdn/content@53930e7 System prompt: ```md You are tasked with translating MDN Web Docs content from English to German. Ensure that the translation is accurate, preserves technical terminology, and follows the rules provided below. # Rules for Translation 1. Format: - The input is a Markdown file. - The output should be a Markdown file. - Return the raw output, without wrapping it in a Markdown code block. - Keep GFM alert syntax untranslated, such as `> [!NOTE]`, `> [!WARNING]`, and `> [!CALLOUT]`. - If the input contains HTML tags wrapped in backticks (e.g. `<video>`), make sure they are wrapped in the output. 2. Language: - Prefer formal language ("Sie") over informal language ("du"). 3. Code blocks: - Do not translate code blocks. - Do not translate terms wrapped in backticks. 4. Macro calls: - MDN uses macros for dynamic content insertion. These macros must remain **unchanged** and not translated. - Macro calls start with `{{`, followed by the macro name, optional parameters, and end with `}}`. - Avoid invalid macro calls by ensuring curly braces, parentheses, and quotes are closed properly. 5. Technical terms and code snippets in text: - Keep technical terms like element names, attributes, and method names in **English**. Only translate the surrounding descriptive text. 6. Links and References: - Translate link descriptions, but keep the URLs and their structure intact. - Do not change the locale in URLs. 7. Glossary: - "Browser compatibility" => "Browser-Kompatibilität" - "Guide" => "Leitfaden" - "How to" => "Anleitung" # Translation Scope Translate the following Markdown content from **English** to **German** while adhering to the rules above. ```
- Loading branch information
Showing
22 changed files
with
894 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
--- | ||
title: Same-origin policy | ||
title: Same-Origin-Policy | ||
slug: Glossary/Same-origin_policy | ||
l10n: | ||
sourceCommit: 50e5edd07155de2eec2a8b6b2ad95820748cfec7 | ||
sourceCommit: d0b6fba231b2863948360034b123325805ab016e | ||
--- | ||
|
||
{{GlossarySidebar}} | ||
|
||
Die **[same-origin policy](/de/docs/Web/Security/Same-origin_policy)** ist ein kritischer Sicherheitsmechanismus, der einschränkt, wie ein Dokument oder Skript, das von einem {{Glossary("origin", "Origin")}} geladen wurde, mit einer Ressource von einem anderen Origin interagieren kann. | ||
Die **[Same-Origin-Policy](/de/docs/Web/Security/Same-origin_policy)** ist ein kritischer Sicherheitsmechanismus, der einschränkt, wie ein Dokument oder Skript, das von einem {{Glossary("origin", "Origin")}} geladen wurde, mit einer Ressource von einem anderen Origin interagieren kann. | ||
|
||
Sie hilft dabei, potenziell bösartige Dokumente zu isolieren und reduziert mögliche Angriffsvektoren. | ||
Sie hilft, potenziell bösartige Dokumente zu isolieren und reduziert mögliche Angriffsvektoren. | ||
|
||
## Siehe auch | ||
|
||
- [Same-origin policy](/de/docs/Web/Security/Same-origin_policy) | ||
- Verwandte Glossarbegriffe:: | ||
- [Same-Origin-Policy](/de/docs/Web/Security/Same-origin_policy) | ||
- Verwandte Glossarbegriffe: | ||
- {{Glossary("CORS", "CORS")}} | ||
- {{Glossary("origin", "origin")}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
title: "SVGNumberList: appendItem() Methode" | ||
short-title: appendItem() | ||
slug: Web/API/SVGNumberList/appendItem | ||
l10n: | ||
sourceCommit: 0f57507c06180622a5a6168b552317c43eeb9d04 | ||
--- | ||
|
||
{{APIRef("SVG")}} | ||
|
||
Die `appendItem()`-Methode der [`SVGNumberList`](/de/docs/Web/API/SVGNumberList)-Schnittstelle fügt ein neues Element am Ende der Liste ein. | ||
|
||
Das eingefügte Element ist das Element selbst und keine Kopie. | ||
|
||
- Wenn `newItem` bereits in einer Liste enthalten ist, wird es aus seiner vorherigen Liste entfernt, bevor es in diese Liste eingefügt wird. | ||
|
||
## Syntax | ||
|
||
```js-nolint | ||
SVGNumberList.appendItem(newItem) | ||
``` | ||
|
||
### Parameter | ||
|
||
- `newItem` | ||
- : Ein [`SVGNumber`](/de/docs/Web/API/SVGNumber)-Element, das an die Liste angehängt wird. | ||
|
||
### Rückgabewert | ||
|
||
Ein [`SVGNumber`](/de/docs/Web/API/SVGNumber)-Objekt; das angehängte Element aus der Liste. | ||
|
||
### Ausnahmen | ||
|
||
- `NoModificationAllowedError` [`DOMException`](/de/docs/Web/API/DOMException) | ||
- : Wird ausgelöst, wenn [`SVGNumberList`](/de/docs/Web/API/SVGNumberList) einem schreibgeschützten Attribut entspricht oder wenn das Objekt selbst schreibgeschützt ist. | ||
|
||
## Spezifikationen | ||
|
||
{{Specifications}} | ||
|
||
## Browser-Kompatibilität | ||
|
||
{{Compat}} | ||
|
||
## Siehe auch | ||
|
||
- [`SVGNumber`](/de/docs/Web/API/SVGNumber) | ||
- [`SVGNumberList.numberOfItems`](/de/docs/Web/API/SVGNumberList/numberOfItems) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
title: "SVGNumberList: clear() Methode" | ||
short-title: clear() | ||
slug: Web/API/SVGNumberList/clear | ||
l10n: | ||
sourceCommit: 0f57507c06180622a5a6168b552317c43eeb9d04 | ||
--- | ||
|
||
{{APIRef("SVG")}} | ||
|
||
Die `clear()`-Methode der [`SVGNumberList`](/de/docs/Web/API/SVGNumberList)-Schnittstelle entfernt alle derzeit vorhandenen Elemente aus der Liste, so dass eine leere Liste entsteht. | ||
|
||
## Syntax | ||
|
||
```js-nolint | ||
SVGNumberList.clear() | ||
``` | ||
|
||
### Parameter | ||
|
||
Keine. | ||
|
||
### Rückgabewert | ||
|
||
Keiner ({{jsxref('undefined')}}). | ||
|
||
### Ausnahmen | ||
|
||
- `NoModificationAllowedError` [`DOMException`](/de/docs/Web/API/DOMException) | ||
- : Wird ausgelöst, wenn [`SVGNumberList`](/de/docs/Web/API/SVGNumberList) einem schreibgeschützten Attribut entspricht oder wenn das Objekt selbst schreibgeschützt ist. | ||
|
||
## Spezifikationen | ||
|
||
{{Specifications}} | ||
|
||
## Browser-Kompatibilität | ||
|
||
{{Compat}} | ||
|
||
## Siehe auch | ||
|
||
- [`SVGNumber`](/de/docs/Web/API/SVGNumber) |
Oops, something went wrong.