Skip to content

Commit 01c872c

Browse files
authored
Update README.md
READMEの日本語訳
1 parent 04fa482 commit 01c872c

File tree

1 file changed

+44
-36
lines changed

1 file changed

+44
-36
lines changed

README.md

Lines changed: 44 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,29 @@
11
# Ardublockly
2-
Ardublockly is a visual programming editor for Arduino. It is based on Google's [Blockly][1], which has been forked to generate [Arduino][15] code.
2+
`Ardublockly` は、Arduino向けのビジュアルプログラミングエディターです。このフォークは日本語に翻訳する作業を行っています。このシステムは Google's [Blockly][1], のフォークを利用しており、 [Arduino][15] のコードを生成する事ができます。
33

4-
The `ArdublocklyServer` Python package initialises a local server to be able to compile and load the Arduino code using the [Arduino IDE][2].
4+
`ArdublocklyServer` は、[Arduino IDE][2] を利用してArduinoコードをコンパイル、およびターゲットにロードできるように、Pythonを利用してローカルサーバーを構築できます。
55

6-
This is all packaged in a self contained executable desktop application for Windows, Mac OS X, and Linux.
6+
これらは、WindowsMac OS X、および Linux で動作する自己完結型の実行可能デスクトップアプリケーションにパッケージ化されています。
77

88
![Ardublockly desktop program screenshot][desktop_screeshot]
99

1010

11-
## Features
12-
* Generates Arduino code with visual drag-and-drop blocks
13-
* Uploads the code to an Arduino Board
14-
* Useful "code block warnings"
15-
* Compatible with a wide range of official Arduino Boards
16-
* Works on Windows / Linux / Mac OS X
11+
## 特徴
12+
* ブロックをドラッグ&&ドロップして視覚的にArduinoコードを作成できます
13+
* コードをArduinoボードにアップロードできます
14+
* 便利な「コードブロック警告」
15+
* 幅広い公式Arduinoボードと互換性があります
16+
* Windows / Linux / Mac OS Xで動作します
1717

18-
Ardublockly is still under development and a few features are not yet implemented. A to-do list can be found in the [TODO.md][3] file.
18+
Ardublocklyは、まだ開発中であり、いくつかの機能はまだ実装されていません。今後のToDoリストは [TODO.md][3] に記載されています。
1919

20-
Currently tested under Windows with Python 2.7 and 3.4 and in Linux and MacOS X with Python 2.7.
20+
現在、Windows では Python 2.7 および 3.4 を使用し、Linux および MacOS X では Python 2.7 でテストされています。
2121

22+
(訳者注: ビルド情報: ベースとなるBlocklyは古いバージョンが使用されており、2.7 環境が必須です。また、Google Closure Library のバージョンも古く、一部、オンライン経由で実行される機能が失われています。その為、完全なビルドができません)
2223

23-
## Cloning the repository
24-
Please note that there are submodules in the repository that need initialisation. So, to correctly clone the Ardublockly repository:
24+
25+
## リポジトリのクローン時にはサブモジュールの初期化を忘れずに
26+
リポジトリには初期化が必要なサブモジュールがあることに注意してください。Ardublocklyリポジトリを正しくクローンするには、
2527

2628
```
2729
git clone https://github.com/carlosperate/ardublockly.git
@@ -30,42 +32,48 @@ git submodule update --init --recursive
3032
```
3133

3234

33-
## Installing
34-
The desktop application is available for Windows/Mac/Linux and runs as a stand-alone executable that can be downloaded from the [Ardublockly repository releases page][4].
35+
## インストール
36+
デスクトップアプリケーションは Windows / Mac / Linux で利用でき、[Ardublockly repository releases page][4] からスタンドアロンの実行可能ファイルをダウンロードしてください。
37+
38+
生成されたArduinoコードのビルドとモジュールへのアップロードには、[Arduino IDE バージョン 1.6.x 以降][2]も必要です。
3539

36-
You will also need the [Arduino IDE version 1.6.x or higher][2].
40+
#### 開発ビルド
41+
GitHub リポジトリに更新が追加されるたびに自動的に生成される __UNSTABLE__ 開発ビルドをテストすることもできます。
3742

38-
#### Development builds
39-
You can also test __UNSTABLE__ development builds automatically generated every time an update is added to the GitHub repository:
43+
(訳者注: 現在は正常に稼働していない?)
4044

4145
| Linux build | Windows build | Mac OS X build |
4246
|:-------------------:|:-------------------:|:--------------------:|
4347
| [![Linux Build Status](https://circleci.com/gh/carlosperate/ardublockly/tree/master.svg?style=svg)](https://circleci.com/gh/carlosperate/ardublockly/tree/master) | [![Windows Build status](https://ci.appveyor.com/api/projects/status/t877g920hdiifc2i?svg=true)](https://ci.appveyor.com/project/carlosperate/ardublockly) | [![Mac Build Status](https://travis-ci.org/carlosperate/ardublockly.svg?branch=master)](https://travis-ci.org/carlosperate/ardublockly) |
4448
| [Download Link][12] | [Download Link][13] | [Download Link][14] |
4549

46-
#### "Core version" (Python server only)
47-
If you prefer, the core software can be used by running only the Python server, which loads the web interface on your local browser (Chrome recommended).
50+
#### "Core version" (Python サーバーのみ)
51+
必要に応じて、ローカル ブラウザ (Chrome を推奨) に Web インターフェイスをロードする Python サーバーのみを実行して、コア ソフトウェアを使用することもできます。
4852

49-
Full installation instructions for this version can be found in [this Github repository Wiki][5].
53+
このバージョンの完全なインストール手順は、[this Github repository Wiki][5] にあります。
5054

51-
The quick version: Clone this repository, initialise all submodules, and execute:
55+
簡単な起動方法としては、このリポジトリのクローンを作成し、すべてのサブモジュールを初期化して、
5256

5357
```
5458
python start.py
5559
```
5660

57-
This will work on Windows, Linux (including ARM) and Mac OS X, with Python >2.7 or >3.4
61+
これは、Python > 2.7 または > 3.4 を搭載した、 Windows、Linux (ARM を含む)、Mac OS X で動作します。
62+
63+
(訳者注: Python の仕様変更に伴い < 3.8 であること。Windows 3.6.8 で動作確認済み)
64+
5865

66+
## 起動方法
67+
1. [Ardublocklyをインストール][5].
68+
2. [Arduino IDE][2] バージョン 1.6.x 以降をインストールします (常に最新バージョンを推奨します)。
69+
3. インストール方法の定義に従って Ardublockly を実行します。
70+
3. Ardublocklyの設定を開き、Arduino IDEのパスを設定します [following these instructions][6]
5971

60-
## Running
61-
1. [Install Ardublockly][5].
62-
2. Install the [Arduino IDE][2] version 1.6.x or higher (latest version is always recommended).
63-
3. Run Ardublockly as defined in your installation method.
64-
3. Configure Ardublockly to locate the Arduino IDE [following these instructions][6].
6572

73+
## オンラインデモ
74+
Ardublockly メイン インターフェイスの最新リリースのデモは、次の 2 つのリンクにあります (コードを Arduino にロードするには、完全な Ardublockly アプリケーションをダウンロードしてコンピュータで実行する必要があります)。
6675

67-
## Online Demos
68-
A demo of the latest release of Ardublockly main interface can be found in the following two links (to load the code into an Arduino it requires the full Ardublockly application to be downloaded and run on your computer):
76+
(訳者注: リンク先は本家の英語版)
6977

7078
#### [Ardublockly][10]
7179
![WebApp screenshot responsive design][web_screenshot_responsive]
@@ -74,20 +82,20 @@ A demo of the latest release of Ardublockly main interface can be found in the f
7482
![WebApp screenshot][web_screenshot_classic]
7583

7684

77-
## Documentation
78-
The documentation, including installation instructions, configuration instructions, and developer information can be found in the [Ardublockly GitHub repository Wiki][7].
85+
## 資料
86+
インストール手順、構成手順、開発者情報などのドキュメントは、[Ardublockly GitHub リポジトリ Wiki][7] にあります。
7987

80-
To download the documentation you can git clone the wiki data:
88+
ドキュメントをダウンロードするには、wikiデータを git clone します。
8189

8290
```
8391
git clone https://github.com/carlosperate/ardublockly.wiki.git
8492
```
8593

8694

87-
## Credit
88-
This project has been inspired by [BlocklyDuino][16].
95+
## クレジット
96+
このプロジェクトは [BlocklyDuino][16] からインスピレーションを受けています。
8997

90-
Blockly original source is Copyright of Google Inc. [https://developers.google.com/blockly/][1]. A list of changes to the Blockly fork can be found in the [Blockly subdirectory README][17] file.
98+
Blockly のオリジナル ソースは Google Inc. の著作権です [https://developers.google.com/blockly/][1]Blockly フォークへの変更のリストは、[Blockly subdirectory README][17] にあります。
9199

92100

93101
## License

0 commit comments

Comments
 (0)