From 681a772f5f4797fe4e7efeb5b8f094d801a1c43a Mon Sep 17 00:00:00 2001 From: RacioN Date: Sun, 28 Feb 2016 20:42:14 +0900 Subject: [PATCH 1/3] Add list --- docs-translations/jp/README.md | 55 ++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/docs-translations/jp/README.md b/docs-translations/jp/README.md index accde97397..6248e35044 100644 --- a/docs-translations/jp/README.md +++ b/docs-translations/jp/README.md @@ -3,6 +3,7 @@ そうでない場合、おそらくご使用の Electron のバージョンと互換性のない API 変更を含んだ development ブランチのドキュメントを使っているものと思われます。 その場合、atom.io の [available versions](http://electron.atom.io/docs/) リストにある別のバージョンのドキュメントに切り替えることができます。また GitHub で閲覧している場合、"Switch branches/tags" ドロップダウンを開いて、バージョンに対応したタグを選ぶこともできます。 +_リンクになっていないリストは未翻訳のものです。_ ## FAQ 頻繁に聞かれる質問がありますので、issueを作成する前にこれをチェックしてください。 @@ -31,3 +32,57 @@ ## API リファレンス * [概要](api/synopsis.md) +* [Process Object](api/process.md) +* [Supported Chrome Command Line Switches](api/chrome-command-line-switches.md) +* [Environment Variables](api/environment-variables.md) + +### Custom DOM Elements: + +* [`File` Object](api/file-object.md) +* `` Tag +* [`window.open` Function](api/window-open.md) + +### Modules for the Main Process: + +* [app](api/app.md) +* [autoUpdater](api/auto-updater.md) +* BrowserWindow + * [frameless-window](frameless-window.md) +* [contentTracing](api/content-tracing.md) +* [dialog](api/dialog.md) +* [globalShortcut](api/global-shortcut.md) +* [ipcMain](api/ipc-main.md) +* [Menu](api/menu.md) +* [MenuItem](api/menu-item.md) +* [powerMonitor](api/power-monitor.md) +* [powerSaveBlocker](api/power-save-blocker.md) +* [protocol](api/protocol.md) +* [session](api/session.md) +* webContents +* [Tray](api/tray.md) + +### Modules for the Renderer Process (Web Page): + +* [desktopCapturer](api/desktop-capturer.md) +* [ipcRenderer](api/ipc-renderer.md) +* [remote](api/remote.md) +* [webFrame](api/web-frame.md) + +### Modules for Both Processes: + +* [clipboard](api/clipboard.md) +* [crashReporter](api/crash-reporter.md) +* [nativeImage](api/native-image.md) +* [screen](api/screen.md) +* [shell](api/shell.md) + +## Development + +* [Coding Style](development/coding-style.md) +* [Source Code Directory Structure](development/source-code-directory-structure.md) +* [Technical Differences to NW.js (formerly node-webkit)](development/atom-shell-vs-node-webkit.md) +* [Build System Overview](development/build-system-overview.md) +* [Build Instructions (OS X)](development/build-instructions-osx.md) +* [Build Instructions (Windows)](development/build-instructions-windows.md) +* [Build Instructions (Linux)](development/build-instructions-linux.md) +* [Setting Up Symbol Server in debugger](development/setting-up-symbol-server.md) From e3dde12c45d2e8817005c74beea1f57696d3f13b Mon Sep 17 00:00:00 2001 From: RacioN Date: Sun, 28 Feb 2016 20:50:16 +0900 Subject: [PATCH 2/3] Update read me tranlation --- docs-translations/jp/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs-translations/jp/README.md b/docs-translations/jp/README.md index 6248e35044..558d362498 100644 --- a/docs-translations/jp/README.md +++ b/docs-translations/jp/README.md @@ -33,21 +33,21 @@ _リンクになっていないリストは未翻訳のものです。_ * [概要](api/synopsis.md) * [Process Object](api/process.md) -* [Supported Chrome Command Line Switches](api/chrome-command-line-switches.md) -* [Environment Variables](api/environment-variables.md) +* [サポートしているChromeコマンドラインスイッチ](api/chrome-command-line-switches.md) +* [環境変数](api/environment-variables.md) ### Custom DOM Elements: * [`File` Object](api/file-object.md) * `` Tag -* [`window.open` Function](api/window-open.md) +* [`window.open` 関数](api/window-open.md) ### Modules for the Main Process: * [app](api/app.md) * [autoUpdater](api/auto-updater.md) * BrowserWindow - * [frameless-window](frameless-window.md) + * [フレームの無いウィンドウ](api/frameless-window.md) * [contentTracing](api/content-tracing.md) * [dialog](api/dialog.md) * [globalShortcut](api/global-shortcut.md) @@ -78,11 +78,11 @@ _リンクになっていないリストは未翻訳のものです。_ ## Development -* [Coding Style](development/coding-style.md) -* [Source Code Directory Structure](development/source-code-directory-structure.md) -* [Technical Differences to NW.js (formerly node-webkit)](development/atom-shell-vs-node-webkit.md) -* [Build System Overview](development/build-system-overview.md) -* [Build Instructions (OS X)](development/build-instructions-osx.md) -* [Build Instructions (Windows)](development/build-instructions-windows.md) -* [Build Instructions (Linux)](development/build-instructions-linux.md) -* [Setting Up Symbol Server in debugger](development/setting-up-symbol-server.md) +* Coding Style +* Source Code Directory Structure +* Technical Differences to NW.js (formerly node-webkit) +* Build System Overview +* Build Instructions (OS X) +* Build Instructions (Windows) +* Build Instructions (Linux) +* Setting Up Symbol Server in debugger From 2d11b1d9eb36e88d8650ed7596b5b8d29ff508e9 Mon Sep 17 00:00:00 2001 From: RacioN Date: Sun, 28 Feb 2016 20:55:47 +0900 Subject: [PATCH 3/3] Update read me tranlation --- docs-translations/jp/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs-translations/jp/README.md b/docs-translations/jp/README.md index 558d362498..a71661a7e5 100644 --- a/docs-translations/jp/README.md +++ b/docs-translations/jp/README.md @@ -36,13 +36,13 @@ _リンクになっていないリストは未翻訳のものです。_ * [サポートしているChromeコマンドラインスイッチ](api/chrome-command-line-switches.md) * [環境変数](api/environment-variables.md) -### Custom DOM Elements: +### カスタムDOM要素: * [`File` Object](api/file-object.md) * `` Tag * [`window.open` 関数](api/window-open.md) -### Modules for the Main Process: +### Main Processのモジュール: * [app](api/app.md) * [autoUpdater](api/auto-updater.md) @@ -61,14 +61,14 @@ _リンクになっていないリストは未翻訳のものです。_ * webContents * [Tray](api/tray.md) -### Modules for the Renderer Process (Web Page): +### Renderer Processのモジュール (Web Page): * [desktopCapturer](api/desktop-capturer.md) * [ipcRenderer](api/ipc-renderer.md) * [remote](api/remote.md) * [webFrame](api/web-frame.md) -### Modules for Both Processes: +### 両方のProcessのモジュール : * [clipboard](api/clipboard.md) * [crashReporter](api/crash-reporter.md) @@ -76,7 +76,7 @@ _リンクになっていないリストは未翻訳のものです。_ * [screen](api/screen.md) * [shell](api/shell.md) -## Development +## 開発 * Coding Style * Source Code Directory Structure