forked from OSGeo-jp/QGIS
-
Notifications
You must be signed in to change notification settings - Fork 0
QGIS 2.0リリースに向けたGUI翻訳作業
Minoru Akagi edited this page May 3, 2013
·
1 revision
- Qt Linguistをダウンロード・インストールする。
- Gitのクライアントソフトをダウンロード・インストールする。WindowsではmsysGitやGitHub for Windowsなど。
- GitHubアカウントを登録する。
-
qgis-jp/Quantum-GISリポジトリをフォークする。
-
フォークしたリポジトリのコードを取得する。
git clone https://github.com/username/Quantum-GIS.git
-
ja_ts_20ブランチに移動する。
cd Quantum-GIS
git checkout ja_ts_20 -
作業用ブランチを作成する。
git checkout -b mybranch
-
Qt Linguistでi18n/qgis_ja.tsを開き、翻訳作業を行う。
-
変更をコミットする。
git add *.ts
git commit -m "update japanese translation" -
変更をGitHubに送信する。
git push origin mybranch
-
GitHubサイトのリポジトリページで作業用ブランチからqgis-jp/ja_ts_20ブランチに対してPullRequestを行う。
-
qgis-jp/Quantum-GISをリモートリポジトリに追加する。
git remote add upstream https://github.com/qgis-jp/Quantum-GIS.git
-
ja_ts_20ブランチに移動する。
git checkout ja_ts_20
-
最新のコードを取得する。
git pull upstream ja_ts_20
-
作業用ブランチを作成する。
git checkout -b mybranch2
5~8は初回と同じ。
作業手順(2回目)の2以降となります。