Skip to content

Commit 223e6fb

Browse files
committed
Merge pull request #10 from hashrock/translate/guide-filters
Translate filters section in guide to Japanese
2 parents 10e1660 + a6155d3 commit 223e6fb

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

source/guide/filters.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,37 @@ type: guide
33
order: 4
44
---
55

6-
## Synopsis
6+
## 要約
77

8-
A Vue.js filter is essentially a function that takes a value, processes it, and then returns the processed value. In the markup it is denoted by a single pipe (`|`) and can be followed by one or more arguments:
8+
Vue.jsのフィルタは、本質的には「値を取り、加工し、加工した値を返す」関数です。マークアップ内ではパイプ(`|`)で表され 、一つ以上の引数を続けることができます。
99

1010
``` html
1111
<element directive="expression | filterId [args...]"></element>
1212
```
1313

14-
## Examples
14+
##
1515

16-
Filters must be placed at the end of a directive's value:
16+
フィルタは、 ディレクティブの値の最後に位置しなければなりません。
1717

1818
``` html
1919
<span v-text="message | capitalize"></span>
2020
```
2121

22-
You can also use them inside mustache-style bindings:
22+
mustache スタイルのバインディング内でも利用することができます。
2323

2424
``` html
2525
<span>{{message | uppercase}}</span>
2626
```
2727

28-
Multiple filters can be chained together:
28+
複数のフィルタはお互いに連結できます。
2929

3030
``` html
3131
<span>{{message | lowercase | reverse}}</span>
3232
```
3333

34-
## Arguments
34+
## 引数
3535

36-
Some filters can take optional arguments. Simply add arguments separated by spaces:
36+
いくつかのフィルタはオプションの引数を取ることができます。単純に、スペース区切りの引数を追加してください。
3737

3838
``` html
3939
<span>{{order | pluralize st nd rd th}}</span>
@@ -43,6 +43,6 @@ Some filters can take optional arguments. Simply add arguments separated by spac
4343
<input v-on="keyup: submitForm | key enter">
4444
```
4545

46-
For their specific use of the above examples see the [full list of built-in filters](/api/filters.html).
46+
上記の例の明確な利用方法は、[full list of built-in filters](/api/filters.html) を参照してください。
4747

48-
Now that you know what directives and filters are, let's get our hands dirty and try to [display a list of items](/guide/list.html).
48+
これで、ディレクティブとフィルタについて知ることができました。では、実際に[display a list of items](/guide/list.html)をやってみましょう。

0 commit comments

Comments
 (0)