From f4fcae1bb8ab5cf683382c0a3d029e9c68ce3de4 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Tue, 29 Sep 2020 08:14:18 +0900 Subject: [PATCH 01/27] Translate the beginning of "05-history" --- po/git-novice.ja.po | 39 +++++++++++++++++++-------------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index c6a81ce6..71cb5e07 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -3712,18 +3712,18 @@ msgid "" "---" msgstr "" "---\n" -"title: Exploring History\n" -"teaching: 25\n" -"exercises: 0\n" -"questions:\n" -"- \"How can I identify old versions of files?\"\n" -"- \"How do I review my changes?\"\n" -"- \"How can I recover old versions of files?\"\n" -"objectives:\n" -"- \"Explain what the HEAD of a repository is and how to use it.\"\n" -"- \"Identify and use Git commit numbers.\"\n" -"- \"Compare various versions of tracked files.\"\n" -"- \"Restore old versions of files.\"\n" +"title: 履歴の探索\n" +"講義: 25\n" +"演習: 0\n" +"質問:\n" +"- \"ファイルの古いバージョンを確認するにはどうすればよいでしょうか?\"\n" +"- \"変更内容を再調査するにはどうすればよいでしょうか?\"\n" +"- \"ファイルの古いバージョンを復元するにはどうすればよいでしょうか?\"\n" +"目標:\n" +"- \"リポジトリのHEADとは何か、またその使い方を説明出来るようになりましょう。\"\n" +"- \"Gitのコミット番号を特定して使ってみましょう。\"\n" +"- \"追跡調査されるファイルのいろいろなバージョンを比較してみましょう。\"\n" +"- \"ファイルの古いバージョンを復元してみましょう。\"\n" "keypoints:\n" "- \"`git diff` displays differences between commits.\"\n" "- \"`git checkout` recovers old versions of files.\"\n" @@ -3735,9 +3735,9 @@ msgid "" "identifiers. You can refer to the _most recent commit_ of the working\n" "directory by using the identifier `HEAD`." msgstr "" -"As we saw in the previous lesson, we can refer to commits by their\n" -"identifiers. You can refer to the _most recent commit_ of the working\n" -"directory by using the identifier `HEAD`." +"前のレッスンで見たように、コミットを識別子で参照できます。\n" +"識別子 `HEAD` を使うことで 作業ディレクトリの _最新のコミット_ \n" +"を参照できます。" #: git-novice/_episodes/05-history.md:23 msgid "" @@ -3746,14 +3746,13 @@ msgid "" "progress by looking, so let's do that using our `HEAD`s. Before we start,\n" "let's make a change to `mars.txt`." msgstr "" -"We've been adding one line at a time to `mars.txt`, so it's easy to track " -"our\n" -"progress by looking, so let's do that using our `HEAD`s. Before we start,\n" -"let's make a change to `mars.txt`." +"`mars.txt` に一度に1行ずつ追加しているので、進展を見て確認することは簡単です。" +"それでは `HEAD` を使ってそれを行ってみましょう。\n" +"始める前に、 `mars.txt` にもう1行加えることで変更を加えてみましょう。" #: git-novice/_episodes/05-history.md:40 msgid "Now, let's see what we get." -msgstr "Now, let's see what we get." +msgstr "それでは、何が得られるか見てみましょう。" # code block #: git-novice/_episodes/05-history.md:42 From 20638ec239bb622d56d0613a6d547074539eac3d Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Tue, 29 Sep 2020 09:54:24 +0900 Subject: [PATCH 02/27] =?UTF-8?q?Translate=20before=20"Don=E2=80=99t=20Los?= =?UTF-8?q?e=20Your=20HEAD"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- po/git-novice.ja.po | 90 ++++++++++++++++++++------------------------- 1 file changed, 39 insertions(+), 51 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 71cb5e07..66e1a5ae 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -3799,12 +3799,10 @@ msgid "" "(where \"~\" is \"tilde\", pronounced [**til**-d*uh*]) \n" "to refer to the commit one before `HEAD`." msgstr "" -"which is the same as what you would get if you leave out `HEAD` (try it). " -"The\n" -"real goodness in all this is when you can refer to previous commits. We do\n" -"that by adding `~1` \n" -"(where \"~\" is \"tilde\", pronounced [**til**-d*uh*]) \n" -"to refer to the commit one before `HEAD`." +"これは、 `HEAD` を省略した場合 (試してみてください) に得られるものと同じです。 " +"これの本当の利点は、以前のコミットを参照できることです。\n" +"それを行うには、`HEAD` より前のコミットを参照するために `~1` \n" +"(「~」は「チルダ」、発音は [**til**-d*uh*]) を追加します。 \n" # code block #: git-novice/_episodes/05-history.md:65 @@ -3823,9 +3821,8 @@ msgid "" "diff`\n" "again, but with the notation `HEAD~1`, `HEAD~2`, and so on, to refer to them:" msgstr "" -"If we want to see the differences between older commits we can use `git " -"diff`\n" -"again, but with the notation `HEAD~1`, `HEAD~2`, and so on, to refer to them:" +"古いコミット間の違いを確認したい場合は、`git diff` を再度使用できますが、" +"`HEAD~1`、`HEAD~2` などの表記を使用して、それらを参照するには下記を行います:" # code block #: git-novice/_episodes/05-history.md:74 @@ -3869,9 +3866,8 @@ msgid "" "commit as well as the commit message, rather than the _differences_ between " "a commit and our working directory that we see by using `git diff`." msgstr "" -"We could also use `git show` which shows us what changes we made at an older " -"commit as well as the commit message, rather than the _differences_ between " -"a commit and our working directory that we see by using `git diff`." +"`git diff` を使用して表示されるコミットと作業ディレクトリの _違い_ ではなく、 " +"古いコミットで行った変更だけでなくコミットメッセージも表示する `git show` を使用することもできます。" # code block #: git-novice/_episodes/05-history.md:93 @@ -3929,13 +3925,11 @@ msgid "" "means \"the previous commit\",\n" "while `HEAD~123` goes back 123 commits from where we are now." msgstr "" -"In this way,\n" -"we can build up a chain of commits.\n" -"The most recent end of the chain is referred to as `HEAD`;\n" -"we can refer to previous commits using the `~` notation,\n" -"so `HEAD~1`\n" -"means \"the previous commit\",\n" -"while `HEAD~123` goes back 123 commits from where we are now." +"このようにして、コミットのチェーンを構築できます。\n" +"チェーンの最新の終わりは `HEAD` と呼ばれます;\n" +" `~` 表記を使用して以前のコミットを参照できるため、\n" +" `HEAD~1` は「以前のコミット」を意味し、`HEAD~123` は\n" +"現在の場所から123個前のコミットに戻ります。" #: git-novice/_episodes/05-history.md:123 msgid "" @@ -3950,16 +3944,13 @@ msgid "" "`f22b25e3233b4645dabd0d81e651fe074bd8e73b`,\n" "so let's try this:" msgstr "" -"We can also refer to commits using\n" -"those long strings of digits and letters\n" -"that `git log` displays.\n" -"These are unique IDs for the changes,\n" -"and \"unique\" really does mean unique:\n" -"every change to any set of files on any computer\n" -"has a unique 40-character identifier.\n" -"Our first commit was given the ID\n" -"`f22b25e3233b4645dabd0d81e651fe074bd8e73b`,\n" -"so let's try this:" +"`git log` が表示する、数字と文字の長い文字列を使用して\n" +"コミットを参照することもできます。\n" +"これらは変更に対するユニークなIDであり、「ユニーク」は本当に唯一であることを意味します:\n" +"任意のコンピューター上のファイルの任意のセットに対するすべての変更には、\n" +"ユニークな40文字の識別子があります。\n" +"最初のコミットにはID `f22b25e3233b4645dabd0d81e651fe074bd8e73b` が与えられたので、\n" +"これを試してみましょう:" # code block #: git-novice/_episodes/05-history.md:134 @@ -4004,9 +3995,9 @@ msgid "" "but typing out random 40-character strings is annoying,\n" "so Git lets us use just the first few characters:" msgstr "" -"That's the right answer,\n" -"but typing out random 40-character strings is annoying,\n" -"so Git lets us use just the first few characters:" +"これは正しい答えですが、\n" +"ランダムな40文字の文字列を入力するのは面倒なので、\n" +"Gitは最初の数文字だけを使えばよいようにしてくれています:" # code block #: git-novice/_episodes/05-history.md:155 @@ -4026,10 +4017,10 @@ msgid "" "can we restore older versions of things?\n" "Let's suppose we accidentally overwrite our file:" msgstr "" -"All right! So\n" -"we can save changes to files and see what we've changed—now how\n" -"can we restore older versions of things?\n" -"Let's suppose we accidentally overwrite our file:" +"やりました! \n" +"こんなわけで ファイルへの変更を保存して、何が変更されたかを確認できます。\n" +"では、どうすれば古いバージョンのものを復元できるでしょうか?\n" +"我々のファイルをうっかり上書きしたとしましょう:" # code block #: git-novice/_episodes/05-history.md:183 @@ -4047,16 +4038,15 @@ msgid "" "`git status` now tells us that the file has been changed,\n" "but those changes haven't been staged:" msgstr "" -"`git status` now tells us that the file has been changed,\n" -"but those changes haven't been staged:" +"`git status` は、ファイルが変更されたことを示しますが、\n" +"それらの変更はステージングされていません:" #: git-novice/_episodes/05-history.md:208 msgid "" "We can put things back the way they were\n" "by using `git checkout`:" msgstr "" -"We can put things back the way they were\n" -"by using `git checkout`:" +"`git checkout`を使うと、元の状態に戻すことができます:" # code block #: git-novice/_episodes/05-history.md:211 @@ -4082,14 +4072,13 @@ msgid "" "If we want to go back even further,\n" "we can use a commit identifier instead:" msgstr "" -"As you might guess from its name,\n" -"`git checkout` checks out (i.e., restores) an old version of a file.\n" -"In this case,\n" -"we're telling Git that we want to recover the version of the file recorded " -"in `HEAD`,\n" -"which is the last saved commit.\n" -"If we want to go back even further,\n" -"we can use a commit identifier instead:" +"その名前から推測できるように、\n" +"`git checkout` はファイルの古いバージョンをチェックアウト (つまり、復元) します。\n" +"この場合、\n" +"最後に保存されたコミットである `HEAD` に記録されたファイルのバージョン " +"を復元することをGitに伝えています。\n" +"さらに戻りたい場合は、\n" +"代わりにコミット識別子を使うことができます:" # code block #: git-novice/_episodes/05-history.md:232 git-novice/_extras/discuss.md:62 @@ -4139,9 +4128,8 @@ msgid "" "Again, we can put things back the way they were\n" "by using `git checkout`:" msgstr "" -"Notice that the changes are on the staged area.\n" -"Again, we can put things back the way they were\n" -"by using `git checkout`:" +"変更はステージング領域にあることに注意してください。\n" +"繰り返しますが、`git checkout` を使うと、元の状態に戻すことができます:" # code block #: git-novice/_episodes/05-history.md:270 From 7d321937e24fa0925891fa548f12be0eb92460dd Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Fri, 2 Oct 2020 05:48:52 +0900 Subject: [PATCH 03/27] Translate "Don't Lose Your HEAD" --- po/git-novice.ja.po | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 66e1a5ae..ad730e6d 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4145,7 +4145,7 @@ msgstr "" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:275 msgid "> ## Don't Lose Your HEAD" -msgstr "> ## Don't Lose Your HEAD" +msgstr "> ## HEAD を見失わないようにしましょう" #: git-novice/_episodes/05-history.md:276 msgid "" @@ -4169,23 +4169,20 @@ msgid "" "checkout master`." msgstr "" ">\n" -"> Above we used\n" +"> 上記では下記を使いました\n" ">\n" "> ~~~\n" "> $ git checkout f22b25e mars.txt\n" "> ~~~\n" "> {: .language-bash}\n" ">\n" -"> to revert `mars.txt` to its state after the commit `f22b25e`. But be " -"careful! \n" -"> The command `checkout` has other important functionalities and Git will " -"misunderstand\n" -"> your intentions if you are not accurate with the typing. For example, \n" -"> if you forget `mars.txt` in the previous command.\n" -"> The \"detached HEAD\" is like \"look, but don't touch\" here,\n" -"> so you shouldn't make any changes in this state.\n" -"> After investigating your repo's past state, reattach your `HEAD` with `git " -"checkout master`." +"> `mars.txt` をコミット `f22b25e` 後の状態に戻すためにです。しかし注意してください!" +"> コマンド `checkout` には他の重要な機能があり、入力が正確でない場合、" +"> Gitはあなたの意図を誤解する可能性があります。たとえば、\n" +"> 前のコマンドで `mars.txt` を忘れた場合です。\n" +"> ここでの「HEADが切り離された」状態は「見れるが触ってはいけない」ようなものなので、\n" +"> この状態で変更を加えないでください。\n" +"> リポジトリの過去の状態を調査した後、`git checkout master` で `HEAD` を再接続してください。" #: git-novice/_episodes/05-history.md:293 msgid "" From 511a074eec01a3b83f3b129b696df847db4fe749 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Sat, 7 Nov 2020 16:27:02 +0900 Subject: [PATCH 04/27] Tranlate git-novice episode5 --- po/git-novice.ja.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index ad730e6d..d78425b2 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4194,9 +4194,9 @@ msgid "" "In the example below, we want to retrieve the state from before the most\n" "recent commit (`HEAD~1`), which is commit `f22b25e`:" msgstr "" -"It's important to remember that\n" -"we must use the commit number that identifies the state of the repository\n" -"*before* the change we're trying to undo.\n" +"元に戻す変更を行う *前* に、\n" +"リポジトリの状態を識別するコミット番号を使用する必要がある\n" +"ことを覚えておくことが重要です。\n" "A common mistake is to use the number of\n" "the commit in which we made the change we're trying to get rid of.\n" "In the example below, we want to retrieve the state from before the most\n" From 1df89c63efddb0384df65b2de861c6bf080f1ee0 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Wed, 11 Nov 2020 07:53:25 +0900 Subject: [PATCH 05/27] Translate "Simplifying the Common Case" --- po/git-novice.ja.po | 48 ++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 25 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index d78425b2..53b8d2d0 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4197,10 +4197,10 @@ msgstr "" "元に戻す変更を行う *前* に、\n" "リポジトリの状態を識別するコミット番号を使用する必要がある\n" "ことを覚えておくことが重要です。\n" -"A common mistake is to use the number of\n" -"the commit in which we made the change we're trying to get rid of.\n" -"In the example below, we want to retrieve the state from before the most\n" -"recent commit (`HEAD~1`), which is commit `f22b25e`:" +"よくある間違いは、\n" +"破棄しようとしている変更を行ったコミットの番号を使用することです。\n" +"以下の例では、最新のコミットの前 (`HEAD~1`) 、\n" +"すなわち`f22b25e`から状態を取得したいと考えています:" #: git-novice/_episodes/05-history.md:301 msgid "![Git Checkout](../fig/git-checkout.svg)" @@ -4211,8 +4211,8 @@ msgid "" "So, to put it all together,\n" "here's how Git works in cartoon form:" msgstr "" -"So, to put it all together,\n" -"here's how Git works in cartoon form:" +"つまり、すべてをまとめると、\n" +"Gitがどのように機能するかは次の漫画のようになります:" #: git-novice/_episodes/05-history.md:306 msgid "" @@ -4225,7 +4225,7 @@ msgstr "" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:308 msgid "> ## Simplifying the Common Case" -msgstr "> ## Simplifying the Common Case" +msgstr "> ## よくあるケースの簡単化" #: git-novice/_episodes/05-history.md:309 msgid "" @@ -4249,8 +4249,8 @@ msgid "" "> Git would try to use the name of the file as the commit identifier." msgstr "" ">\n" -"> If you read the output of `git status` carefully,\n" -"> you'll see that it includes this hint:\n" +"> `git status` の出力を注意深く読むと、\n" +"> 次のヒントを含んでいることが分かります:\n" ">\n" "> ~~~\n" "> (use \"git checkout -- ...\" to discard changes in working " @@ -4258,14 +4258,12 @@ msgstr "" "> ~~~\n" "> {: .language-bash}\n" ">\n" -"> As it says,\n" -"> `git checkout` without a version identifier restores files to the state " -"saved in `HEAD`.\n" -"> The double dash `--` is needed to separate the names of the files being " -"recovered\n" -"> from the command itself:\n" -"> without it,\n" -"> Git would try to use the name of the file as the commit identifier." +"> それが言っているように、\n" +"> バージョン識別子のない `git checkout` はファイルを" +"`HEAD` に保存された状態に復元します。\n" +"> 二重のダッシュ `--` はコマンドから復元されるファイルの名前を区別するために必要です:\n" +"> それがないと、\n" +"> Git はファイルの名前をコミット識別子として使用しようとします。" #: git-novice/_episodes/05-history.md:326 msgid "" @@ -4278,14 +4276,14 @@ msgid "" "on the other hand,\n" "moving backward and forward in time becomes much easier." msgstr "" -"The fact that files can be reverted one by one\n" -"tends to change the way people organize their work.\n" -"If everything is in one large document,\n" -"it's hard (but not impossible) to undo changes to the introduction\n" -"without also undoing changes made later to the conclusion.\n" -"If the introduction and conclusion are stored in separate files,\n" -"on the other hand,\n" -"moving backward and forward in time becomes much easier." +"ファイルを1つずつ元に戻すことができるという事実は\n" +"人々が研究を整理する方法を変えるのに役立ちます。\n" +"すべての変更が1つの大きなドキュメントに含まれている場合、\n" +"後で結論に加えられた変更を元に戻さずに、\n" +"序論への変更を元に戻すことは困難です(不可能ではありませんが)。\n" +"一方、\n" +"序論と結論を別々のファイルに保存すると、\n" +"時間を前後に移動するのがはるかに簡単になります。" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:335 From d5234bf7895b01093c3c9e28c903f0523d8d837a Mon Sep 17 00:00:00 2001 From: Tom Kelly Date: Sun, 15 Nov 2020 14:01:04 +0900 Subject: [PATCH 06/27] Revert headings for Git lesson 5 --- po/git-novice.ja.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 53b8d2d0..2b5e0972 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -3713,13 +3713,13 @@ msgid "" msgstr "" "---\n" "title: 履歴の探索\n" -"講義: 25\n" -"演習: 0\n" -"質問:\n" +"teaching: 25\n" +"exercises: 0\n" +"questions:\n" "- \"ファイルの古いバージョンを確認するにはどうすればよいでしょうか?\"\n" "- \"変更内容を再調査するにはどうすればよいでしょうか?\"\n" "- \"ファイルの古いバージョンを復元するにはどうすればよいでしょうか?\"\n" -"目標:\n" +"keypoints:\n" "- \"リポジトリのHEADとは何か、またその使い方を説明出来るようになりましょう。\"\n" "- \"Gitのコミット番号を特定して使ってみましょう。\"\n" "- \"追跡調査されるファイルのいろいろなバージョンを比較してみましょう。\"\n" From 98d268b2ab2e2c68945b59a3cd2e453beae33310 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Tue, 17 Nov 2020 08:31:25 +0900 Subject: [PATCH 07/27] Translate "Recovering Older Versions of a File" --- po/git-novice.ja.po | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 53b8d2d0..e611ca89 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4288,7 +4288,7 @@ msgstr "" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:335 msgid "> ## Recovering Older Versions of a File" -msgstr "> ## Recovering Older Versions of a File" +msgstr "> ## ファイルの古いバージョンの復元" #: git-novice/_episodes/05-history.md:336 msgid "" @@ -4315,16 +4315,15 @@ msgid "" "> 5. Both 2 and 4" msgstr "" ">\n" -"> Jennifer has made changes to the Python script that she has been working " -"on for weeks, and the\n" -"> modifications she made this morning \"broke\" the script and it no longer " -"runs. She has spent\n" -"> ~ 1hr trying to fix it, with no luck...\n" +"> ジェニファーは、数週間取り組んできたPythonスクリプトに変更を加えました。 " +"そして\n" +"> 今朝行った変更により、スクリプトが \"壊れ\" 動作しなくなりました。 " +"彼女はそれを修正しようとして\n" +"> 約1時間費やしましたが、うまく機能しません...\n" ">\n" -"> Luckily, she has been keeping track of her project's versions using Git! " -"Which commands below will\n" -"> let her recover the last committed version of her Python script called\n" -"> `data_cruncher.py`?\n" +"> 幸い、彼女はGitを使用してプロジェクトのバージョンを追跡していました! " +"以下のどのコマンドで、\n" +"> `data_cruncher.py` と呼ばれるPythonスクリプトの最後にコミットされたバージョンを復元できるでしょうか?\n" ">\n" "> 1. `$ git checkout HEAD`\n" ">\n" @@ -4334,7 +4333,7 @@ msgstr "" ">\n" "> 4. `$ git checkout data_cruncher.py`\n" ">\n" -"> 5. Both 2 and 4" +"> 5. 2と4の両方" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:356 From e6f663b049357fe2b396c9de9639df12003a749f Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Tue, 17 Nov 2020 19:24:37 +0900 Subject: [PATCH 08/27] Translate "Reverting a Commit" --- po/git-novice.ja.po | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index b058c976..cc5bc8d3 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4338,7 +4338,7 @@ msgstr "" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:356 msgid "> ## Reverting a Commit" -msgstr "> ## Reverting a Commit" +msgstr "> ## コミットを戻すことについて" #: git-novice/_episodes/05-history.md:357 msgid "" @@ -4365,26 +4365,26 @@ msgid "" "> 5. Save and close" msgstr "" ">\n" -"> Jennifer is collaborating on her Python script with her colleagues and\n" -"> realizes her last commit to the group repository is wrong and wants to\n" -"> undo it. Jennifer needs to undo correctly so everyone in the group\n" -"> repository gets the correct change. `git revert [wrong commit ID]`\n" -"> will make a new commit that undoes Jennifer's previous wrong\n" -"> commit. Therefore `git revert` is different than `git checkout [commit\n" -"> ID]` because `checkout` is for local changes not committed to the\n" -"> group repository. Below are the right steps and explanations for\n" -"> Jennifer to use `git revert`, what is the missing command?\n" +"> ジェニファーは同僚とPythonスクリプトで共同作業を行っており、\n" +"> グループのリポジトリへの彼女の最新のコミットが間違っていることに気付き、\n" +"> それを元に戻したいと思っています。Jenniferは、グループリポジトリのみんなが正しい変更を取得できるように、\n" +"> 正しく元に戻す必要があります。 `git revert [wrong commit ID]` は、\n" +"> ジェニファーの誤ったコミットを元に戻す新しいコミットを作ります。\n" +"> 従って `git revert` は `git checkout [commit\n" +"> ID]` とは異なります。なぜなら `checkout` はグループのリポジトリにはコミットされていない\n" +"> ローカルの変更用のコマンドだからです。以下は、ジェニファーが\n" +"> `git revert` を使用するための正しい手順と説明ですが、不足しているコマンドは何でしょうか?\n" ">\n" -"> 1. `________ # Look at the git history of the project to find the commit " -"ID`\n" +"> 1. `________ # コミットIDを見つけるために、プロジェクトのgitの " +"履歴を見ます`\n" ">\n" -"> 2. Copy the ID (the first few characters of the ID, e.g. 0b1d055).\n" +"> 2. そのIDをコピーします (IDの最初の数文字は例えば 0b1d055)。\n" ">\n" "> 3. `git revert [commit ID]`\n" ">\n" -"> 4. Type in the new commit message.\n" +"> 4. 新しいコミットメッセージを入力します。\n" ">\n" -"> 5. Save and close" +"> 5. 保存して閉じます" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:379 From 78fd53ba0c321941035435e06d02f6ca1c07bb3b Mon Sep 17 00:00:00 2001 From: Tom Kelly Date: Tue, 17 Nov 2020 21:42:33 +0900 Subject: [PATCH 09/27] Correct headers in Git lesson 5 --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index cc5bc8d3..f8fef132 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -3719,7 +3719,7 @@ msgstr "" "- \"ファイルの古いバージョンを確認するにはどうすればよいでしょうか?\"\n" "- \"変更内容を再調査するにはどうすればよいでしょうか?\"\n" "- \"ファイルの古いバージョンを復元するにはどうすればよいでしょうか?\"\n" -"keypoints:\n" +"objectives:\n" "- \"リポジトリのHEADとは何か、またその使い方を説明出来るようになりましょう。\"\n" "- \"Gitのコミット番号を特定して使ってみましょう。\"\n" "- \"追跡調査されるファイルのいろいろなバージョンを比較してみましょう。\"\n" From 53357bccd3a02c217bba24c5079852396af7b499 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Sat, 21 Nov 2020 14:05:30 +0900 Subject: [PATCH 10/27] Translate "Understanding Workflow and History" --- po/git-novice.ja.po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index cc5bc8d3..89da9626 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4389,7 +4389,7 @@ msgstr "" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:379 msgid "> ## Understanding Workflow and History" -msgstr "> ## Understanding Workflow and History" +msgstr "> ## ワークフローと履歴の理解" #: git-novice/_episodes/05-history.md:380 msgid "" @@ -4414,7 +4414,7 @@ msgid "" "> ~~~" msgstr "" ">\n" -"> What is the output of the last command in\n" +"> 最後のコマンドの出力は何でしょうか\n" ">\n" "> ~~~\n" "> $ cd planets\n" @@ -4423,7 +4423,7 @@ msgstr "" "> $ echo \"Venus is too hot to be suitable as a base\" >> venus.txt\n" "> $ git commit -m \"Comment on Venus as an unsuitable base\"\n" "> $ git checkout HEAD venus.txt\n" -"> $ cat venus.txt #this will print the contents of venus.txt to the screen\n" +"> $ cat venus.txt #これはvenus.txtの内容を画面に出力します\n" "> ~~~\n" "> {: .language-bash}\n" ">\n" @@ -4495,13 +4495,13 @@ msgid "" "> > Using the flag `-a` with `git commit` would have prevented the lost." msgstr "" ">\n" -"> > ## Solution\n" +"> > ## 答え\n" "> >\n" -"> > The answer is 2 because `git add venus.txt` was used only before add the " -"line\n" +"> > 答えは2です。`git add venus.txt` は `git checkout` が実行された時に " +"失われた行\n" "> > `Venus is too hot to be suitable as a base`\n" -"> > which was lost when `git checkout` was executed.\n" -"> > Using the flag `-a` with `git commit` would have prevented the lost." +"> > を追加する前でのみ使われていました。\n" +"> > フラグ `-a` を `git commit` とともに使っていたら、その行の消失は防がれていたでしょう。" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:432 From 62f7aad749062e28bca09fa8c451697bd646a1bf Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Sat, 21 Nov 2020 15:56:42 +0900 Subject: [PATCH 11/27] Translate "Checking Understanding of `git diff`" --- po/git-novice.ja.po | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 473f97a5..12da9c30 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4506,7 +4506,7 @@ msgstr "" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:432 msgid "> ## Checking Understanding of `git diff`" -msgstr "> ## Checking Understanding of `git diff`" +msgstr "> ## `git diff` の理解のチェック" #: git-novice/_episodes/05-history.md:433 msgid "" @@ -4522,15 +4522,14 @@ msgid "" "> and what does happen?" msgstr "" ">\n" -"> Consider this command: `git diff HEAD~3 mars.txt`. What do you predict " -"this command\n" -"> will do if you execute it? What happens when you do execute it? Why?\n" +"> このコマンドをよく考えてみてください: `git diff HEAD~3 mars.txt`。 " +"このコマンドを実行したら\n" +"> どうなるだろうと予測しますか? 実行すると何が起こっていますか? またそれはなぜでしょうか?\n" ">\n" -"> Try another command, `git diff [ID] mars.txt`, where [ID] is replaced " -"with\n" -"> the unique identifier for your most recent commit. What do you think will " -"happen,\n" -"> and what does happen?" +"> 別のコマンド `git diff [ID] mars.txt` を試しましょう、ここでの [ID] は " +"> 最新のコミットのユニークな識別子で置き換えられます。 " +"あなたは何が起こるだろうと思いますか? \n" +"> そして何が起こっていますか?" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:442 From 9f795bc758a46023e8f88c88fd2be9c1e5b0b43f Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Sun, 22 Nov 2020 03:19:52 +0900 Subject: [PATCH 12/27] Translate "Getting Rid of Staged Changes" --- po/git-novice.ja.po | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 12da9c30..3f63a124 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4534,7 +4534,7 @@ msgstr "" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:442 msgid "> ## Getting Rid of Staged Changes" -msgstr "> ## Getting Rid of Staged Changes" +msgstr "> ## ステージされた変更の除去" #: git-novice/_episodes/05-history.md:443 msgid "" @@ -4548,13 +4548,12 @@ msgid "" "> you can remove your change." msgstr "" ">\n" -"> `git checkout` can be used to restore a previous commit when unstaged " -"changes have\n" -"> been made, but will it also work for changes that have been staged but not " -"committed?\n" -"> Make a change to `mars.txt`, add that change, and use `git checkout` to " -"see if\n" -"> you can remove your change." +"> `git checkout` は、ステージされていない変更が行われたときに " +"以前のコミットを復元するために使用できます。\n" +"> しかしそれはステージされているがコミットされていない変更に対しても機能する" +"でしょうか?\n" +"> `mars.txt` に変更を用意し、その変更を加え、`git checkout` を使い " +"> 変更を取り除くことができるかどうか確かめましょう。" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:450 From b86dfdb576b088e7c19975a2b3406333f6788f74 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Mon, 23 Nov 2020 04:13:34 +0900 Subject: [PATCH 13/27] Translate "Explore and Summarize Histories" and "Key Points" --- po/git-novice.ja.po | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 3f63a124..7c3e7497 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -3725,8 +3725,8 @@ msgstr "" "- \"追跡調査されるファイルのいろいろなバージョンを比較してみましょう。\"\n" "- \"ファイルの古いバージョンを復元してみましょう。\"\n" "keypoints:\n" -"- \"`git diff` displays differences between commits.\"\n" -"- \"`git checkout` recovers old versions of files.\"\n" +"- \"`git diff` は、コミット間の違いを表示します。\"\n" +"- \"`git checkout` は、ファイルの古いバージョンを復元します。\"\n" "---" #: git-novice/_episodes/05-history.md:19 @@ -4558,7 +4558,7 @@ msgstr "" # blockquote, which can be cascaded #: git-novice/_episodes/05-history.md:450 msgid "> ## Explore and Summarize Histories" -msgstr "> ## Explore and Summarize Histories" +msgstr "> ## 履歴を探索し、要約する" #: git-novice/_episodes/05-history.md:451 msgid "" @@ -4605,41 +4605,41 @@ msgid "" "> {: .language-bash}" msgstr "" ">\n" -"> Exploring history is an important part of git, often it is a challenge to " -"find\n" -"> the right commit ID, especially if the commit is from several months ago.\n" +"> 履歴の探索はgitの重要な要素であり、特にそのコミットが数か月前のものである場合は、 " +"> 適切なコミットIDを見つけるのが難しいことがよくあります。\n" ">\n" -"> Imagine the `planets` project has more than 50 files.\n" -"> You would like to find a commit with specific text in `mars.txt` is " -"modified.\n" -"> When you type `git log`, a very long list appeared,\n" -"> How can you narrow down the search?\n" +"> `planets` プロジェクトに50を超えるファイルがあると考えてください。\n" +"> あなたは `mars.txt` 中の特定のテキストが変更されたコミットを見つけたい " +"とします。\n" +"> `git log` と入力すると、非常に長いリストが表示されました。\n" +"> どうやって探す範囲を限定しますか?\n" ">\n" -"> Recall that the `git diff` command allow us to explore one specific file,\n" -"> e.g. `git diff mars.txt`. We can apply a similar idea here.\n" +"> `git diff` コマンドを使用すると、1つの特定のファイルを探索できることを思い出してください、\n" +"> 例えば、 `git diff mars.txt` 。 ここでも同様のアイデアを適用できます。\n" ">\n" "> ~~~\n" "> $ git log mars.txt\n" "> ~~~\n" "> {: .language-bash}\n" ">\n" -"> Unfortunately some of these commit messages are very ambiguous e.g. " -"`update files`.\n" -"> How can you search through these files?\n" +"> 残念ながら、これらのコミットメッセージの一部は非常にあいまいです。例えば、 " +"`update files`。\n" +"> どうやったらこれらのファイルを念入りに調べることができますか?\n" ">\n" -"> Both `git diff` and `git log` are very useful and they summarize a " -"different part of the history for you.\n" -"> Is it possible to combine both? Let's try the following:\n" +"はどちらも非常に便利で、履歴のさまざまな部分を要約しています。" +"> `git diff` と `git log` はどちらも非常に便利で、それらは " +"履歴の異なる部分を要約しています。\n" +"> 両方を組み合わせることは可能でしょうか? 以下を試してみましょう:\n" ">\n" "> ~~~\n" "> $ git log --patch mars.txt\n" "> ~~~\n" "> {: .language-bash}\n" ">\n" -"> You should get a long list of output, and you should be able to see both " -"commit messages and the difference between each commit.\n" +"> 出力の長いリストが表示され、 " +"コミットメッセージと各コミットの違いの両方を確認できるはずです。\n" ">\n" -"> Question: What does the following command do?\n" +"> 問い: 以下のコマンドは何を行うでしょうか?\n" ">\n" "> ~~~\n" "> $ git log --patch HEAD~3 *.txt\n" From 2fce05d5947cc1ad8e6b98afde1fecaed04d8f5f Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Sun, 28 Nov 2021 09:27:32 +0900 Subject: [PATCH 14/27] Update git-novice.ja.po Resolve https://github.com/swcarpentry-ja/i18n/pull/135#discussion_r739759694 --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 7c3e7497..1d3ea0e1 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -3716,7 +3716,7 @@ msgstr "" "teaching: 25\n" "exercises: 0\n" "questions:\n" -"- \"ファイルの古いバージョンを確認するにはどうすればよいでしょうか?\"\n" +"- \"ファイルの古いバージョンを確認するにはどうすればよいですか?\"\n" "- \"変更内容を再調査するにはどうすればよいでしょうか?\"\n" "- \"ファイルの古いバージョンを復元するにはどうすればよいでしょうか?\"\n" "objectives:\n" From 07766650544aa885589e579b45957675f2a30797 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Sun, 28 Nov 2021 09:31:11 +0900 Subject: [PATCH 15/27] Update po/git-novice.ja.po Co-authored-by: Joel Nitta --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 1d3ea0e1..51bdffe1 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -3946,7 +3946,7 @@ msgid "" msgstr "" "`git log` が表示する、数字と文字の長い文字列を使用して\n" "コミットを参照することもできます。\n" -"これらは変更に対するユニークなIDであり、「ユニーク」は本当に唯一であることを意味します:\n" +"これらは一個一個の変更に対するユニークなIDであり、「ユニーク」は本当に唯一であることを意味します:\n" "任意のコンピューター上のファイルの任意のセットに対するすべての変更には、\n" "ユニークな40文字の識別子があります。\n" "最初のコミットにはID `f22b25e3233b4645dabd0d81e651fe074bd8e73b` が与えられたので、\n" From 24991a223e018bfba2996004aabf2ca3d3d628e5 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Sun, 28 Nov 2021 09:46:22 +0900 Subject: [PATCH 16/27] Update po/git-novice.ja.po Co-authored-by: Joel Nitta --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 51bdffe1..acce53d0 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4605,7 +4605,7 @@ msgid "" "> {: .language-bash}" msgstr "" ">\n" -"> 履歴の探索はgitの重要な要素であり、特にそのコミットが数か月前のものである場合は、 " +"> 履歴の探索はgitの重要な要素であり、特にそのコミットが数ヶ月前のものである場合は、 " "> 適切なコミットIDを見つけるのが難しいことがよくあります。\n" ">\n" "> `planets` プロジェクトに50を超えるファイルがあると考えてください。\n" From 9860c063167120f0e3d92e8d0321025279c617c2 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Sun, 28 Nov 2021 09:46:58 +0900 Subject: [PATCH 17/27] Update po/git-novice.ja.po Co-authored-by: Joel Nitta --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index acce53d0..1511701d 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4552,7 +4552,7 @@ msgstr "" "以前のコミットを復元するために使用できます。\n" "> しかしそれはステージされているがコミットされていない変更に対しても機能する" "でしょうか?\n" -"> `mars.txt` に変更を用意し、その変更を加え、`git checkout` を使い " +"> `mars.txt` に変更を用意し、その変更を加え(`git add`を使い)、`git checkout` を使い " "> 変更を取り除くことができるかどうか確かめましょう。" # blockquote, which can be cascaded From 5c038cd3864fa34c1bd9bca5f56ad2dbc1ba1fb7 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Sun, 28 Nov 2021 11:59:40 +0900 Subject: [PATCH 18/27] =?UTF-8?q?Replace=20=E3=82=B3=E3=83=9F=E3=83=83?= =?UTF-8?q?=E3=83=88=E8=AD=98=E5=88=A5=E5=AD=90=20to=20=E3=82=B3=E3=83=9F?= =?UTF-8?q?=E3=83=83=E3=83=88=20ID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolve https://github.com/swcarpentry-ja/i18n/pull/135#discussion_r739800017 --- po/git-novice.ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 1511701d..7a46a2aa 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4078,7 +4078,7 @@ msgstr "" "最後に保存されたコミットである `HEAD` に記録されたファイルのバージョン " "を復元することをGitに伝えています。\n" "さらに戻りたい場合は、\n" -"代わりにコミット識別子を使うことができます:" +"代わりにコミット ID を使うことができます:" # code block #: git-novice/_episodes/05-history.md:232 git-novice/_extras/discuss.md:62 @@ -4263,7 +4263,7 @@ msgstr "" "`HEAD` に保存された状態に復元します。\n" "> 二重のダッシュ `--` はコマンドから復元されるファイルの名前を区別するために必要です:\n" "> それがないと、\n" -"> Git はファイルの名前をコミット識別子として使用しようとします。" +"> Git はファイルの名前をコミット ID として使用しようとします。" #: git-novice/_episodes/05-history.md:326 msgid "" From 0dfb12579fb3d928fa04837a3f4f9f1ab3adb2a4 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Sun, 28 Nov 2021 16:40:01 +0900 Subject: [PATCH 19/27] Update po/git-novice.ja.po Co-authored-by: Joel Nitta --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 7a46a2aa..80fb7574 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4548,7 +4548,7 @@ msgid "" "> you can remove your change." msgstr "" ">\n" -"> `git checkout` は、ステージされていない変更が行われたときに " +"> `git checkout` は、ステージされていない変更があったときに " "以前のコミットを復元するために使用できます。\n" "> しかしそれはステージされているがコミットされていない変更に対しても機能する" "でしょうか?\n" From da3ac84da485af50d348cb3c93b94cecfc1d0a11 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Sun, 28 Nov 2021 16:56:17 +0900 Subject: [PATCH 20/27] Update po/git-novice.ja.po Co-authored-by: Joel Nitta --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 80fb7574..4a25f210 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4194,7 +4194,7 @@ msgid "" "In the example below, we want to retrieve the state from before the most\n" "recent commit (`HEAD~1`), which is commit `f22b25e`:" msgstr "" -"元に戻す変更を行う *前* に、\n" +"取り消したい変更の一個**前**のコミット番号を使う\n" "リポジトリの状態を識別するコミット番号を使用する必要がある\n" "ことを覚えておくことが重要です。\n" "よくある間違いは、\n" From 6e12366da724181252a064f2666aa85652e6fb4f Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Sun, 28 Nov 2021 16:56:36 +0900 Subject: [PATCH 21/27] Update po/git-novice.ja.po Co-authored-by: Joel Nitta --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 4a25f210..8dac89c3 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4195,7 +4195,7 @@ msgid "" "recent commit (`HEAD~1`), which is commit `f22b25e`:" msgstr "" "取り消したい変更の一個**前**のコミット番号を使う\n" -"リポジトリの状態を識別するコミット番号を使用する必要がある\n" +"必要がある\n" "ことを覚えておくことが重要です。\n" "よくある間違いは、\n" "破棄しようとしている変更を行ったコミットの番号を使用することです。\n" From c184e2362633755a96c0336c20ee3a3d70193fe4 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Tue, 30 Nov 2021 20:18:14 +0900 Subject: [PATCH 22/27] =?UTF-8?q?Replace=20=E8=AD=98=E5=88=A5=E5=AD=90=20t?= =?UTF-8?q?o=20ID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 8dac89c3..aa392504 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4527,7 +4527,7 @@ msgstr "" "> どうなるだろうと予測しますか? 実行すると何が起こっていますか? またそれはなぜでしょうか?\n" ">\n" "> 別のコマンド `git diff [ID] mars.txt` を試しましょう、ここでの [ID] は " -"> 最新のコミットのユニークな識別子で置き換えられます。 " +"> 最新のコミットのユニークな ID で置き換えられます。 " "あなたは何が起こるだろうと思いますか? \n" "> そして何が起こっていますか?" From e77ffc1c3d2188f6ad53aacd42a32eb30f0a9b75 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Tue, 30 Nov 2021 20:21:22 +0900 Subject: [PATCH 23/27] Update po/git-novice.ja.po Co-authored-by: Joel Nitta --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index aa392504..f888f94a 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4277,7 +4277,7 @@ msgid "" "moving backward and forward in time becomes much easier." msgstr "" "ファイルを1つずつ元に戻すことができるという事実は\n" -"人々が研究を整理する方法を変えるのに役立ちます。\n" +"人々が研究を整理する方法を変えることがあります。\n" "すべての変更が1つの大きなドキュメントに含まれている場合、\n" "後で結論に加えられた変更を元に戻さずに、\n" "序論への変更を元に戻すことは困難です(不可能ではありませんが)。\n" From 1e98ee0a885132b3a2bd548b40896c9da1585fb8 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Tue, 30 Nov 2021 20:47:39 +0900 Subject: [PATCH 24/27] Update po/git-novice.ja.po Co-authored-by: Joel Nitta --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index f888f94a..95e974ad 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -4626,7 +4626,7 @@ msgstr "" "`update files`。\n" "> どうやったらこれらのファイルを念入りに調べることができますか?\n" ">\n" -"はどちらも非常に便利で、履歴のさまざまな部分を要約しています。" +"" "> `git diff` と `git log` はどちらも非常に便利で、それらは " "履歴の異なる部分を要約しています。\n" "> 両方を組み合わせることは可能でしょうか? 以下を試してみましょう:\n" From 452f10512c6c60dbfa899dcbc2f9bd7c90defeb8 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Tue, 30 Nov 2021 23:06:44 +0900 Subject: [PATCH 25/27] Update po/git-novice.ja.po Co-authored-by: Joel Nitta --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 95e974ad..3864fc00 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -3947,7 +3947,7 @@ msgstr "" "`git log` が表示する、数字と文字の長い文字列を使用して\n" "コミットを参照することもできます。\n" "これらは一個一個の変更に対するユニークなIDであり、「ユニーク」は本当に唯一であることを意味します:\n" -"任意のコンピューター上のファイルの任意のセットに対するすべての変更には、\n" +"どのコンピューターのどのファイルの変更の組み合わせに対して、\n" "ユニークな40文字の識別子があります。\n" "最初のコミットにはID `f22b25e3233b4645dabd0d81e651fe074bd8e73b` が与えられたので、\n" "これを試してみましょう:" From 6ce8f9620408fdb3fea35cf59d70faa20f7d5be6 Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Tue, 30 Nov 2021 23:12:56 +0900 Subject: [PATCH 26/27] =?UTF-8?q?Add=20"=E3=82=82"=20to=20make=20Japanese?= =?UTF-8?q?=20more=20natural.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 3864fc00..4c4ad51c 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -3947,7 +3947,7 @@ msgstr "" "`git log` が表示する、数字と文字の長い文字列を使用して\n" "コミットを参照することもできます。\n" "これらは一個一個の変更に対するユニークなIDであり、「ユニーク」は本当に唯一であることを意味します:\n" -"どのコンピューターのどのファイルの変更の組み合わせに対して、\n" +"どのコンピューターのどのファイルの変更の組み合わせに対しても、\n" "ユニークな40文字の識別子があります。\n" "最初のコミットにはID `f22b25e3233b4645dabd0d81e651fe074bd8e73b` が与えられたので、\n" "これを試してみましょう:" From 02ec18562061f301eb637b548eb0fccc8607a65b Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Tue, 30 Nov 2021 23:14:23 +0900 Subject: [PATCH 27/27] =?UTF-8?q?Replace=20=E8=AD=98=E5=88=A5=E5=AD=90=20t?= =?UTF-8?q?o=20ID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- po/git-novice.ja.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/git-novice.ja.po b/po/git-novice.ja.po index 4c4ad51c..ed5ef39e 100644 --- a/po/git-novice.ja.po +++ b/po/git-novice.ja.po @@ -3948,7 +3948,7 @@ msgstr "" "コミットを参照することもできます。\n" "これらは一個一個の変更に対するユニークなIDであり、「ユニーク」は本当に唯一であることを意味します:\n" "どのコンピューターのどのファイルの変更の組み合わせに対しても、\n" -"ユニークな40文字の識別子があります。\n" +"ユニークな40文字の ID があります。\n" "最初のコミットにはID `f22b25e3233b4645dabd0d81e651fe074bd8e73b` が与えられたので、\n" "これを試してみましょう:"