10000 Merge pull request #105 from marocchino/small-fix-tr · lisongyu/github-cheat-sheet@18c080b · GitHub
[go: up one dir, main page]

Skip to content

Commit 18c080b

Browse files
committed
Merge pull request tiimgreen#105 from marocchino/small-fix-tr
Update translations
2 parents 3463ac0 + e3d7dbe commit 18c080b

File tree

4 files changed

+36
-34
lines changed

4 files changed

+36
-34
lines changed

README.ja.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ GitHub上で差分ページを表示している時、そのURLに`?w=1`を加
8585
![After, tab space example](http://i.imgur.com/70FL4H9.png)
8686

8787
### 特定のユーザーによるコミット履歴
88-
特定のユーザーによるあるリポジトリへのコミット履歴のみを参照したい場合は、`?author=username`をURLの末尾に付ける。
88+
特定のユーザーによるあるリポジトリへのコミット履歴のみを参照したい場合は、`?author={user}`をURLの末尾に付ける。
8989

9090
```
9191
https://github.com/rails/rails/commits/master?author=dhh
@@ -135,7 +135,7 @@ https://github.com/{user}/{repo}/branches/{branch}
135135
GitHubのブランチ比較は以下のようなURLで提供されている:
136136

137137
```
138-
https://github.com/user/repo/compare/{range}
138+
https://github.com/{user}/{repo}/compare/{range}
139139
```
140140

141141
`{range}``master...4-1-stable`に変更する。
@@ -196,8 +196,8 @@ This means you also can modify and push updates to Gists:
196196

197197
```bash
198198
$ git commit
199-
$ Username for 'https://gist.github.com':
200-
$ Password for 'https://tiimgreen@gist.github.com':
199+
Username for 'https://gist.github.com':
200+
Password for 'https://tiimgreen@gist.github.com':
201201
```
202202

203203

@@ -264,7 +264,7 @@ $ git commit -m "Fix screwup, fixes #12"
264264
### issueの相互リンク
265265
同じリポジトリの違うissueへリンクを張り参照させたい場合、`#`に続けてissue番号を指定する。そうすると自動的にリンクが作成されるだろう。
266266

267-
別のリポジトリのissueの場合は`user_name/repo_name#ISSUE_NUMBER`とすれば良い(例: `tiimgreen/toc#12`)。
267+
別のリポジトリのissueの場合は`{user}/{repo}#ISSUE_NUMBER`とすれば良い(例: `tiimgreen/toc#12`)。
268268

269269
![Cross-Link Issues](https://camo.githubusercontent.com/447e39ab8d96b553cadc8d31799100190df230a8/68747470733a2f2f6769746875622d696d616765732e73332e616d617a6f6e6177732e636f6d2f626c6f672f323031312f736563726574732f7265666572656e6365732e706e67)
270270

@@ -324,11 +324,11 @@ GitHubでサポートされているEmojiの完全なリストは[Emoji cheat sh
324324

325325
GitHubで使われているEmojiのトップ5は以下の通りだ:
326326

327-
1. :shipit: - `:shipit:`
328-
2. :sparkles: - `:sparkles:`
329-
3. :-1: - `:-1:`
330-
4. :+1: - `:+1:`
331-
5. :clap: - `:clap:`
327+
1. `:shipit:`
328+
2. `:sparkles:`
329+
3. `:-1:`
330+
4. `:+1:`
331+
5. `:clap:`
332332

333333
### 画像及びアニメーションGIF
334334
画像やアニメーションGIFはコミットのコメントやREADMEなどで利用できる:
@@ -340,7 +340,7 @@ GitHubで使われているEmojiのトップ5は以下の通りだ:
340340
リポジトリにある画像も直接参照することが出来る:
341341

342342
```
343-
![Alt Text](https://github.com/(user)/(repo)/raw/master/path/to/image.gif)
343+
![Alt Text](https://github.com/{user}/{repo}/raw/master/path/to/image.gif)
344344
```
345345

346346
![Peter don't care](http://www.sheawong.com/wp-content/uploads/2013/08/keephatin.gif)

README.ko.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ diff나 파일 URL에 `?ts=4`를 덧붙이면 텝 문자의 크기를 기본값
9292

9393
### Commit History by Author
9494

95-
특정 커미터가 한 모든 커밋을 보고 싶다면 URL에 `?author=username`를 추가하세요.
95+
특정 커미터가 한 모든 커밋을 보고 싶다면 URL에 `?author={user}`를 추가하세요.
9696

9797
```
9898
https://github.com/rails/rails/commits/master?author=dhh
@@ -132,7 +132,7 @@ https://github.com/{user}/{repo}/branches
132132
깃허브에서 브랜치 비교를 하시려면, URL을 이런 식으로 바꾸세요.
133133

134134
```
135-
https://github.com/user/repo/compare/{range}
135+
https://github.com/{user}/{repo}/compare/{range}
136136
```
137137

138138
`{range}``master...4-1-stable`식으로 적습니다.
@@ -196,8 +196,8 @@ $ git clone https://gist.github.com/tiimgreen/10545817
196196

197197
```bash
198198
$ git commit
199-
$ Username for 'https://gist.github.com':
200-
$ Password for 'https://tiimgreen@gist.github.com':
199+
Username for 'https://gist.github.com':
200+
Password for 'https://tiimgreen@gist.github.com':
201201
```
202202

203203
[*gist를 만드는 법에 대해 더 읽어보세요.*](https://help.github.com/articles/creating-gists)
@@ -268,7 +268,7 @@ $ git commit -m "Fix screwup, fixes #12"
268268

269269
같은 저장소의 다른 이슈를 링크하기 원한다면, `#`뒤에 이슈 번호만 입력하시면 자동으로 링크됩니다.
270270

271-
다른 저장소의 이슈를 링크하고 싶다면 `사람_이름/저장소_이름#이슈_번호`로 할 수 있습니다. (예 `tiimgreen/toc#12`)
271+
다른 저장소의 이슈를 링크하고 싶다면 `{user}/{repo}#이슈_번호`로 할 수 있습니다. (예 `tiimgreen/toc#12`)
272272

273273
![Cross-Link Issues](https://camo.githubusercontent.com/447e39ab8d96b553cadc8d31799100190df230a8/68747470733a2f2f6769746875622d696d616765732e73332e616d617a6f6e6177732e636f6d2f626c6f672f323031312f736563726574732f7265666572656e6365732e706e67)
274274

@@ -324,11 +324,11 @@ puts table.to_s
324324

325325
깃허브에서 많이 사용하는 에모지 탑 5위는 이렇습니다.
326326

327-
1. :shipit: - `:shipit:`
328-
2. :sparkles: - `:sparkles:`
329-
3. :-1: - `:-1:`
330-
4. :+1: - `:+1:`
331-
5. :clap: - `:clap:`
327+
1. `:shipit:`
328+
2. `:sparkles:`
329+
3. `:-1:`
330+
4. `:+1:`
331+
5. `:clap:`
332332

333333
### Images/GIFs
334334

@@ -341,7 +341,7 @@ puts table.to_s
341341
저장소에 있는 이미지는 직접 불러서 사용할 수 있습니다.
342342

343343
```
344-
![Alt Text](https://github.com/(user)/(repo)/raw/master/path/to/image.gif)
344+
![Alt Text](https://github.com/{user}/{repo}/raw/master/path/to/image.gif)
345345
```
346346

347347
![Peter don't care](http://www.sheawong.com/wp-content/uploads/2013/08/keephatin.gif)
@@ -370,6 +370,8 @@ puts table.to_s
370370

371371
### Pasting Clipboard Image to Comments
372372

373+
_(크롬에서만 동작합니다)_
374+
373375
스크린샷을 찍고 클립보드에 있는 경우 (mac: `cmd-ctrl-shift-4`), 간단히 이미지를 커맨트 색션에 붙여넣기(`cmd-v / ctrl-v`)할 수 있고 이는 자동으로 깃허브에 업로드 됩니다.
374376

375377
![Pasting Clipboard Image to Comments](https://cloud.githubusercontent.com/assets/39191/5794265/39c9b65a-9f1b-11e4-9bc7-04e41f59ea5f.png)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ Emojis can be added to Pull Requests, Issues, commit messages, etc. using `:name
305305

306306
The full list of supported Emojis on GitHub can be found at [emoji-cheat-sheet.com](http://www.emoji-cheat-sheet.com/) or [scotch-io/All-Github-Emoji-Icons](https://github.com/scotch-io/All-Github-Emoji-Icons).
307307

308-
The top 5 used Ejmojis on GitHub are:
308+
The top 5 used Emojis on GitHub are:
309309

310310
1. `:shipit:`
311311
2. `:sparkles:`

README.zh-cn.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
![After, tab space example](http://i.imgur.com/70FL4H9.png)
8282

8383
### 查看某个用户的Commit历史
84-
查看某个用户的所有提交历史,只需在commits页面URL后加上`?author=username`
84+
查看某个用户的所有提交历史,只需在commits页面URL后加上`?author={user}`
8585

8686
```
8787
https://github.com/rails/rails/commits/master?author=dhh
@@ -133,7 +133,7 @@ https://github.com/{user}/{repo}/branches/{branch}
133133
如果我们想要比较两个分支,可以像下面一样修改URL:
134134

135135
```
136-
https://github.com/user/repo/compare/{range}
136+
https://github.com/{user}/{repo}/compare/{range}
137137
```
138138

139139
其中`{range} = master...4-1-stable`
@@ -197,8 +197,8 @@ $ git clone https://gist.github.com/tiimgreen/10545817
197197

198198
```bash
199199
$ git commit
200-
$ Username for 'https://gist.github.com':
201-
$ Password for 'https://tiimgreen@gist.github.com':
200+
Username for 'https://gist.github.com':
201+
Password for 'https://tiimgreen@gist.github.com':
202202
```
203203

204204

@@ -268,7 +268,7 @@ $ git commit -m "Fix screwup, fixes #12"
268268
### 链接其他仓库的Issue
269269
如果你想引用到同一个仓库中的一个Issue,只需使用井号 `#` 加上Issue号,这样就会自动创建到此Issue的链接。
270270

271-
要链接到其他仓库的Issue,就使用`user_name/repo_name#ISSUE_NUMBER`的方式,例如`tiimgreen/toc#12`
271+
要链接到其他仓库的Issue,就使用`{user}/{repo}#ISSUE_NUMBER`的方式,例如`tiimgreen/toc#12`
272272

273273
![Cross-Link Issues](https://camo.githubusercontent.com/447e39ab8d96b553cadc8d31799100190df230a8/68747470733a2f2f6769746875622d696d616765732e73332e616d617a6f6e6177732e636f6d2f626c6f672f323031312f736563726574732f7265666572656e6365732e706e67)
274274

@@ -317,11 +317,11 @@ Github支持的完整表情符号列表详见[emoji-cheat-sheet.com](http://www.
317317

318318
Github上使用最多的5个表情符号是:
319319

320-
1. :shipit: - `:shipit:`
321-
2. :sparkles: - `:sparkles:`
322-
3. :-1: - `:-1:`
323-
4. :+1: - `:+1:`
324-
5. :clap: - `:clap:`
320+
1. `:shipit:`
321+
2. `:sparkles:`
322+
3. `:-1:`
323+
4. `:+1:`
324+
5. `:clap:`
325325

326326
### 静态与动态图片
327327
注释和README等文件里也可以使用图片和GIF动画:
@@ -333,7 +333,7 @@ Github上使用最多的5个表情符号是:
333333
仓库中的原始图片可以被直接调用:
334334

335335
```
336-
![Alt Text](https://github.com/(user)/(repo)/raw/master/path/to/image.gif)
336+
![Alt Text](https://github.com/{user}/{repo}/raw/master/path/to/image.gif)
337337
```
338338

339339
![Peter don't care](http://www.sheawong.com/wp-content/uploads/2013/08/keephatin.gif)

0 commit comments

Comments
 (0)
0