From 49480fd1cc43cad88bea216b4508ca6f8a19f313 Mon Sep 17 00:00:00 2001 From: MDN Date: Thu, 16 Sep 2021 00:51:24 +0000 Subject: [CRON] sync translated content --- files/de/_redirects.txt | 6 ++-- files/de/_wikihistory.json | 28 ++++++++--------- files/de/conflicting/web/api/file/name/index.html | 36 ++++++++++++++++++++++ files/de/web/api/blob/size/index.html | 37 +++++++++++++++++++++++ files/de/web/api/file/filename/index.html | 35 --------------------- files/de/web/api/file/filesize/index.html | 36 ---------------------- 6 files changed, 91 insertions(+), 87 deletions(-) create mode 100644 files/de/conflicting/web/api/file/name/index.html create mode 100644 files/de/web/api/blob/size/index.html delete mode 100644 files/de/web/api/file/filename/index.html delete mode 100644 files/de/web/api/file/filesize/index.html (limited to 'files/de') diff --git a/files/de/_redirects.txt b/files/de/_redirects.txt index 30ab6fb6ff..337bc6522a 100644 --- a/files/de/_redirects.txt +++ b/files/de/_redirects.txt @@ -195,8 +195,8 @@ /de/docs/CSS_Referenz/Mozilla_CSS_Erweiterungen /de/docs/Web/CSS/Mozilla_Extensions /de/docs/CSS_in_HTML_einbinden /de/docs/Web/CSS/@import /de/docs/DOM /de/docs/Web/API/Document_Object_Model -/de/docs/DOM/File.fileName /de/docs/Web/API/File/fileName -/de/docs/DOM/File.fileSize /de/docs/Web/API/File/fileSize +/de/docs/DOM/File.fileName /de/docs/conflicting/Web/API/File/name +/de/docs/DOM/File.fileSize /de/docs/Web/API/Blob/size /de/docs/DOM/File.name /de/docs/Web/API/File/name /de/docs/DOM/Node /de/docs/Web/API/Node /de/docs/DOM/Node.childNodes /de/docs/Web/API/Node/childNodes @@ -421,6 +421,8 @@ /de/docs/Web/API/Element.querySelector /de/docs/Web/API/Element/querySelector /de/docs/Web/API/File/Typ /de/docs/Web/API/File/type /de/docs/Web/API/File/Zugriff_auf_Dateien_von_Webapplikationen /de/docs/Web/API/File/Using_files_from_web_applications +/de/docs/Web/API/File/fileName /de/docs/conflicting/Web/API/File/name +/de/docs/Web/API/File/fileSize /de/docs/Web/API/Blob/size /de/docs/Web/API/FullscreenOptions /de/docs/orphaned/Web/API/FullscreenOptions /de/docs/Web/API/IndexedDB_API/IndexedDB_verwenden /de/docs/Web/API/IndexedDB_API/Using_IndexedDB /de/docs/Web/API/Navigator/registerProtocolHandler/Webbasierte_protokoll-handler /de/docs/Web/API/Navigator/registerProtocolHandler/Web-based_protocol_handlers diff --git a/files/de/_wikihistory.json b/files/de/_wikihistory.json index a402e431bf..8a0840e847 100644 --- a/files/de/_wikihistory.json +++ b/files/de/_wikihistory.json @@ -2245,6 +2245,13 @@ "fscholz" ] }, + "Web/API/Blob/size": { + "modified": "2019-03-23T23:33:53.208Z", + "contributors": [ + "fscholz", + "nothine" + ] + }, "Web/API/CSS": { "modified": "2020-10-15T22:34:59.314Z", "contributors": [ @@ -3008,20 +3015,6 @@ "matschu" ] }, - "Web/API/File/fileName": { - "modified": "2019-03-23T23:33:53.570Z", - "contributors": [ - "fscholz", - "nothine" - ] - }, - "Web/API/File/fileSize": { - "modified": "2019-03-23T23:33:53.208Z", - "contributors": [ - "fscholz", - "nothine" - ] - }, "Web/API/File/name": { "modified": "2019-03-23T23:33:48.935Z", "contributors": [ @@ -13569,6 +13562,13 @@ "Sheppy" ] }, + "conflicting/Web/API/File/name": { + "modified": "2019-03-23T23:33:53.570Z", + "contributors": [ + "fscholz", + "nothine" + ] + }, "conflicting/Web/API/WindowOrWorkerGlobalScope": { "modified": "2019-03-23T23:01:42.969Z", "contributors": [ diff --git a/files/de/conflicting/web/api/file/name/index.html b/files/de/conflicting/web/api/file/name/index.html new file mode 100644 index 0000000000..af385a0406 --- /dev/null +++ b/files/de/conflicting/web/api/file/name/index.html @@ -0,0 +1,36 @@ +--- +title: File.fileName +slug: conflicting/Web/API/File/name +tags: + - DOM + - Files +translation_of: Web/API/File/fileName +original_slug: Web/API/File/fileName +--- +

{{APIRef("File API")}}{{non-standard_header}}

+ +

{{deprecated_header(7.0)}}

+ +

Summary

+ +

Returns the name of the file. For security reasons the path is excluded from this property.

+ +
This property is deprecated. Use {{domxref("File.name")}} instead.
+ +

Syntax

+ +
var name = instanceOfFile.fileName
+ +

Value

+ +

A string

+ +

Specification

+ +

Not part of any specification.

+ +

See also

+ + diff --git a/files/de/web/api/blob/size/index.html b/files/de/web/api/blob/size/index.html new file mode 100644 index 0000000000..f4d832f944 --- /dev/null +++ b/files/de/web/api/blob/size/index.html @@ -0,0 +1,37 @@ +--- +title: File.fileSize +slug: Web/API/Blob/size +tags: + - DOM + - Files + - Property +translation_of: Web/API/File/fileSize +original_slug: Web/API/File/fileSize +--- +

{{APIRef("File API") }}{{non-standard_header}}

+ +

{{deprecated_header(7.0)}}

+ +

Summary

+ +

Returns the size of a file in bytes.

+ +
This property is deprecated. Use {{domxref("Blob.size")}} instead.
+ +

Syntaxe

+ +
var size = instanceOfFile.fileSize
+ +

Value

+ +

A number

+ +

Specification

+ +

Not part of any specification.

+ +

See also

+ + diff --git a/files/de/web/api/file/filename/index.html b/files/de/web/api/file/filename/index.html deleted file mode 100644 index 7dbf4f7559..0000000000 --- a/files/de/web/api/file/filename/index.html +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: File.fileName -slug: Web/API/File/fileName -tags: - - DOM - - Files -translation_of: Web/API/File/fileName ---- -

{{APIRef("File API")}}{{non-standard_header}}

- -

{{deprecated_header(7.0)}}

- -

Summary

- -

Returns the name of the file. For security reasons the path is excluded from this property.

- -
This property is deprecated. Use {{domxref("File.name")}} instead.
- -

Syntax

- -
var name = instanceOfFile.fileName
- -

Value

- -

A string

- -

Specification

- -

Not part of any specification.

- -

See also

- - diff --git a/files/de/web/api/file/filesize/index.html b/files/de/web/api/file/filesize/index.html deleted file mode 100644 index 0c91c5f739..0000000000 --- a/files/de/web/api/file/filesize/index.html +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: File.fileSize -slug: Web/API/File/fileSize -tags: - - DOM - - Files - - Property -translation_of: Web/API/File/fileSize ---- -

{{APIRef("File API") }}{{non-standard_header}}

- -

{{deprecated_header(7.0)}}

- -

Summary

- -

Returns the size of a file in bytes.

- -
This property is deprecated. Use {{domxref("Blob.size")}} instead.
- -

Syntaxe

- -
var size = instanceOfFile.fileSize
- -

Value

- -

A number

- -

Specification

- -

Not part of any specification.

- -

See also

- - -- cgit v1.2.3-54-g00ecf