Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

feat: New Crowdin translations (auto-merged 🤖) #2041

Merged
merged 19 commits into from
Sep 14, 2021
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
1f06564
New translations auto-updater.md (German)
MarshallOfSound Sep 14, 2021
8952937
New translations webview-tag.md (French)
MarshallOfSound Sep 14, 2021
95932c0
New translations auto-updater.md (French)
MarshallOfSound Sep 14, 2021
86f2df0
New translations webview-tag.md (Spanish)
MarshallOfSound Sep 14, 2021
1973b40
New translations webview-tag.md (German)
MarshallOfSound Sep 14, 2021
71e8d2a
New translations auto-updater.md (Spanish)
MarshallOfSound Sep 14, 2021
f8a09e2
New translations auto-updater.md (Russian)
MarshallOfSound Sep 14, 2021
3017ade
New translations auto-updater.md (Portuguese, Brazilian)
MarshallOfSound Sep 14, 2021
9e1e1c2
New translations auto-updater.md (Chinese Simplified)
MarshallOfSound Sep 14, 2021
0fa5477
New translations auto-updater.md (Japanese)
MarshallOfSound Sep 14, 2021
f7d284a
New translations webview-tag.md (Japanese)
MarshallOfSound Sep 14, 2021
4a7fff8
New translations webview-tag.md (Russian)
MarshallOfSound Sep 14, 2021
7e57023
New translations webview-tag.md (Chinese Simplified)
MarshallOfSound Sep 14, 2021
a9f8fe3
New translations webview-tag.md (Portuguese, Brazilian)
MarshallOfSound Sep 14, 2021
87bd3e9
New translations webview-tag.md (Japanese)
MarshallOfSound Sep 14, 2021
067458f
New translations auto-updater.md (Japanese)
MarshallOfSound Sep 14, 2021
6b7d8b2
New translations webview-tag.md (French)
MarshallOfSound Sep 14, 2021
d15a09d
New translations window-open.md (French)
MarshallOfSound Sep 14, 2021
f3c5c7f
New translations application-debugging.md (French)
MarshallOfSound Sep 14, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
New translations webview-tag.md (Japanese)
feat: new translations
  • Loading branch information
MarshallOfSound committed Sep 14, 2021
commit f7d284a91a5a0bf0fc8015da9d5741d594e23f7f
5 changes: 4 additions & 1 deletion content/ja-JP/docs/api/webview-tag.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,13 @@ Electron の `webview` タグは [Chromium の `webview`][chrome-webview] に基
### `preload`

```html
<!-- from a file -->
<webview src="https://www.github.com/" preload="./test.js"></webview>
<!-- or if you want to load from an asar archive -->
<webview src="https://www.github.com/" preload="./app.asar/test.js"></webview>
```

この `String` は、ゲストのページで他のスクリプトを実行する前に読み込まれるスクリプトを指定します。 スクリプトの URL のプロトコルは、`file:` または `asar:` のいずれかでなければなりません。これは、ゲストページ内で `require` によってロードされるためです。
この `String` は、ゲストのページで他のスクリプトを実行する前に読み込まれるスクリプトを指定します。 The protocol of script's URL must be `file:` (even when using `asar:` archives) because it will be loaded by Node's `require` under the hood, which treats `asar:` archives as virtual directories.

ゲストページに Node Integration がない場合、このスクリプトはすべての Node APIにアクセスできますが、Node によって挿入されたグローバルオブジェクトはこのスクリプトの実行が終了した後に削除されます。

Expand Down