Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translation of Git episode 7 #134

Open
wants to merge 2 commits into
base: ja
Choose a base branch
from

Conversation

rikutakei
Copy link
Collaborator

最後の問題の翻訳がちょっと微妙かもしれません。

よろしくお願いします!

@rikutakei rikutakei linked an issue Oct 27, 2020 that may be closed by this pull request
@kozo2 kozo2 self-requested a review August 1, 2021 08:14
@joelnitta joelnitta self-requested a review August 2, 2021 06:10
Copy link
Member

@joelnitta joelnitta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks so much for the PR!
Most of my comments are rather minor wording suggestions.

@@ -5249,22 +5249,22 @@ msgid ""
"---"
msgstr ""
"---\n"
"title: Remotes in GitHub\n"
"title: GitHub で「リモート」を使う\n"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think titles should generally end in nouns

Suggested change
"title: GitHub で「リモート」を使う\n"
"title: GitHubリモートの使い方\n"

"objectives:\n"
"- \"Explain what remote repositories are and why they are useful.\"\n"
"- \"Push to or pull from a remote repository.\"\n"
"- \"リモートリポジトリとは何か、そしてなぜ便利なのかを説明できるようになる。\"\n"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the R lesson, we have been using a style of 〜なりましょうfor the objectives. I think we should stick with this throughout.

Suggested change
"- \"リモートリポジトリとは何か、そしてなぜ便利なのかを説明できるようになる。\"\n"
"- \"リモートリポジトリとは何か、そしてなぜ便利なのかを説明できるようになりましょう。\"\n"

"- \"Explain what remote repositories are and why they are useful.\"\n"
"- \"Push to or pull from a remote repository.\"\n"
"- \"リモートリポジトリとは何か、そしてなぜ便利なのかを説明できるようになる。\"\n"
"- \"リモートリポジトリからプル、リモートリポジトリへプッシュできるようになる。\"\n"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"- \"リモートリポジトリからプル、リモートリポジトリへプッシュできるようになる。\"\n"
"- \"リモートリポジトリからプル、リモートリポジトリへプッシュできるようになりましょう。\"\n"

"他の人と共同で作業を始めてからバージョンコントロールの真価が発揮\n"
"されます。共同作業を始めるための準備はほとんど整っています。"
"あとは\n"
"一つのリポジトリからもう一つのリポジトリへ内容をコピーする方法だけです。"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"一つのリポジトリからもう一つのリポジトリへ内容をコピーする方法だけです"
"一つのリポジトリから別のリポジトリへ内容をコピーする方法だけです"

"[GitLab](https://gitlab.com/) to hold those master copies; we'll explore the "
"pros\n"
"and cons of this in the final section of this lesson."
"Git のようなシステムでは、作業内容を二つのリポジトリ間、自由に移動させることができます。ですが、\n"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Slightly closer to the original?

Suggested change
"Git のようなシステムでは、作業内容を二つのリポジトリ間、自由に移動させることができます。ですが、\n"
"Git のようなシステムは、二つのリポジトリ間の作業内容の移動を可能にします。しかし、\n"

"> 「Code」タブ内の \"XX commits\" (\"XX\" は数を表しています)を"
"見つけてクリックしましょう。\n"
"> 各コミットの右にある3つのボタンの上をマウスでホバー、そしてクリックしてみましょう。\n"
"> それぞれのボタンからどの様な情報が得られますか?\n"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"> それぞれのボタンからどの様な情報が得られますか?\n"
"> それぞれのボタンからどのような情報が得られますか?\n"

"> プッシュしてください。GitHub で先程作ったリポジトリに行き、ファイルの\n"
"> [タイムスタンプ]({{ page.root }}/reference#timestamp) を見てください。GitHub は"
"どのように時間を記録していますか?\n"
"> なぜこの様に記録しているのでしょう?\n"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"> なぜこの様に記録しているのでしょう?\n"
"> なぜこのように記録しているのでしょう?\n"

"repository."
"> > ## 解答\n"
"> > 変更内容をプッシュすると、ローカルリポジトリで行った変更点をリモートリポジトリと"
"同期させる事になります(大抵の場合、これは他の人に私達の変更内容をシェアするのと変わりません)。"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"同期させる事になります(大抵の場合、これは他の人に私達の変更内容をシェアするのと変わりません)。"
"同期させることになります(大抵の場合、これは他の人と自分の変更内容を共有することになります)。"

"url``` allows us to change the remote's URL to fix it."
"> > ## 解答\n"
"> > リモートを加える際にエラーメッセージは出ません(git に新しいリモートが"
"存在している事を伝えただけで、まだ使っていないからです)。```git push``` を"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"存在している事を伝えただけで、まだ使っていないからです)。```git push``` を"
"存在していることを伝えただけで、まだ使っていないからです)。```git push``` を"

"> GitHub repo, you didn't add a README.md or a license file. If you had, "
"what do you think would have happened when\n"
"> you tried to link your local and remote repositories?\n"
"> この部分では、GitHub でリモートリポジトリの作り方を習いました。"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"> この部分では、GitHub でリモートリポジトリの作り方を習いました。"
"> このレッスンでは、GitHub でリモートリポジトリの作り方を習いました。"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Translation: git-novice Episode 7
2 participants