UNPKG

5.44 kBJavaScriptView Raw
1
2
3/*
4* Licensed to the Apache Software Foundation (ASF) under one
5* or more contributor license agreements. See the NOTICE file
6* distributed with this work for additional information
7* regarding copyright ownership. The ASF licenses this file
8* to you under the Apache License, Version 2.0 (the
9* "License"); you may not use this file except in compliance
10* with the License. You may obtain a copy of the License at
11*
12* http://www.apache.org/licenses/LICENSE-2.0
13*
14* Unless required by applicable law or agreed to in writing,
15* software distributed under the License is distributed on an
16* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17* KIND, either express or implied. See the License for the
18* specific language governing permissions and limitations
19* under the License.
20*/
21
22
23/**
24 * AUTO-GENERATED FILE. DO NOT MODIFY.
25 */
26(function(root, factory) {
27 if (typeof define === 'function' && define.amd) {
28 // AMD. Register as an anonymous module.
29 define(['exports', 'echarts'], factory);
30 } else if (
31 typeof exports === 'object' &&
32 typeof exports.nodeName !== 'string'
33 ) {
34 // CommonJS
35 factory(exports, require('echarts/lib/echarts'));
36 } else {
37 // Browser globals
38 factory({}, root.echarts);
39 }
40})(this, function(exports, echarts) {
41
42
43/**
44 * Language: Japanese.
45 */
46
47var localeObj = {
48 time: {
49 month: [
50 '一月', '二月', '三月', '四月', '五月', '六月',
51 '七月', '八月', '九月', '十月', '十一月', '十二月'
52 ],
53 monthAbbr: [
54 '1月', '2月', '3月', '4月', '5月', '6月',
55 '7月', '8月', '9月', '10月', '11月', '12月'
56 ],
57 dayOfWeek: [
58 '日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日'
59 ],
60 dayOfWeekAbbr: [
61 '日', '月', '火', '水', '木', '金', '土'
62 ]
63 },
64 legend: {
65 selector: {
66 all: 'すべてを選択',
67 inverse: '選択範囲を反転'
68 }
69 },
70 toolbox: {
71 brush: {
72 title: {
73 rect: '矩形選択',
74 polygon: 'なげなわ選択',
75 lineX: '横方向に選択',
76 lineY: '縦方向に選択',
77 keep: '選択範囲を維持',
78 clear: '選択範囲をクリア'
79 }
80 },
81 dataView: {
82 title: 'データビュー',
83 lang: ['データビュー', '閉じる', 'リロード']
84 },
85 dataZoom: {
86 title: {
87 zoom: 'ズーム',
88 back: 'リセット'
89 }
90 },
91 magicType: {
92 title: {
93 line: '折れ線に切り替え',
94 bar: '棒に切り替え',
95 stack: '積み上げに切り替え',
96 tiled: 'タイル状に切り替え'
97 }
98 },
99 restore: {
100 title: '復元'
101 },
102 saveAsImage: {
103 title: '図として保存',
104 lang: ['右クリックして図を保存']
105 }
106 },
107 series: {
108 typeNames: {
109 pie: '円グラフ',
110 bar: '棒グラフ',
111 line: '折れ線グラフ',
112 scatter: '散布図',
113 effectScatter: 'エフェクト散布図',
114 radar: 'レーダーチャート',
115 tree: '階層グラフ',
116 treemap: 'ツリーマップ',
117 boxplot: '箱ひげ図',
118 candlestick: 'Kチャート',
119 k: 'Kチャート',
120 heatmap: 'ヒートマップ',
121 map: '地図',
122 parallel: 'パラレルチャート',
123 lines: 'ラインチャート',
124 graph: '相関図',
125 sankey: 'サンキーダイアグラム',
126 funnel: 'ファネルグラフ',
127 gauge: 'ゲージ',
128 pictorialBar: '絵入り棒グラフ',
129 themeRiver: 'テーマリバー',
130 sunburst: 'サンバースト'
131 }
132 },
133 aria: {
134 general: {
135 withTitle: 'これは「{title}」に関するチャートです。',
136 withoutTitle: 'これはチャートで、'
137 },
138 series: {
139 single: {
140 prefix: '',
141 withName: 'チャートのタイプは{seriesType}で、{seriesName}を示しています。',
142 withoutName: 'チャートのタイプは{seriesType}です。'
143 },
144 multiple: {
145 prefix: '{seriesCount}つのチャートシリーズによって構成されています。',
146 withName: '{seriesId}番目のシリーズは{seriesName}を示した{seriesType}で、',
147 withoutName: '{seriesId}番目のシリーズは{seriesType}で、',
148 separator: {
149 middle: ';',
150 end: '。'
151 }
152 }
153 },
154 data: {
155 allData: 'データは:',
156 partialData: 'その内、{displayCnt}番目までは:',
157 withName: '{name}のデータは{value}',
158 withoutName: '{value}',
159 separator: {
160 middle: '、',
161 end: ''
162 }
163 }
164 }
165};
166
167 echarts.registerLocale('JA', localeObj);
168
169});
\No newline at end of file