Skip to content

Commit a258b93

Browse files
authored
/docs/reference/math/underoverの翻訳 (#250)
1 parent a036728 commit a258b93

File tree

3 files changed

+31
-34
lines changed

3 files changed

+31
-34
lines changed
Lines changed: 28 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,156 +1,154 @@
11
use crate::foundations::{elem, Content};
22
use crate::math::Mathy;
33

4-
/// A horizontal line under content.
4+
/// コンテンツの下にある水平方向の線。
55
///
66
/// ```example
77
/// $ underline(1 + 2 + ... + 5) $
88
/// ```
99
#[elem(Mathy)]
1010
pub struct UnderlineElem {
11-
/// The content above the line.
11+
/// 線の上にあるコンテンツ。
1212
#[required]
1313
pub body: Content,
1414
}
1515

16-
/// A horizontal line over content.
16+
/// コンテンツの上にある水平方向の線。
1717
///
1818
/// ```example
1919
/// $ overline(1 + 2 + ... + 5) $
2020
/// ```
2121
#[elem(Mathy)]
2222
pub struct OverlineElem {
23-
/// The content below the line.
23+
/// 線の下にあるコンテンツ。
2424
#[required]
2525
pub body: Content,
2626
}
2727

28-
/// A horizontal brace under content, with an optional annotation below.
28+
/// コンテンツの下にある水平方向の波括弧。その下にオプションで注釈ができます。
2929
///
3030
/// ```example
3131
/// $ underbrace(1 + 2 + ... + 5, "numbers") $
3232
/// ```
3333
#[elem(Mathy)]
3434
pub struct UnderbraceElem {
35-
/// The content above the brace.
35+
/// 波括弧の上にあるコンテンツ。
3636
#[required]
3737
pub body: Content,
3838

39-
/// The optional content below the brace.
39+
/// 波括弧の下にあるオプションのコンテンツ。
4040
#[positional]
4141
pub annotation: Option<Content>,
4242
}
4343

44-
/// A horizontal brace over content, with an optional annotation above.
44+
/// コンテンツの上にある水平方向の波括弧。その上にオプションで注釈ができます。
4545
///
4646
/// ```example
4747
/// $ overbrace(1 + 2 + ... + 5, "numbers") $
4848
/// ```
4949
#[elem(Mathy)]
5050
pub struct OverbraceElem {
51-
/// The content below the brace.
51+
/// 波括弧の下にあるコンテンツ。
5252
#[required]
5353
pub body: Content,
5454

55-
/// The optional content above the brace.
55+
/// 波括弧の上にあるオプションのコンテンツ。
5656
#[positional]
5757
pub annotation: Option<Content>,
5858
}
5959

60-
/// A horizontal bracket under content, with an optional annotation below.
60+
/// コンテンツの下にある水平方向の角括弧。その下にオプションで注釈ができます。
6161
///
6262
/// ```example
6363
/// $ underbracket(1 + 2 + ... + 5, "numbers") $
6464
/// ```
6565
#[elem(Mathy)]
6666
pub struct UnderbracketElem {
67-
/// The content above the bracket.
67+
/// 角括弧の上にあるコンテンツ。
6868
#[required]
6969
pub body: Content,
7070

71-
/// The optional content below the bracket.
71+
/// 角括弧の下にあるオプションのコンテンツ。
7272
#[positional]
7373
pub annotation: Option<Content>,
7474
}
7575

76-
/// A horizontal bracket over content, with an optional annotation above.
76+
/// コンテンツの上にある水平方向の角括弧。その上にオプションで注釈ができます。
7777
///
7878
/// ```example
7979
/// $ overbracket(1 + 2 + ... + 5, "numbers") $
8080
/// ```
8181
#[elem(Mathy)]
8282
pub struct OverbracketElem {
83-
/// The content below the bracket.
83+
/// 角括弧の下にあるコンテンツ。
8484
#[required]
8585
pub body: Content,
8686

87-
/// The optional content above the bracket.
87+
/// 角括弧の上にあるオプションのコンテンツ。
8888
#[positional]
8989
pub annotation: Option<Content>,
9090
}
9191

92-
/// A horizontal parenthesis under content, with an optional annotation below.
92+
/// コンテンツの下にある水平方向の丸括弧。その下にオプションで注釈ができます。
9393
///
9494
/// ```example
9595
/// $ underparen(1 + 2 + ... + 5, "numbers") $
9696
/// ```
9797
#[elem(Mathy)]
9898
pub struct UnderparenElem {
99-
/// The content above the parenthesis.
99+
/// 丸括弧の上にあるコンテンツ。
100100
#[required]
101101
pub body: Content,
102102

103-
/// The optional content below the parenthesis.
103+
/// 丸括弧の下にあるオプションのコンテンツ。
104104
#[positional]
105105
pub annotation: Option<Content>,
106106
}
107107

108-
/// A horizontal parenthesis over content, with an optional annotation above.
108+
/// コンテンツの上にある水平方向の丸括弧。その上にオプションで注釈ができます。
109109
///
110110
/// ```example
111111
/// $ overparen(1 + 2 + ... + 5, "numbers") $
112112
/// ```
113113
#[elem(Mathy)]
114114
pub struct OverparenElem {
115-
/// The content below the parenthesis.
115+
/// 丸括弧の下にあるコンテンツ。
116116
#[required]
117117
pub body: Content,
118118

119-
/// The optional content above the parenthesis.
119+
/// 丸括弧の上にあるオプションのコンテンツ。
120120
#[positional]
121121
pub annotation: Option<Content>,
122122
}
123123

124-
/// A horizontal tortoise shell bracket under content, with an optional
125-
/// annotation below.
124+
/// コンテンツの下にある水平方向の亀甲括弧。その下にオプションで注釈ができます。
126125
///
127126
/// ```example
128127
/// $ undershell(1 + 2 + ... + 5, "numbers") $
129128
/// ```
130129
#[elem(Mathy)]
131130
pub struct UndershellElem {
132-
/// The content above the tortoise shell bracket.
131+
/// 亀甲括弧の上にあるコンテンツ。
133132
#[required]
134133
pub body: Content,
135134

136-
/// The optional content below the tortoise shell bracket.
135+
/// 亀甲括弧の下にあるオプションのコンテンツ。
137136
#[positional]
138137
pub annotation: Option<Content>,
139138
}
140139

141-
/// A horizontal tortoise shell bracket over content, with an optional
142-
/// annotation above.
140+
/// コンテンツの上にある水平方向の亀甲括弧。その上にオプションで注釈ができます。
143141
///
144142
/// ```example
145143
/// $ overshell(1 + 2 + ... + 5, "numbers") $
146144
/// ```
147145
#[elem(Mathy)]
148146
pub struct OvershellElem {
149-
/// The content below the tortoise shell bracket.
147+
/// 亀甲括弧の下にあるコンテンツ。
150148
#[required]
151149
pub body: Content,
152150

153-
/// The optional content above the tortoise shell bracket.
151+
/// 亀甲括弧の上にあるオプションのコンテンツ。
154152
#[positional]
155153
pub annotation: Option<Content>,
156154
}

docs/reference/groups.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,9 @@
4949
"overshell",
5050
]
5151
details: |
52-
Delimiters above or below parts of an equation.
52+
数式の一部の上部または下部の区切り文字。
5353
54-
The braces and brackets further allow you to add an optional annotation
55-
below or above themselves.
54+
波括弧や角括弧を用いると、それら自身の上部または下部にオプションの注釈を追加できます。
5655
5756
- name: roots
5857
title: Roots

website/translation-status.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
"/docs/reference/math/stretch/": "translated",
9595
"/docs/reference/math/styles/": "translated",
9696
"/docs/reference/math/op/": "translated",
97-
"/docs/reference/math/underover/": "untranslated",
97+
"/docs/reference/math/underover/": "translated",
9898
"/docs/reference/math/variants/": "translated",
9999
"/docs/reference/math/vec/": "translated",
100100
"/docs/reference/symbols/": "untranslated",

0 commit comments

Comments
 (0)