diff --git a/content/de-DE/website/i18n/code.json b/content/de-DE/website/i18n/code.json index d9f539447c6e3..3a6cd06ca8abc 100644 --- a/content/de-DE/website/i18n/code.json +++ b/content/de-DE/website/i18n/code.json @@ -1,10 +1,10 @@ { "theme.NotFound.title": { - "message": "Page Not Found", + "message": "Seite nicht gefunden", "description": "The title of the 404 page" }, "theme.NotFound.p1": { - "message": "We could not find what you were looking for.", + "message": "Wir konnten leider nicht finden, wonach du suchst.", "description": "The first paragraph of the 404 page" }, "theme.NotFound.p2": { @@ -12,7 +12,7 @@ "description": "The 2nd paragraph of the 404 page" }, "theme.AnnouncementBar.closeButtonAriaLabel": { - "message": "Close", + "message": "Schließen", "description": "The ARIA label for close button of announcement bar" }, "theme.blog.paginator.navAriaLabel": { diff --git a/content/de-DE/website/locale.yml b/content/de-DE/website/locale.yml index 6bbbc67c53215..e045d22f60f1b 100644 --- a/content/de-DE/website/locale.yml +++ b/content/de-DE/website/locale.yml @@ -75,7 +75,7 @@ releases: stable_desc: Regelmäßige, unterstützte Versionen beta_releases: Beta-Veröffentlichungen beta_desc: Teste deine App mit anstehenden Änderungen - alpha_releases: Alpha Releases + alpha_releases: Alpha Veröffentlichungen alpha_desc: Test features slightly more on the edge nightly_releases: Nighly-Veröffentlichungen nightly_desc: Experimentiere mit den neuesten Funktionen diff --git a/content/ja-JP/docs/tutorial/devices.md b/content/ja-JP/docs/tutorial/devices.md index fd1b1f0b1e9b1..332784f2c782d 100644 --- a/content/ja-JP/docs/tutorial/devices.md +++ b/content/ja-JP/docs/tutorial/devices.md @@ -1,14 +1,14 @@ -# Device Access +# デバイスアクセス -Like Chromium based browsers, Electron provides access to device hardware through web APIs. For the most part these APIs work like they do in a browser, but there are some differences that need to be taken into account. The primary difference between Electron and browsers is what happens when device access is requested. In a browser, users are presented with a popup where they can grant access to an individual device. In Electron APIs are provided which can be used by a developer to either automatically pick a device or prompt users to pick a device via a developer created interface. +Chromium ベースのブラウザのように、Electron はウェブ API を介してデバイスハードウェアへのアクセスを提供します。 ほとんどの場合これらの API はブラウザと同じように動作しますが、いくつかの違いを考慮しなければなりません。 Electronとブラウザの主な違いは、デバイスアクセスが要求されたときに起きることです。 ブラウザでは、ユーザーにポップアップが表示され、ユーザーは個々のデバイスにアクセスを許可できます。 Electron API では、デバイスを自動選択したり開発者が作成したインターフェースを介してユーザーにデバイス選択を促したりするために、開発者が利用できる API を提供しています。 -## Web Bluetooth API +## ウェブ Bluetooth API -The [Web Bluetooth API](https://web.dev/bluetooth/) can be used to communicate with bluetooth devices. In order to use this API in Electron, developers will need to handle the [`select-bluetooth-device` event on the webContents](../api/web-contents.md#event-select-bluetooth-device) associated with the device request. +[ウェブ Bluetooth API](https://web.dev/bluetooth/) は、Bluetooth デバイスとの通信に利用できます。 この API を Electron で使用するには、開発者がデバイスリクエストに関連する[webContents の `select-bluetooth-device` イベント](.../api/web-contents.md#event-select-bluetooth-device) をハンドリングする必要があります。 ### サンプル -This example demonstrates an Electron application that automatically selects the first available bluetooth device when the `Test Bluetooth` button is clicked. +この例では、`Test Bluetooth` ボタンがクリックされたときに最初に利用可能な Bluetooth デバイスを自動的に選択する、Electron のアプリケーションを示しています。 ```javascript fiddle='docs/fiddles/features/web-bluetooth' @@ -16,7 +16,7 @@ This example demonstrates an Electron application that automatically selects the ## WebHID API -The [WebHID API](https://web.dev/hid/) can be used to access HID devices such as keyboards and gamepads. Electron provides several APIs for working with the WebHID API: +[WebHID API](https://web.dev/hid/) は、キーボードやゲームパッドなどの HID デバイスのアクセスに利用できます。 Electron は、WebHID API と連携するためにいくつかの API を提供しています。 * The [`select-hid-device` event on the Session](../api/session.md#event-select-hid-device) can be used to select a HID device when a call to `navigator.hid.requestDevice` is made. Additionally the [`hid-device-added`](../api/session.md#event-hid-device-added) and [`hid-device-removed`](../api/session.md#event-hid-device-removed) events on the Session can be used to handle devices being plugged in or unplugged during the `navigator.hid.requestDevice` process. * [`ses.setDevicePermissionHandler(handler)`](../api/session.md#sessetdevicepermissionhandlerhandler) can be used to provide default permissioning to devices without first calling for permission to devices via `navigator.hid.requestDevice`. Additionally, the default behavior of Electron is to store granted device permision through the lifetime of the corresponding WebContents. If longer term storage is needed, a developer can store granted device permissions (eg when handling the `select-hid-device` event) and then read from that storage with `setDevicePermissionHandler`. diff --git a/content/pt-BR/docs/api/window-open.md b/content/pt-BR/docs/api/window-open.md index fc7d8c0bceb68..c650de5bb0df6 100644 --- a/content/pt-BR/docs/api/window-open.md +++ b/content/pt-BR/docs/api/window-open.md @@ -1,6 +1,6 @@ -# Opening windows from the renderer +# Abrindo janelas a partir do renderizador -There are several ways to control how windows are created from trusted or untrusted content within a renderer. Windows can be created from the renderer in two ways: +Existem várias maneiras de controlar como as janelas são criadas a partir de conteúdo confiável ou não confiável dentro de um renderizador. Windows can be created from the renderer in two ways: * clicking on links or submitting forms adorned with `target=_blank` * JavaScript calling `window.open()`