Skip to content

Commit

Permalink
ja: Translate Chapter 24 (Generics) (#1283)
Browse files Browse the repository at this point in the history
Hi JP translation folks (#652). Here's a MR for Generics chapter. Could
you take a look at it? Thank you!
  • Loading branch information
kantasv authored Oct 4, 2023
1 parent 9d45db8 commit d59cb11
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions po/ja.po
Original file line number Diff line number Diff line change
Expand Up @@ -8528,10 +8528,14 @@ msgid ""
"Rust support generics, which lets you abstract algorithms or data structures "
"(such as sorting or a binary tree) over the types used or stored."
msgstr ""
"Rustはジェネリクス(generics)をサポートします。これにより、使用または保存す"
"る型に関してアルゴリズムやデータ構造(ソートアルゴリズムや、二分木など)を抽"
"象化することができます。"

#: src/generics/data-types.md:3
msgid "You can use generics to abstract over the concrete field type:"
msgstr ""
"ジェネリクスを使って、具体的なフィールドの型を抽象化することができます:"

#: src/generics/data-types.md:5
msgid ""
Expand All @@ -8553,14 +8557,16 @@ msgstr ""
#: src/generics/data-types.md:21
msgid "Try declaring a new variable `let p = Point { x: 5, y: 10.0 };`."
msgstr ""
"次のような新しい変数を宣言してみてください `let p = Point { x: 5, y: 10.0 };"
"`."

#: src/generics/data-types.md:23
msgid "Fix the code to allow points that have elements of different types."
msgstr ""
msgstr "異なる型の要素を持つ点を許容するように、コードを修正してください。"

#: src/generics/methods.md:3
msgid "You can declare a generic type on your `impl` block:"
msgstr ""
msgstr "`impl`に対して、ジェネリックな型を宣言することもできます:"

#: src/generics/methods.md:5
msgid ""
Expand Down Expand Up @@ -8588,30 +8594,40 @@ msgid ""
"_Q:_ Why `T` is specified twice in `impl<T> Point<T> {}`? Isn't that "
"redundant?"
msgstr ""
"_Q:_ なぜ`T`は2回も `impl<T> Point<T> {}` において指定されたのでしょうか?冗"
"長ではありませんか?"

#: src/generics/methods.md:26
msgid ""
"This is because it is a generic implementation section for generic type. "
"They are independently generic."
msgstr ""
"なぜなら、これはジェネリクスに対してのジェネリックな実装の箇所だからです。そ"
"れらは独立してジェネリックです。"

#: src/generics/methods.md:27
msgid "It means these methods are defined for any `T`."
msgstr ""
"つまり、そのようなメソッドは任意の`T`に対して定義されるということです。"

#: src/generics/methods.md:28
msgid "It is possible to write `impl Point<u32> { .. }`. "
msgstr ""
msgstr "`impl Point<u32> { .. }`のように書くことも可能です。 "

#: src/generics/methods.md:29
msgid ""
"`Point` is still generic and you can use `Point<f64>`, but methods in this "
"block will only be available for `Point<u32>`."
msgstr ""
"`Point`はそれでもなおジェネリックであり、 `Point<f64>`を使うことができます。"
"しかし、このブロックでのメソッドは`Point<u32>`に対してのみ利用可能となりま"
"す。"

#: src/generics/monomorphization.md:3
msgid "Generic code is turned into non-generic code based on the call sites:"
msgstr ""
"ジェネリクスのコードは呼び出し箇所に基づいて、ジェネリックでないコードに変換"
"されます:"

#: src/generics/monomorphization.md:5
msgid ""
Expand All @@ -8625,7 +8641,7 @@ msgstr ""

#: src/generics/monomorphization.md:12
msgid "behaves as if you wrote"
msgstr ""
msgstr "上のコードは、次のように書いた時と同じように動作します"

#: src/generics/monomorphization.md:14
msgid ""
Expand All @@ -8652,6 +8668,8 @@ msgid ""
"This is a zero-cost abstraction: you get exactly the same result as if you "
"had hand-coded the data structures without the abstraction."
msgstr ""
"これはゼロコスト抽象化です:抽象化なしに手作業でデータ構造を書いたときと、全"
"く同じ結果を得ることができます。"

#: src/traits.md:3
msgid ""
Expand Down

0 comments on commit d59cb11

Please sign in to comment.