Skip to content

Commit 17a743f

Browse files
committed
translate options.md
1 parent 0d52761 commit 17a743f

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

docs/ja/options.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,60 @@
1-
# Route Options
1+
# Route オプション
22

3-
There are a number of options you can use to customize the router behavior when creating a router instance.
3+
ルーターインスタンスを作成するときにルーターの動作をカスタマイズして使用できるオプションがいくつかあります。
44

55
#### hashbang
66

7-
- default: true
8-
- only used in hash mode
7+
- デフォルト: true
8+
- hash モードでのみ使用される
99

10-
When the hashbang option is true, all hash paths will be formated to start with `#!`. For example `router.go('/foo/bar')` will set the browser URL to `example.com/#!/foo/bar`.
10+
hashbang オプションが true のとき、全ての hash パスは `#!` で開始するフォーマットになります。例えば、`route.go('/foo/bar')` はブラウザの URL `example.com/#!/foo/bar` に設定します。
1111

1212
#### history
1313

14-
- default: false
14+
- デフォルト: false
1515

16-
Enables HTML5 history mode. Leverages `history.pushState()` and `history.replaceState()` for history management.
16+
HTML5 history モードを有効にします。履歴管理のために `history.pushState()` `history.replaceState()` を活用します。
1717

18-
**Note**: when using the history mode, the server needs to be [properly configured](http://readystate4.com/2012/05/17/nginx-and-apache-rewrite-to-support-html5-pushstate/) so that a user directly visiting a deep link on your site doesn't get a 404.
18+
**Note**: history モードを使用するとき、サーバーは、あなたのサイトの深いリンクに直接訪問しているユーザーが 404 を取得しないよう、[適切に設定](http://readystate4.com/2012/05/17/nginx-and-apache-rewrite-to-support-html5-pushstate/)する必要があります。
1919

2020
#### abstract
2121

22-
- default: false
22+
- デフォルト: false
2323

24-
Use an abstract history backend that doesn't rely on the browser. The abstract mode is useful in testing or in environments where actual URLs doesn't matter, for example in Electron or Cordova apps. The router will also fallback into abstract mode if loaded in a non-browser environment.
24+
ブラウザに依存しない abstract history backend を使用します。abstract モードでは実際の URL が重要ではないテストなどの環境で役に立ちます。例えば、Electron または Cordova のようなアプリケーションです。ルーターはもし、ブラウザ以外の環境でロードした場合、abstract モードにフォールバックします。
2525

2626
#### root
2727

28-
- default: null
29-
- only used in HTML5 history mode
28+
- デフォルト: null
29+
- HTML5 history モードのみ使用される
3030

31-
Define a root path for all router navigations. All paths used in route configurations, `router.go()`, `v-link` and exposed on route objects will be resolved relative to this root path, and the root path will always be included in the actual browser URL.
31+
全てのルーターナビゲーションに対して root パスを定義します。route 設定で使用される全てのパス、`router.go()``v-link`、そしてこの root パスに相対解決された route オブジェクトが公開され、さらに root パスは実際のブラウザ URL に常に含まれています。
3232

33-
For example, with `root: '/foo'`, `v-link="/bar"` will set the browser URL to `/foo/bar`. Directly visiting `/foo/bar` will match against `/bar` in your route config.
33+
例えば、`root: '/foo'` では、`v-link="/bar"` はブラウザ URL `/foo/bar` に設定します。直接的に `/foo/bar` へのアクセスは、あなたの route 設定で `/bar` に対してマッチします。
3434

35-
In most cases, `root` is set-and-forget: you don't have to worry about it in your application code.
35+
ほとんどの場合、`root` は設定するだけです: あなたのアプリケーションのコードで心配する必要はありません。
3636

3737
#### linkActiveClass
3838

39-
- default: `"v-link-active"`
39+
- デフォルト: `"v-link-active"`
4040

41-
Configures the class to be applied to `v-link` elements when the current path matches its URL. The base class is applied as long as the current path starts with the `v-link` URL; when the current path matches the `v-link` URL exactly, an additional class with the `-exact` postfix will also be applied,the default being `v-link-active-exact`. So if you configure the class to be `my-custom-active`, the exact match class will be `my-custom-active-exact`.
41+
現在のパスがその URL とマッチするとき、class `v-link` 要素に適用されるように設定します。基底 class は、現在のパスが `v-link` URL で開始する限り適用されます。現在のパスが正確に `v-link` URL にマッチするとき、`-exact` ポストフィックスを持つ追加の class が適用され、デフォルトは `v-link-active-exact` になります。もし class `my-custom-active` に設定する場合、正確にマッチする class `my-custom-active-exact` になります。
4242

4343
#### saveScrollPosition
4444

45-
- default: false
46-
- only used in HTML5 history mode
45+
- デフォルト: false
46+
- HTML5 history モードのみ使用される
4747

48-
This option leverages the state associated with an HTML5 history `popstate` event to restore the scroll position when the user hits the back button. Note this might not work as expected if your `<router-view>` has transition effects.
48+
このオプションは、ユーザーが[戻る]ボタンを使ったときスクロール位置を復元するために、HTML5 history `popstate` イベントに関連付けられている状態を利用します。これは、あなたの `<router-view>` がトランジションのエフェクトを持っている場合、期待された動作がしない場合があります。
4949

5050
#### transitionOnLoad
5151

52-
- default: false
52+
- デフォルト: false
5353

54-
Whether to apply transition effect for `<router-view>`s on initial load. By default the components matched on initial load are rendered instantly.
54+
初期ロードの `<router-view>` に対してトランジションのエフェクトを適用するかどうか。デフォルトでは、初期ロードでマッチしたコンポーネントが即座にレンダリングされます。
5555

5656
#### suppressTransitionError
5757

58-
- default: false
58+
- デフォルト: false
5959

60-
If set to `true`, uncaught errors inside transition hooks will be suppressed.
60+
もし `true` に設定する場合、トランジションフック内部でキャッチされていないエラーが抑えられます。

0 commit comments

Comments
 (0)