-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathja.xml
More file actions
5623 lines (5622 loc) · 368 KB
/
ja.xml
File metadata and controls
5623 lines (5622 loc) · 368 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Localization language="Japanese" description="Japanese" cultureName="ja">
<A_WebViewer>
<AbbreviatedDayFriday>金</AbbreviatedDayFriday>
<AbbreviatedDayMonday>月</AbbreviatedDayMonday>
<AbbreviatedDaySaturday>土</AbbreviatedDaySaturday>
<AbbreviatedDaySunday>日</AbbreviatedDaySunday>
<AbbreviatedDayThursday>木</AbbreviatedDayThursday>
<AbbreviatedDayTuesday>火</AbbreviatedDayTuesday>
<AbbreviatedDayWednesday>水</AbbreviatedDayWednesday>
<Attachment>添付ファイル:</Attachment>
<ButtonNext>次</ButtonNext>
<ButtonPrev>前</ButtonPrev>
<ButtonSend>送信</ButtonSend>
<CategoryAlreadyExists>その名前のカテゴリは既に存在します!</CategoryAlreadyExists>
<DayFriday>金曜日</DayFriday>
<DayMonday>月曜日</DayMonday>
<Days>日</Days>
<DaySaturday>土曜日</DaySaturday>
<DaySunday>日曜日</DaySunday>
<DayThursday>木曜日</DayThursday>
<DayTuesday>火曜日</DayTuesday>
<DayWednesday>水曜日</DayWednesday>
<Email>Eメール:</Email>
<EmailOptions>メールオプション</EmailOptions>
<FirstPage>1ページ目</FirstPage>
<Hours>時間</Hours>
<LabelFrom>From:</LabelFrom>
<LabelSelectExportFormat>レポートを保存する形式を選択します。</LabelSelectExportFormat>
<LabelTo>To:</LabelTo>
<LastPage>最後のページ</LastPage>
<Loading>読み込んでいます...</Loading>
<Message>メッセージ:</Message>
<Minutes>分</Minutes>
<MonthApril>4月</MonthApril>
<MonthAugust>8月</MonthAugust>
<MonthDecember>12月</MonthDecember>
<MonthFebruary>2月</MonthFebruary>
<MonthJanuary>1月</MonthJanuary>
<MonthJuly>7月</MonthJuly>
<MonthJune>6月</MonthJune>
<MonthMarch>3月</MonthMarch>
<MonthMay>5月</MonthMay>
<MonthNovember>11月</MonthNovember>
<MonthOctober>10月</MonthOctober>
<MonthSeptember>9月</MonthSeptember>
<NextPage>次のページ</NextPage>
<OnePage>1ページ</OnePage>
<Page>ページ</Page>
<PageOf>/</PageOf>
<PreviousPage>前のページ</PreviousPage>
<PrintContinue>印刷をクリックして続行</PrintContinue>
<PrintReport>印刷</PrintReport>
<PrintToPdf>PDF</PrintToPdf>
<PrintToXps>XPSへ印刷</PrintToXps>
<PrintWithoutPreview>プレビューなし印刷</PrintWithoutPreview>
<PrintWithPreview>プレビューあり印刷</PrintWithPreview>
<SaveReport>保存</SaveReport>
<Subject>件名:</Subject>
<TabItemContacts>連絡先</TabItemContacts>
<TextComputer>コンピューター</TextComputer>
<TextItemsRoot>ルート</TextItemsRoot>
<TodayDate>今日</TodayDate>
<WholeReport>全体レポート</WholeReport>
</A_WebViewer>
<Adapters>
<AdapterBusinessObjects>ビジネスオブジェクトからのデータ</AdapterBusinessObjects>
<AdapterConnection>{0}からのデータ</AdapterConnection>
<AdapterCrossTabDataSource>クロスタブからのデータ</AdapterCrossTabDataSource>
<AdapterCsvFiles>CSVファイルからのデータ</AdapterCsvFiles>
<AdapterDataTables>DataSet、DataTables</AdapterDataTables>
<AdapterDataViews>データビューからのデータ</AdapterDataViews>
<AdapterDB2Connection>IBM DB2接続からのデータ</AdapterDB2Connection>
<AdapterDBaseFiles>dBaseファイルからのデータ</AdapterDBaseFiles>
<AdapterDbUserSource>ユーザーソースからのデータ</AdapterDbUserSource>
<AdapterFirebirdConnection>Firebird接続からのデータ</AdapterFirebirdConnection>
<AdapterInformixConnection>Informix接続からのデータ</AdapterInformixConnection>
<AdapterMySQLConnection>MySQL接続からのデータ</AdapterMySQLConnection>
<AdapterOdbcConnection>ODBC接続からのデータ</AdapterOdbcConnection>
<AdapterOleDbConnection>OLE DB接続からのデータ</AdapterOleDbConnection>
<AdapterOracleConnection>Oracle接続からのデータ</AdapterOracleConnection>
<AdapterOracleODPConnection>Oracle ODP.NET接続からのデータ</AdapterOracleODPConnection>
<AdapterPostgreSQLConnection>PostgreSQL接続からのデータ</AdapterPostgreSQLConnection>
<AdapterSqlCeConnection>SQL CE接続からのデータ</AdapterSqlCeConnection>
<AdapterSqlConnection>SQL接続からのデータ</AdapterSqlConnection>
<AdapterSQLiteConnection>SQLite接続からのデータ</AdapterSQLiteConnection>
<AdapterTeradataConnection>Teradata接続からのデータ</AdapterTeradataConnection>
<AdapterUniDirectConnection>Uniダイレクト接続からのデータ</AdapterUniDirectConnection>
<AdapterUserSources>ユーザーソースからのデータ</AdapterUserSources>
<AdapterVirtualSource>その他のデータソース</AdapterVirtualSource>
<AdapterVistaDBConnection>VistaDB接続からのデータ</AdapterVistaDBConnection>
</Adapters>
<BarCode>
<Post>ポスト</Post>
<TwoDimensional>二次元</TwoDimensional>
</BarCode>
<Blockly>
<AllComponents>すべてのコンポーネント</AllComponents>
<AllComponentsFrom>すべてのコンポーネントのソース</AllComponentsFrom>
<ColorHex>カラー(16進数)</ColorHex>
<ColumnName>列名</ColumnName>
<DateTime>日付と時刻</DateTime>
<GetComponentByName>名前でコンポーネントを取得</GetComponentByName>
<GetCurrentValue>現在の値を取得</GetCurrentValue>
<GetDataSourceByName>名前でデータソースを取得</GetDataSourceByName>
<GetProperty>プロパティを取得</GetProperty>
<GetStyleByName>名前でスタイルを取得</GetStyleByName>
<GetVariable>変数を取得</GetVariable>
<IndexOfRow>行のインデックス</IndexOfRow>
<Lists>リスト</Lists>
<LocalVariables>ローカル変数</LocalVariables>
<Logic>論理演算</Logic>
<Loops>ループ</Loops>
<Math>数学</Math>
<OfDataSource>データソースの</OfDataSource>
<OfObject>オブジェクトの</OfObject>
<OpenLink>リンクを開く</OpenLink>
<Process>プロセス</Process>
<Programming>プログラミング</Programming>
<RefreshViewer>ビューアを更新</RefreshViewer>
<SetCurrentValue>現在の値を設定</SetCurrentValue>
<SetProperty>プロパティを設定</SetProperty>
<SetSqlCommand>SQL コマンドを設定</SetSqlCommand>
<SetVariable>変数を設定</SetVariable>
<Strings>文字列</Strings>
<ThisComponent>このコンポーネント</ThisComponent>
<ThisReport>このレポート</ThisReport>
<To>へ</To>
<Visuals>ビジュアル</Visuals>
</Blockly>
<Buttons>
<Add>追加</Add>
<AddAllColumns>すべての列を追加</AddAllColumns>
<Attach>アタッチ</Attach>
<Build>ビルド...</Build>
<Buttons>ボタン</Buttons>
<Cancel>&キャンセル</Cancel>
<Check>チェック</Check>
<Close>閉じる</Close>
<Delete>削除</Delete>
<Design>設計</Design>
<Down>ダウン</Down>
<Duplicate>複製</Duplicate>
<Export>エクスポート</Export>
<ForceDelete>強制削除</ForceDelete>
<Help>ヘルプ</Help>
<Install>インストール</Install>
<InvertAll>すべて反転</InvertAll>
<LessOptions>詳細オプションを閉じる</LessOptions>
<LoadDataSet>データセット (*.data)のロード</LoadDataSet>
<More>もっと</More>
<MoreApps>より多くのアプリケーション</MoreApps>
<MoreOptions>オプション詳細</MoreOptions>
<MoveLeft>左に移動</MoveLeft>
<MoveRight>右に移動</MoveRight>
<MoveToResource>リソースに移動</MoveToResource>
<No>いいえ</No>
<Ok>OK</Ok>
<Open>開く</Open>
<OpenContainingFolder>包含するフォルダを開く</OpenContainingFolder>
<OpenInSafeMode>セーフモードで開く</OpenInSafeMode>
<Print>印刷</Print>
<Publish>公開</Publish>
<QuickPrint>クイックプリント</QuickPrint>
<Remove>削除</Remove>
<RemoveAll>すべて削除</RemoveAll>
<Rename>名前を変更</Rename>
<RestoreDefaults>デフォルトに戻す</RestoreDefaults>
<Reverse>リバース</Reverse>
<Save>保存</Save>
<SaveCopy>コピーを保存</SaveCopy>
<SetAll>すべてを設定</SetAll>
<ShowLess>少なく表示</ShowLess>
<ShowMore>もっと表示</ShowMore>
<ShowSpecific>'{0}'の表示</ShowSpecific>
<Sign>サイン</Sign>
<Submit>サブミット</Submit>
<SwitchTo>{0}に切り替えます</SwitchTo>
<Test>テスト</Test>
<TryToReconnect>再接続</TryToReconnect>
<Up>アップ</Up>
<Upgrade>アップグレード</Upgrade>
<UpgradeNow>今すぐアップグレード</UpgradeNow>
<Upload>アップロード</Upload>
<Waiting>待機中</Waiting>
<Yes>&はい</Yes>
</Buttons>
<Chart>
<AddCondition>&条件を追加</AddCondition>
<AddConstantLine>&定数線を追加</AddConstantLine>
<AddFilter>&フィルターの追加</AddFilter>
<AddSeries>&シリーズを追加</AddSeries>
<AddStrip>ストリップを追加</AddStrip>
<AddTrendLine>トレンドラインを追加</AddTrendLine>
<Area>エリア</Area>
<Axes>軸</Axes>
<AxisReverse>逆</AxisReverse>
<AxisX>軸X</AxisX>
<AxisY>軸Y</AxisY>
<BoxAndWhisker>箱とヒゲ</BoxAndWhisker>
<Bubble>バブル</Bubble>
<Candlestick>ローソク足</Candlestick>
<ChartConditionsCollectionForm>条件</ChartConditionsCollectionForm>
<ChartEditorForm>グラフエディタ</ChartEditorForm>
<ChartFiltersCollectionForm>フィルタ</ChartFiltersCollectionForm>
<ChartType>グラフの種類</ChartType>
<CheckBoxAutoRotation>自動回転</CheckBoxAutoRotation>
<ClusteredBar>クラスターバー</ClusteredBar>
<ClusteredColumn>クラスターカラム</ClusteredColumn>
<Common>共通</Common>
<ConstantLine>定数線</ConstantLine>
<ConstantLinesEditorForm>定数線分エディタ</ConstantLinesEditorForm>
<DataColumns>データ列</DataColumns>
<Doughnut>ドーナツ</Doughnut>
<Financial>財務</Financial>
<FullStackedArea>フルスタックエリア</FullStackedArea>
<FullStackedBar>フルスタックバー</FullStackedBar>
<FullStackedColumn>フルスタックカラム</FullStackedColumn>
<FullStackedLine>フルスタックライン</FullStackedLine>
<FullStackedSpline>フルスタックスプライン</FullStackedSpline>
<FullStackedSplineArea>フルスタックスプラインエリア</FullStackedSplineArea>
<Funnel>フィルター</Funnel>
<FunnelWeightedSlices>ファンネル加重スライス</FunnelWeightedSlices>
<Gantt>ガント</Gantt>
<GridInterlaced>インターレース</GridInterlaced>
<GridLines>グリッド線</GridLines>
<Heatmap>ヒートマップ</Heatmap>
<Histogram>ヒストグラム</Histogram>
<LabelAlignment>アライメント:</LabelAlignment>
<LabelAlignmentHorizontal>水平:</LabelAlignmentHorizontal>
<LabelAlignmentVertical>垂直:</LabelAlignmentVertical>
<LabelAngle>角度:</LabelAngle>
<LabelArgumentDataColumn>引数データ列:</LabelArgumentDataColumn>
<LabelAutoRotation>自動回転:</LabelAutoRotation>
<LabelCloseValueDataColumn>クローズ値のデータ列:</LabelCloseValueDataColumn>
<LabelEndValueDataColumn>終値データ列:</LabelEndValueDataColumn>
<LabelHighValueDataColumn>高値データ列:</LabelHighValueDataColumn>
<LabelHorizontal>水平:</LabelHorizontal>
<LabelLowValueDataColumn>低値のデータ列:</LabelLowValueDataColumn>
<LabelMinorCount>マイナーカウント:</LabelMinorCount>
<LabelOpenValueDataColumn>オープンバリューデータ列:</LabelOpenValueDataColumn>
<Labels>ラベル</Labels>
<LabelsCenter>センター</LabelsCenter>
<LabelSeriesName>シリーズ名:</LabelSeriesName>
<LabelsInside>内部</LabelsInside>
<LabelsInsideBase>ベースの内側</LabelsInsideBase>
<LabelsInsideEnd>内側の端</LabelsInsideEnd>
<LabelsNone>なし</LabelsNone>
<LabelsOutside>外側</LabelsOutside>
<LabelsOutsideBase>ベース外</LabelsOutsideBase>
<LabelsOutsideEnd>外端</LabelsOutsideEnd>
<LabelsOverlay>オーバーレイ</LabelsOverlay>
<LabelsStyleCategory>カテゴリ</LabelsStyleCategory>
<LabelsStyleCategoryPercentOfTotal>カテゴリ - 合計の割合</LabelsStyleCategoryPercentOfTotal>
<LabelsStyleCategoryValue>カテゴリ - 値</LabelsStyleCategoryValue>
<LabelsStylePercentOfTotal>合計の割合</LabelsStylePercentOfTotal>
<LabelsStyleValue>値</LabelsStyleValue>
<LabelsTwoColumns>2つの列</LabelsTwoColumns>
<LabelTextAfter>テキスト後:</LabelTextAfter>
<LabelTextBefore>前のテキスト:</LabelTextBefore>
<LabelTitleAlignment>整列:</LabelTitleAlignment>
<LabelValueDataColumn>値のデータ列:</LabelValueDataColumn>
<LabelValueType>値のタイプ:</LabelValueType>
<LabelVertical>垂直:</LabelVertical>
<LabelVisible>表示:</LabelVisible>
<Legend>凡例</Legend>
<LegendSpacing>間隔</LegendSpacing>
<Line>ライン</Line>
<ListOfValues>値のリスト</ListOfValues>
<ListOfXValues>X値のリスト</ListOfXValues>
<ListOfYValues>Y値のリスト</ListOfYValues>
<Marker>マーカー</Marker>
<MoveConstantLineDown>一定の行を下に移動</MoveConstantLineDown>
<MoveConstantLineUp>一定の行を上に移動</MoveConstantLineUp>
<MoveSeriesDown>シリーズを下に移動</MoveSeriesDown>
<MoveSeriesUp>シリーズを上に移動</MoveSeriesUp>
<MoveStripDown>ストリップを下に移動</MoveStripDown>
<MoveStripUp>ストリップを上に移動</MoveStripUp>
<NoConditions>条件なし</NoConditions>
<NoFilters>フィルタなし</NoFilters>
<Pareto>パレット</Pareto>
<Pictorial>画像</Pictorial>
<PictorialStacked>積み上げ図</PictorialStacked>
<Pie>パイ</Pie>
<Radar>レーダー</Radar>
<RadarArea>レーダーエリア</RadarArea>
<RadarColumn>レーダー列</RadarColumn>
<RadarLine>レーダーライン</RadarLine>
<RadarPoint>レーダーポイント</RadarPoint>
<Range>範囲</Range>
<RangeBar>範囲バー</RangeBar>
<RemoveCondition>&条件を削除</RemoveCondition>
<RemoveConstantLine>定数線の削除</RemoveConstantLine>
<RemoveFilter>&フィルタを削除</RemoveFilter>
<RemoveSeries>&シリーズを削除</RemoveSeries>
<RemoveStrip>ストリップを削除</RemoveStrip>
<Ribbon>リボン</Ribbon>
<RunChartWizard>グラフとウィザードを実行</RunChartWizard>
<Scatter>散布</Scatter>
<ScatterLine>散布ライン</ScatterLine>
<ScatterSpline>散布スプライン</ScatterSpline>
<Series>シリーズ</Series>
<SeriesColorsCollectionForm>シリーズの色</SeriesColorsCollectionForm>
<SeriesEditorForm>シリーズエディタ</SeriesEditorForm>
<Serieses>シリーズ</Serieses>
<SparklinesArea>エリア</SparklinesArea>
<SparklinesColumn>カラム</SparklinesColumn>
<SparklinesLine>ライン</SparklinesLine>
<SparklinesWinLoss>勝敗</SparklinesWinLoss>
<Spline>スプライン</Spline>
<SplineArea>スプラインエリア</SplineArea>
<SplineRange>スプライン範囲</SplineRange>
<StackedArea>積層エリア</StackedArea>
<StackedBar>積層バー</StackedBar>
<StackedColumn>積層カラム</StackedColumn>
<StackedLine>積層ライン</StackedLine>
<StackedSpline>積層スプライン</StackedSpline>
<StackedSplineArea>積層スプラインエリア</StackedSplineArea>
<SteppedArea>ステップエリア</SteppedArea>
<SteppedLine>ステップライン</SteppedLine>
<SteppedRange>ステップ範囲</SteppedRange>
<Stock>ストック</Stock>
<Strip>ストリップ</Strip>
<StripsEditorForm>ストリップエディタフォーム</StripsEditorForm>
<Style>スタイル</Style>
<Sunburst>サンバースト</Sunburst>
<Surface>サーフェス</Surface>
<Treemap>ツリー図</Treemap>
<TrendLinesEditorForm>トレンドラインエディター</TrendLinesEditorForm>
<Waterfall>ウォーターフォール</Waterfall>
<WireframeSurface>ワイヤーフレームサーフェス</WireframeSurface>
</Chart>
<CharterMapEditor>
<Characters>キャラクター</Characters>
</CharterMapEditor>
<ChartRibbon>
<Axes>軸</Axes>
<AxesArrowStyle>矢印スタイル</AxesArrowStyle>
<AxesArrowStyleLines>ライン</AxesArrowStyleLines>
<AxesArrowStyleNone>なし</AxesArrowStyleNone>
<AxesArrowStyleTriangle>三角形</AxesArrowStyleTriangle>
<AxesLabel>ラベルの配置</AxesLabel>
<AxesLabelsNone>なし</AxesLabelsNone>
<AxesLabelsOneLine>1行</AxesLabelsOneLine>
<AxesLabelsTwoLines>2本の線</AxesLabelsTwoLines>
<AxesReverseHorizontal>逆水平</AxesReverseHorizontal>
<AxesReverseVertical>逆垂直</AxesReverseVertical>
<AxesTicks>ティック</AxesTicks>
<AxesTicksMajor>メジャー</AxesTicksMajor>
<AxesTicksMinor>マイナー</AxesTicksMinor>
<AxesTicksNone>なし</AxesTicksNone>
<AxesVisible>見える</AxesVisible>
<AxesXAxis>X軸</AxesXAxis>
<AxesXTopAxis>Xトップ軸</AxesXTopAxis>
<AxesYAxis>Y軸</AxesYAxis>
<AxesYRightAxis>Y右軸</AxesYRightAxis>
<CenterLabels>センター</CenterLabels>
<ChangeType>タイプの変更</ChangeType>
<GridLines>グリッド線</GridLines>
<GridLinesHorizontal>グリッド線水平</GridLinesHorizontal>
<GridLinesVertical>グリッドライン垂直</GridLinesVertical>
<HorAlCenter>センターのオーバーレイレジェンド</HorAlCenter>
<HorAlLeft>左のオーバーレイレジェンド</HorAlLeft>
<HorAlLeftOutside>左に凡例を表示<</HorAlLeftOutside>
<HorAlRight>右のオーバーレイレジェンド</HorAlRight>
<HorAlRightOutside>凡例を右に表示</HorAlRightOutside>
<HorizontalMajor>メジャー</HorizontalMajor>
<HorizontalMajorMinor>メジャーマイナーグリッドライン</HorizontalMajorMinor>
<HorizontalMinor>マイナー</HorizontalMinor>
<HorizontalNone>なし</HorizontalNone>
<InsideBaseLabels>ベースの内側</InsideBaseLabels>
<InsideEndLabels>内側の端</InsideEndLabels>
<Labels>シリーズラベル</Labels>
<Legend>凡例</Legend>
<LegendHorizontalAlignment>水平方向の整列</LegendHorizontalAlignment>
<LegendMarker>マーカー</LegendMarker>
<LegendMarkerAlignmentLeft>左</LegendMarkerAlignmentLeft>
<LegendMarkerAlignmentRight>右</LegendMarkerAlignmentRight>
<LegendMarkerVisible>見える</LegendMarkerVisible>
<LegendVerticalAlignment>垂直整列</LegendVerticalAlignment>
<LegendVisible>見える</LegendVisible>
<NoneLabels>なし</NoneLabels>
<OutsideBaseLabels>ベース外</OutsideBaseLabels>
<OutsideEndLabels>外端</OutsideEndLabels>
<OutsideLabels>外側</OutsideLabels>
<ribbonBarAxis>軸</ribbonBarAxis>
<ribbonBarChartStyles>グラフスタイル</ribbonBarChartStyles>
<ribbonBarChartType>グラフの種類</ribbonBarChartType>
<ribbonBarLabels>ラベル</ribbonBarLabels>
<ribbonBarLegend>凡例</ribbonBarLegend>
<Style>スタイルを変更</Style>
<TwoColumnsPieLabels>2つの列</TwoColumnsPieLabels>
<VertAlBottom><b>下部に凡例を重ねる</b><br>グラフの下部に凡例を表示する</br><br>サイズ変更なし</br></VertAlBottom>
<VertAlBottomOutside><b>凡例を下に表示</b><br>凡例を表示し、下に揃える</br></VertAlBottomOutside>
<VertAlCenter><b>センターのオーバーレイ凡例</b><br>グラフの中央に凡例を表示</br><br>サイズ変更なし</br></VertAlCenter>
<VertAlTop><b>上部にオーバーレイ凡例</b><br>グラフの上部に凡例を表示</br><br>サイズ変更なし</br></VertAlTop>
<VertAlTopOutside><b>上部に凡例を表示</b><br>凡例を表示し、上部揃え</br></VertAlTopOutside>
<VerticalMajor><b>メジャー</b><br>主要ユニットの垂直グリッド線の表示</br></VerticalMajor>
<VerticalMajorMinor><b>Major &&マイナーグリッドライン</b><br>メジャーユニットとマイナーユニットの垂直グリッド線の表示</br></VerticalMajorMinor>
<VerticalMinor><b>Minor</b><br>マイナーユニットの垂直グリッド線の表示</br></VerticalMinor>
<VerticalNone><b>None</b><br>垂直方向のグリッド線を表示しない</br></VerticalNone>
</ChartRibbon>
<Cloud>
<AcceptTermsAndPrivacyPolicy>私は{0}と{1}を読んで受け入れます。</AcceptTermsAndPrivacyPolicy>
<Account>アカウント</Account>
<AccountSettings>アカウント設定</AccountSettings>
<AddAPlace>場所を追加</AddAPlace>
<AreYouSureYouWantDeleteReport>ディスクから "{0}"レポートを削除してもよろしいですか?</AreYouSureYouWantDeleteReport>
<Authorize>認証</Authorize>
<AuthorizeWithLicenseKey>ライセンスキーで認証する</AuthorizeWithLicenseKey>
<ButtonChangePassword>パスワードを変更</ButtonChangePassword>
<ButtonDeleteAll>すべて削除</ButtonDeleteAll>
<ButtonDesign>デザインレポート</ButtonDesign>
<ButtonLater>後で</ButtonLater>
<ButtonLogInWith>{0}でログイン</ButtonLogInWith>
<ButtonLogout>ログアウト</ButtonLogout>
<ButtonPublish>公開</ButtonPublish>
<ButtonPurchase>購入</ButtonPurchase>
<ButtonRecover>回復します</ButtonRecover>
<ButtonRenew>更新</ButtonRenew>
<ButtonResendEmail>メールを再送</ButtonResendEmail>
<ButtonResendInvitation>招待状の再送</ButtonResendInvitation>
<ButtonResetPassword>パスワードを再設定</ButtonResetPassword>
<ButtonRun>走る</ButtonRun>
<ButtonScheduler>スケジューラー</ButtonScheduler>
<ButtonShare>シェア</ButtonShare>
<ButtonSignUp>サインアップ</ButtonSignUp>
<ButtonSignUpWith>{0}でサインアップ</ButtonSignUpWith>
<ButtonSkip>スキップ</ButtonSkip>
<ButtonView>ビュー</ButtonView>
<ButtonWhereUsed>それはどこで使われますか?</ButtonWhereUsed>
<Cancel>キャンセル</Cancel>
<CheckBoxMoveToRecycleBin>ごみ箱に移動</CheckBoxMoveToRecycleBin>
<CheckBoxRememberMe>私を覚えてますか</CheckBoxRememberMe>
<CheckForUpdate>更新確認</CheckForUpdate>
<Cloud>雲</Cloud>
<Collection>コレクション</Collection>
<Create>作成</Create>
<CreateError>レポートの作成中にエラーが発生しました。</CreateError>
<CreateNewCollection>新規コレクションを作成</CreateNewCollection>
<CreateYourTeam>チームを作成する</CreateYourTeam>
<CreatingReport>レポートを作成中...</CreatingReport>
<DashboardWindowTitleNew>新規ダッシュボード</DashboardWindowTitleNew>
<DeleteFile>ファイルを削除</DeleteFile>
<DoNotAskMe>次回質問しません。</DoNotAskMe>
<EnglishSearchRequired>検索クエリには英語を使用してください。</EnglishSearchRequired>
<EnterUserNameToLogin>ユーザー名(メールアドレス)を入力し、ログインします。</EnterUserNameToLogin>
<ExecutionError>実行エラー</ExecutionError>
<ExpiredDate>有効期限</ExpiredDate>
<FileStorageWindowTitleEdit>ファイルストレージの編集</FileStorageWindowTitleEdit>
<FileStorageWindowTitleNew>新規ファイルストレージ</FileStorageWindowTitleNew>
<FolderWindowTitleEdit>フォルダの編集</FolderWindowTitleEdit>
<FolderWindowTitleNew>新規フォルダ</FolderWindowTitleNew>
<ForExample>例えば</ForExample>
<GroupBoxAttachedItems>付属品</GroupBoxAttachedItems>
<HyperlinkAgreeToTerms>登録することにより、利用規約に同意します。</HyperlinkAgreeToTerms>
<HyperlinkAlreadyHaveAccount>すでにアカウントを持っている</HyperlinkAlreadyHaveAccount>
<HyperlinkForgotPassword>パスワードをお忘れですか</HyperlinkForgotPassword>
<HyperlinkHavePassword>パスワードを忘れた</HyperlinkHavePassword>
<HyperlinkRegisterAccount>無料アカウントを登録</HyperlinkRegisterAccount>
<InstallSamples>サンプルをインストール</InstallSamples>
<Invitations>招待状</Invitations>
<Invite>招待する</Invite>
<LabelAddCloudFolder>Stimulsoft Cloudフォルダーをレポートとダッシュボードに接続します。</LabelAddCloudFolder>
<LabelAddFolder>レポートとダッシュボードでローカルフォルダーを追加します。</LabelAddFolder>
<labelCollectionName>コレクション名:</labelCollectionName>
<LabelCreated>作成した:</LabelCreated>
<LabelCreateFolder>他のアイテムを配置できる新規カテゴリを作成します。</LabelCreateFolder>
<LabelCreateNewDashboard>新しいダッシュボードを作成します。</LabelCreateNewDashboard>
<LabelCreateReportTemplate>レポートテンプレートを作成します。</LabelCreateReportTemplate>
<LabelCurrentPassword>現在のパスワード:</LabelCurrentPassword>
<LabelDataFile>データファイル:</LabelDataFile>
<LabelDataUrl>データURL:</LabelDataUrl>
<LabelEndDate>終了日:</LabelEndDate>
<labelFileName>ファイル名:</labelFileName>
<LabelForeground>前景:</LabelForeground>
<LabelFromReport>レポートから</LabelFromReport>
<LabelFromReportCode>レポートから(コードで定義)</LabelFromReportCode>
<LabelInviteUser>チームに新しいユーザーを招待します。 メールに招待状を送信します。</LabelInviteUser>
<LabelLastLogin>前回のログイン:</LabelLastLogin>
<LabelLastTime>前回:</LabelLastTime>
<LabelModified>変更された:</LabelModified>
<LabelNewPassword>新規パスワード:</LabelNewPassword>
<LabelNextTime>次回:</LabelNextTime>
<labelPassword>パスワード:</labelPassword>
<LabelPermission>許可:</LabelPermission>
<LabelPicture>画像:</LabelPicture>
<LabelRenderedReport>レンダリングされたレポート</LabelRenderedReport>
<LabelResponseAsFile>ファイルとしての応答</LabelResponseAsFile>
<LabelResultType>結果のタイプ:</LabelResultType>
<LabelSeparateReport>別々のレポート(およびスクリプト)ファイル</LabelSeparateReport>
<LabelShowReport>レポートを表示:</LabelShowReport>
<LabelStartDate>開始日:</LabelStartDate>
<labelUserName>ユーザー名:</labelUserName>
<License>ライセンス</License>
<LicenseInformation>ライセンス情報</LicenseInformation>
<LicenseKey>ライセンスキー</LicenseKey>
<Login>ログイン</Login>
<MyAccount>マイアカウント</MyAccount>
<MyCloud>マイクラウド</MyCloud>
<MyPlan>マイプラン</MyPlan>
<MyTeam>自分のチーム</MyTeam>
<NofM>{0}:{2}の{1}</NofM>
<Open>開いた</Open>
<OpenFile>ファイルを開く</OpenFile>
<OperationCreate>'{0}'を作成</OperationCreate>
<OperationDelete>サーバーから '{0}'を削除</OperationDelete>
<OperationDownload>サーバーからダウンロード</OperationDownload>
<OperationGetList>サーバーからファイルのリストを取得</OperationGetList>
<OperationLogin>サーバーにログイン</OperationLogin>
<OperationRename>'{0}'から '{1}'に名前を変更します</OperationRename>
<OperationUpload>サーバーに「{0}」をアップロード</OperationUpload>
<page>ページ</page>
<Platforms>プラットフォーム</Platforms>
<Port>ポート</Port>
<PrivacyPolicy>プライバシー</PrivacyPolicy>
<Products>製品</Products>
<Proxy>プロキシ</Proxy>
<PublishMessage>このレポートを公開するためには、publish.stimulsoft.comのサービスに提示する必要があります。</PublishMessage>
<questionOpenThisFile>あなたは '{0}'アイテムを開けてもよろしいですか?</questionOpenThisFile>
<questionOverrideItem>あなたは本当に '{0}'項目をオーバーライドしますか?</questionOverrideItem>
<questionRemoveItem>あなたは本当に '{0}'アイテムを削除しますか?</questionRemoveItem>
<RefreshList>リストを更新</RefreshList>
<ReportDocumentFormatNotRecognized>'{0}'の書式がレンダリングされたレポート形式として認識されません。</ReportDocumentFormatNotRecognized>
<ReportTemplateFormatNotRecognized>'{0}'アイテムの書式がレポートテンプレート形式として認識されません。</ReportTemplateFormatNotRecognized>
<RequestChangesWhenSavingToCloud>クラウドに保存するときの変更をリクエスト</RequestChangesWhenSavingToCloud>
<RibbonButtonAddRole>役割を追加</RibbonButtonAddRole>
<RibbonButtonAddUser>ユーザーを追加</RibbonButtonAddUser>
<RibbonButtonAddUserParameter>ユーザーパラメータを追加する</RibbonButtonAddUserParameter>
<RibbonButtonAddWorkspace>ワークスペースの追加</RibbonButtonAddWorkspace>
<RibbonButtonFolder>フォルダ</RibbonButtonFolder>
<RibbonTabUsers>ユーザー</RibbonTabUsers>
<Root>ルート</Root>
<RootFolder>ルートフォルダ</RootFolder>
<Save>セーブ</Save>
<SaveAccountSettings>アカウント設定を保存</SaveAccountSettings>
<SaveAsType>タイプとして保存</SaveAsType>
<SaveFile>ファイルを保存</SaveFile>
<SavingToStimulsoftCloudPleaseWait>レポートをStimulsoft Cloudに保存します。 お待ちください!</SavingToStimulsoftCloudPleaseWait>
<SearchForOnlineTemplates>オンラインテンプレートを検索</SearchForOnlineTemplates>
<ShareWindowTitleNew>シェア</ShareWindowTitleNew>
<ShowAllFiles>すべてのファイルを表示</ShowAllFiles>
<ShowNotificationMessages>通知メッセージを表示</ShowNotificationMessages>
<Submissions>投稿</Submissions>
<Subscriptions>定期購読</Subscriptions>
<TabItemEmbedCode>埋め込みコード</TabItemEmbedCode>
<TabItemQRCode>QRコード</TabItemQRCode>
<TabItemShare>共有へのリンク</TabItemShare>
<Team>チーム</Team>
<TermsOfUse>条項</TermsOfUse>
<TextActivated>活性化</TextActivated>
<TextActivationDate>有効化日付</TextActivationDate>
<TextDelete>削除</TextDelete>
<TextDeletingItems>アイテムを削除しています...</TextDeletingItems>
<TextDescriptionChanges>変更の説明を入力してください:</TextDescriptionChanges>
<TextFirstName>ファーストネーム</TextFirstName>
<TextFromTo>{0}から{1}まで(合計 - {2})</TextFromTo>
<TextItemsWorkspace>ワークスペース</TextItemsWorkspace>
<TextLastName>苗字</TextLastName>
<TextModify>変更</TextModify>
<TextNewsLetters>ニュースレター</TextNewsLetters>
<TextNoFavoriteFiles>お気に入りのファイルはありません</TextNoFavoriteFiles>
<TextNoFiles>ファイルがありません</TextNoFiles>
<TextNoNotifications>通知なし</TextNoNotifications>
<TextNoRecentFiles>最近のファイルはありません</TextNoRecentFiles>
<TextOwner>オーナー</TextOwner>
<TextProfile>プロフィール</TextProfile>
<TextReports>レポート</TextReports>
<TextRestoringItems>アイテムの復元中...</TextRestoringItems>
<TextRole>役割</TextRole>
<TextRun>走る</TextRun>
<TextUser>ユーザー</TextUser>
<TextUserName>ユーザー名(電子メール)</TextUserName>
<TimeHoursAgoFive>5時間前、{0:t}</TimeHoursAgoFive>
<TimeHoursAgoFour>4時間前、{0:t}</TimeHoursAgoFour>
<TimeHoursAgoOne>1時間前、{0:t}</TimeHoursAgoOne>
<TimeHoursAgoThree>3時間前、{0:t}</TimeHoursAgoThree>
<TimeHoursAgoTwo>2時間前、{0:t}</TimeHoursAgoTwo>
<TimeMinutesAgoFive>5分前、{0:t}</TimeMinutesAgoFive>
<TimeMinutesAgoFour>4分前、{0:t}</TimeMinutesAgoFour>
<TimeMinutesAgoLessOne>1分未満で</TimeMinutesAgoLessOne>
<TimeMinutesAgoN>{0}分前、{1:t}</TimeMinutesAgoN>
<TimeMinutesAgoOne>1分前に、{0:t}</TimeMinutesAgoOne>
<TimeMinutesAgoThree>3分前に、{0:t}</TimeMinutesAgoThree>
<TimeMinutesAgoTwo>2分前に、{0:t}</TimeMinutesAgoTwo>
<TimeToday>今日、{0:t}</TimeToday>
<TimeYesterday>昨日、{0:t}</TimeYesterday>
<ToolTipAddRole>ワークスペースでの新規役割の作成。</ToolTipAddRole>
<ToolTipAddUser>選択したロールで新規ユーザーを作成します。</ToolTipAddUser>
<ToolTipAspNet>選択したレポートをASP.NETアプリケーションにパブリッシュします。</ToolTipAspNet>
<ToolTipAspNetMvc>選択したレポートをASP.NET MVCアプリケーションにパブリッシュします。</ToolTipAspNetMvc>
<ToolTipAttach>選択したレポートに項目を添付します。</ToolTipAttach>
<ToolTipCreate>新規アイテムを作成します。</ToolTipCreate>
<ToolTipDelete>選択した項目を削除します。</ToolTipDelete>
<ToolTipDeleted>削除したアイテムを表示します。</ToolTipDeleted>
<ToolTipDownload>選択したアイテムをダウンロードします。</ToolTipDownload>
<ToolTipEdit>選択した項目を編集します。</ToolTipEdit>
<ToolTipGridMode>リストビュー</ToolTipGridMode>
<ToolTipInfo>詳細を見る</ToolTipInfo>
<ToolTipJs>選択したレポートをHTMLページとして公開</ToolTipJs>
<ToolTipPublish>選択したレポートをアプリケーションにデプロイする準備をします。</ToolTipPublish>
<ToolTipRecover>選択したアイテムを回復します。</ToolTipRecover>
<ToolTipRunWithoutPreview>選択したレポートをプレビューなしでレンダリング</ToolTipRunWithoutPreview>
<ToolTipShare>選択したファイルを共有します。</ToolTipShare>
<ToolTipSort>並べ替えのオプション</ToolTipSort>
<ToolTipThumbnailMode>サムネイル表示</ToolTipThumbnailMode>
<ToolTipViewFile>選択したファイルを表示します。</ToolTipViewFile>
<ToolTipViewReport>選択したレポートをビューアに表示します。</ToolTipViewReport>
<WeDidntFindAnything>ここには何も見つかりませんでした。</WeDidntFindAnything>
<WindowDescriptionDelete>選択したアイテムを削除してもよろしいですか?</WindowDescriptionDelete>
<WindowDescriptionRecover>選択したアイテムはごみ箱から回収されます。</WindowDescriptionRecover>
<WindowTitleDelete>アイテムを削除</WindowTitleDelete>
<WindowTitleForgotPassword>パスワードをお忘れですか</WindowTitleForgotPassword>
<WindowTitleLogin>ログイン</WindowTitleLogin>
<WindowTitleRecover>リカバリ項目</WindowTitleRecover>
<WindowTitleRoleEdit>役割の編集</WindowTitleRoleEdit>
<WindowTitleRoleNew>新規役割</WindowTitleRoleNew>
<WindowTitleSignUp>サインアップ</WindowTitleSignUp>
<WindowTitleUserEdit>ユーザーの編集</WindowTitleUserEdit>
<WindowTitleUserNew>新規ユーザー</WindowTitleUserNew>
<WindowTitleUserParameterEdit>ユーザーパラメータを編集する</WindowTitleUserParameterEdit>
<WindowTitleUserParameterNew>新規ユーザーパラメーター</WindowTitleUserParameterNew>
<WindowTitleWorkspaceEdit>ワークスペースの編集</WindowTitleWorkspaceEdit>
<WindowTitleWorkspaceNew>新規ワークスペース</WindowTitleWorkspaceNew>
<WizardBlankReportDescription>空のレポートを作成</WizardBlankReportDescription>
<WizardExcelDescription>Excelデータを使用してレポートを作成します。</WizardExcelDescription>
<WizardJsonDescription>JSONデータを使用してレポートを作成します。</WizardJsonDescription>
<WizardPrivateShare>アクセスなし</WizardPrivateShare>
<WizardPrivateShareDescription>アイテムへの外部アクセスは制限されています。</WizardPrivateShareDescription>
<WizardPublicShare>パブリック・アクセス</WizardPublicShare>
<WizardPublicShareDescription>権限のないユーザーの外部アクセス。</WizardPublicShareDescription>
<WizardRegisteredShare>認可されたアクセス</WizardRegisteredShare>
<WizardRegisteredShareDescription>任意のワークスペースから登録されたユーザーのみの外部アクセス。</WizardRegisteredShareDescription>
<WizardTeamShare>チームアクセス</WizardTeamShare>
<WizardTeamShareDescription>1つのワークスペースのユーザーのみの外部アクセス</WizardTeamShareDescription>
<WizardXmlDescription>XMLデータを含むレポートを作成します。</WizardXmlDescription>
<YourPlan>あなたのプラン</YourPlan>
</Cloud>
<Components>
<StiBarCode>コード</StiBarCode>
<StiButton>ボタン</StiButton>
<StiCards>カード</StiCards>
<StiChart>グラフ</StiChart>
<StiCheckBox>チェックボックス</StiCheckBox>
<StiChildBand>子</StiChildBand>
<StiClone>クローン</StiClone>
<StiColumnFooterBand>列フッタ</StiColumnFooterBand>
<StiColumnHeaderBand>列ヘッダ</StiColumnHeaderBand>
<StiComboBox>コンボボックス</StiComboBox>
<StiComponent>成分</StiComponent>
<StiContainer>コンテナ</StiContainer>
<StiContourText>輪郭線テキスト</StiContourText>
<StiCrossColumn>クロスカラム</StiCrossColumn>
<StiCrossColumnTotal>クロス列合計</StiCrossColumnTotal>
<StiCrossDataBand>クロスデータ</StiCrossDataBand>
<StiCrossFooterBand>クロスフッタ</StiCrossFooterBand>
<StiCrossGroupFooterBand>グループ横断フッタ</StiCrossGroupFooterBand>
<StiCrossGroupHeaderBand>グループ間ヘッダ</StiCrossGroupHeaderBand>
<StiCrossHeaderBand>クロスヘッダ</StiCrossHeaderBand>
<StiCrossRow>クロスロー</StiCrossRow>
<StiCrossRowTotal>クロスローの合計</StiCrossRowTotal>
<StiCrossSummary>クロス集計</StiCrossSummary>
<StiCrossSummaryHeader>クロス集計ヘッダ</StiCrossSummaryHeader>
<StiCrossTab>クロスタブ</StiCrossTab>
<StiCrossTitle>クロスタイトル</StiCrossTitle>
<StiDashboard>ダッシュボード</StiDashboard>
<StiDataBand>データ</StiDataBand>
<StiDatePicker>日付ピッカー</StiDatePicker>
<StiElectronicSignature>電子署名</StiElectronicSignature>
<StiEmptyBand>空データ</StiEmptyBand>
<StiFooterBand>フッタ</StiFooterBand>
<StiGauge>ゲージ</StiGauge>
<StiGroupFooterBand>グループ<br>フッタ</StiGroupFooterBand>
<StiGroupHeaderBand>グループ<br>ヘッダ</StiGroupHeaderBand>
<StiHeaderBand>ヘッダ</StiHeaderBand>
<StiHierarchicalBand>階層データ</StiHierarchicalBand>
<StiHorizontalLinePrimitive>水平線</StiHorizontalLinePrimitive>
<StiImage>画像</StiImage>
<StiIndicator>インジケータ</StiIndicator>
<StiListBox>リストボックス</StiListBox>
<StiMap>地図</StiMap>
<StiMathFormula>数式</StiMathFormula>
<StiMultipleSelection>複数選択可</StiMultipleSelection>
<StiNumberBox>ナンバーボックス</StiNumberBox>
<StiOnlineMap>オンライン地図</StiOnlineMap>
<StiOverlayBand>オーバーレイ</StiOverlayBand>
<StiPage>ページ</StiPage>
<StiPageFooterBand>ページ<br>フッタ</StiPageFooterBand>
<StiPageHeaderBand>ページ<br>ヘッダ</StiPageHeaderBand>
<StiPanel>パネル</StiPanel>
<StiPdfDigitalSignature>PDF電子署名</StiPdfDigitalSignature>
<StiPdfDigitalSignatureElement>PDFエレメント</StiPdfDigitalSignatureElement>
<StiPivotColumn>ピボット列</StiPivotColumn>
<StiPivotRow>ピボットロウ</StiPivotRow>
<StiPivotSummary>ピボットの集計</StiPivotSummary>
<StiPivotTable>ピボットテーブル</StiPivotTable>
<StiProgress>進捗</StiProgress>
<StiRangeSelector>範囲セレクター</StiRangeSelector>
<StiRectanglePrimitive>矩形</StiRectanglePrimitive>
<StiRegionMap>地域マップ</StiRegionMap>
<StiReport>レポート</StiReport>
<StiReportSummaryBand>レポート集計</StiReportSummaryBand>
<StiReportTitleBand>レポートタイトル</StiReportTitleBand>
<StiRichText>リッチテキスト</StiRichText>
<StiRoundedRectanglePrimitive>角丸矩形</StiRoundedRectanglePrimitive>
<StiScreen>画面</StiScreen>
<StiShape>図形</StiShape>
<StiSignature>サイン</StiSignature>
<StiSingleSelection>シングルセレクション</StiSingleSelection>
<StiSlider>スライダー</StiSlider>
<StiSparkline>スパークライン</StiSparkline>
<StiSubReport>サブレポート</StiSubReport>
<StiSystemText>システムテキスト</StiSystemText>
<StiTable>表</StiTable>
<StiTableOfContents>目次</StiTableOfContents>
<StiText>テキスト</StiText>
<StiTextInCells>セル内テキスト</StiTextInCells>
<StiTreeView>ツリー表示</StiTreeView>
<StiTreeViewBox>ツリービューボックス</StiTreeViewBox>
<StiVerticalLinePrimitive>垂直線</StiVerticalLinePrimitive>
<StiWebContent>ウェブコンテンツ</StiWebContent>
<StiWinControl>勝利のコントロール</StiWinControl>
<StiZipCode>Zipコード</StiZipCode>
</Components>
<CustomMapWindow>
<CheckedAll>すべてチェック済</CheckedAll>
<HideText>テキストを非表示</HideText>
<KeysChangePosition>キー(左、上、右、下)はテキストの位置を変更</KeysChangePosition>
<KeysChangeSize>Shift + キー(左、上、右、下)は、テキスト領域のサイズを変更</KeysChangeSize>
<UncheckedAll>すべての未チェック</UncheckedAll>
</CustomMapWindow>
<Dashboard>
<AddRange>範囲を追加</AddRange>
<AfterGroupingData>データをグループ化した後に適用</AfterGroupingData>
<AfterSortingData>データをグループ化して並べ替えた後に適用する</AfterSortingData>
<AllowUserColumnSelection>ユーザー列の選択を許可する</AllowUserColumnSelection>
<AllowUserDrillDown>ユーザードリルダウンの許可</AllowUserDrillDown>
<AllowUserFiltering>ユーザーフィルターの許可</AllowUserFiltering>
<AllowUserSorting>ユーザーソートの許可</AllowUserSorting>
<BeforeTransformation>データ変換前に適用</BeforeTransformation>
<Blank>(ブランク)</Blank>
<Blanks>(ブランク)</Blanks>
<BooleanFilters>ブーリアンフィルタ</BooleanFilters>
<CannotLoadDashboard>ダッシュボードでレポートを読み込むことはできません。</CannotLoadDashboard>
<ChangeChartType>グラフタイプの変更</ChangeChartType>
<ChangeMapType>マップタイプの変更</ChangeMapType>
<ClearAllFormatting>すべての書式設定をクリア</ClearAllFormatting>
<ClearFilterFrom>'{0}'のフィルタをクリア</ClearFilterFrom>
<ColorScale>カラースケール</ColorScale>
<ColumnInteractions>カラム相互作用</ColumnInteractions>
<CreateDataBinding>データバインディングを作成</CreateDataBinding>
<CustomFilter>カスタムフィルタ...</CustomFilter>
<DashboardsNotSupportedIntheWPFDesigner>ダッシュボードはWPFデザイナーではサポートされていません。</DashboardsNotSupportedIntheWPFDesigner>
<DataBars>データバー</DataBars>
<DataFilterGrouping>この操作は、異なる列をグループ化するためにのみ使用されます。</DataFilterGrouping>
<DataNotDefined>データが定義されていません</DataNotDefined>
<DateFilters>日付フィルター</DateFilters>
<Dimension>寸法</Dimension>
<Dimensions>寸法</Dimensions>
<DragDropBlocks>パネルからブロックをドラッグアンドドロップ</DragDropBlocks>
<DragDropData>ドラッグ&ドロップデータ</DragDropData>
<DragDropDataFromDictionary>辞書からデータをドラッグアンドドロップ</DragDropDataFromDictionary>
<DrillDown>ドリルダウン</DrillDown>
<DrillDownFiltered>ドリルダウンフィルター済み</DrillDownFiltered>
<DrillDownSelected>ドリルダウン選択</DrillDownSelected>
<DrillUp>ドリルアップ</DrillUp>
<DuplicateField>重複フィールド</DuplicateField>
<EditDataBinding>データバインディングを編集</EditDataBinding>
<EditExpression>式を編集</EditExpression>
<EditField>フィールドを編集</EditField>
<EmptyDashboardFooter>部品をツールボックスまたは辞書からのデータのドラッグ&ドロップ</EmptyDashboardFooter>
<EmptyDashboardHeader>ダッシュボードが空です</EmptyDashboardHeader>
<FieldInteractions>フィールド相互作用</FieldInteractions>
<FieldTypeRestrictionHint>'{0}'タイプフィールドのみ使用できます。</FieldTypeRestrictionHint>
<FirstLastPoints>最初</FirstLastPoints>
<FirstRowIndex>最初の行のインデックス</FirstRowIndex>
<FullRowSelect>全行選択</FullRowSelect>
<HighLowPoints>高い</HighLowPoints>
<ImageNotSpecified>画像が指定されていない</ImageNotSpecified>
<Indicator>インジケータ</Indicator>
<InitialValue>初期値</InitialValue>
<LimitRows>行をスキップして制限</LimitRows>
<Measure>測定</Measure>
<Measures>措置</Measures>
<Metrics>指標</Metrics>
<NewDimension>新規次元</NewDimension>
<NewField>新しいフィールド</NewField>
<NewMeasure>新規尺度</NewMeasure>
<NoRanges>範囲なし</NoRanges>
<NoResult>検索結果はありません</NoResult>
<NResult>{0} 件の結果</NResult>
<NResults>{0} 件の結果</NResults>
<NSelected>{0}が選択されました</NSelected>
<Nulls>(Nulls)</Nulls>
<NumberFilters>数値フィルタ</NumberFilters>
<ParentElement>親要素</ParentElement>
<Priority>優先順位</Priority>
<RangeMode>範囲指定モード</RangeMode>
<RangeType>範囲指定タイプ</RangeType>
<RemoveActions>アクションの削除</RemoveActions>
<RemoveAllFields>すべてのフィールドを削除</RemoveAllFields>
<RemoveField>フィールドを削除</RemoveField>
<RemoveMobileSurface>モバイルサーフェスを削除</RemoveMobileSurface>
<ReplaceValues>値を置き換える</ReplaceValues>
<ReportSnapshot>レポートスナップショット</ReportSnapshot>
<RowsCount>行数</RowsCount>
<RunFieldsEditor>フィールドエディタ実行</RunFieldsEditor>
<RunFieldsEditorInfo>各テーブル列の相互作用を変更するには、フィールドエディタを実行します。</RunFieldsEditorInfo>
<SelectAll>(すべて選択)</SelectAll>
<ShowAllValue>すべての値を表示</ShowAllValue>
<ShowAsPercentages>パーセンテージとして表示</ShowAsPercentages>
<ShowBlanks>ブランクを表示</ShowBlanks>
<SkipFirstRows>最初の行をスキップ</SkipFirstRows>
<SortAZ>A→Zにソート</SortAZ>
<SortLargestToSmallest>最小から最小へ並べ替え</SortLargestToSmallest>
<SortNewestToOldest>新→古への並べ替え</SortNewestToOldest>
<SortOldestToNewest>古-新への並べ替え</SortOldestToNewest>
<SortSmallestToLargest>最小から最大まで並べ替え</SortSmallestToLargest>
<SortZA>Z→Aにソート</SortZA>
<Sparklines>スパークライン</Sparklines>
<StringFilters>文字列フィルタ</StringFilters>
<TransformationHint>テーブルヘッダをクリックすると、ソート、フィルタリング、またはデータの変更が適用されます。 この変換はこのアイテムのデータにのみ適用されます。</TransformationHint>
<Trend>傾向</Trend>
<ViewEditCompilationNotice>「Report.CalculationMode」プロパティが 「Compilation」値と等しいレポートは編集できません。 そのプロパティを「Interpretation」値に設定してください。</ViewEditCompilationNotice>
<ViewModeDesktop>デスクトップ</ViewModeDesktop>
<ViewModeMobile>モバイル</ViewModeMobile>
</Dashboard>
<Database>
<Connection>接続</Connection>
<Database>{0}接続</Database>
<DatabaseDB2>IBM DB2接続</DatabaseDB2>
<DatabaseFirebird>Firebird接続</DatabaseFirebird>
<DatabaseInformix>Informix Connection</DatabaseInformix>
<DatabaseJson>JSONデータ</DatabaseJson>
<DatabaseMySQL>MySQL接続</DatabaseMySQL>
<DatabaseOdbc>ODBC接続</DatabaseOdbc>
<DatabaseOleDb>OLE DB接続</DatabaseOleDb>
<DatabaseOracle>Oracle Connection</DatabaseOracle>
<DatabaseOracleODP>Oracle ODP.NET接続</DatabaseOracleODP>
<DatabasePostgreSQL>PostgreSQLの接続</DatabasePostgreSQL>
<DatabaseSql>SQL接続</DatabaseSql>
<DatabaseSqlCe>SQLServerCE接続</DatabaseSqlCe>
<DatabaseSQLite>SQLite接続</DatabaseSQLite>
<DatabaseTeradata>Teradata接続</DatabaseTeradata>
<DatabaseUniDirect>Uni直接接続</DatabaseUniDirect>
<DatabaseVistaDB>VistaDB接続</DatabaseVistaDB>
<DatabaseXml>XMLデータ</DatabaseXml>
</Database>
<DatePickerRanges>
<CurrentMonth>今月</CurrentMonth>
<CurrentQuarter>現在の四半期</CurrentQuarter>
<CurrentWeek>今週</CurrentWeek>
<CurrentYear>今年</CurrentYear>
<DaysAgo>{0}日前</DaysAgo>
<FirstQuarter>第1四半期</FirstQuarter>
<FourthQuarter>第4四半期</FourthQuarter>
<Index>インデックス</Index>
<Last14Days>過去14日間</Last14Days>
<Last30Days>過去30日間</Last30Days>
<Last7Days>過去7日間</Last7Days>
<MonthToDate>過去1カ月間</MonthToDate>
<NextMonth>来月</NextMonth>
<NextQuarter>次の四半期</NextQuarter>
<NextWeek>来週</NextWeek>
<NextYear>来年</NextYear>
<PreviousMonth>前の月</PreviousMonth>
<PreviousQuarter>前四半期</PreviousQuarter>
<PreviousWeek>前の週</PreviousWeek>
<PreviousYear>前年</PreviousYear>
<Quarter>四半期</Quarter>
<QuarterToDate>今四半期</QuarterToDate>
<SecondQuarter>第2四半期</SecondQuarter>
<ThirdQuarter>第3四半期</ThirdQuarter>
<Today>今日</Today>
<Tomorrow>明日</Tomorrow>
<WeekToDate>週末まで</WeekToDate>
<Year>年</Year>
<YearToDate>年初来</YearToDate>
<Yesterday>昨日</Yesterday>
</DatePickerRanges>
<DesignerFx>
<AlreadyExists>'{0}'は既に存在します。</AlreadyExists>
<CanNotLoadThisReportTemplate>このレポートテンプレートを読み込めません。</CanNotLoadThisReportTemplate>
<CloseDataSourceEditor>データソースエディタを終了しますか?</CloseDataSourceEditor>
<CloseEditor>エディタを終了しますか?</CloseEditor>
<CompilingReport>レポートのコンパイル</CompilingReport>
<Connecting>サーバーにつなげる</Connecting>
<ConnectionError>接続エラー</ConnectionError>
<ConnectionSuccessfull>接続は成功しました</ConnectionSuccessfull>
<Continue>持続</Continue>
<DecryptionError>復号化エラー:パスワードが間違っているか、ファイルが破損しています。</DecryptionError>
<EmailSuccessfullySent>電子メールは正常に送信されました。</EmailSuccessfullySent>
<ErrorAtSaving>保存時のエラー</ErrorAtSaving>
<ErrorCode>保存時にエラーが発生しました。 エラーコード:{0}</ErrorCode>
<ErrorServer>保存時にエラーが発生しました。 サーバーが応答しません。</ErrorServer>
<ExportingReport>レポートのエクスポート</ExportingReport>
<LoadingCode>コードの読み込み</LoadingCode>
<LoadingConfiguration>コンフィグレーションの読み込み</LoadingConfiguration>
<LoadingData>データのロード</LoadingData>
<LoadingDocument>ドキュメントの読み込み</LoadingDocument>
<LoadingImages>画像の読み込み</LoadingImages>
<LoadingLanguage>言語を読み込む</LoadingLanguage>
<LoadingReport>レポートの読み込み</LoadingReport>
<PreviewAs>{0}としてプレビュー</PreviewAs>
<RenderingReport>レンダリングレポート</RenderingReport>
<ReportSuccessfullySaved>レポートは正常に保存されました。</ReportSuccessfullySaved>
<RetrieveError>列の取得エラー</RetrieveError>
<RetrievingColumns>列の取得</RetrievingColumns>
<Saving>保存</Saving>
<SavingConfiguration>設定の保存</SavingConfiguration>
<SavingReport>レポートの保存</SavingReport>
<TestConnection>テスト接続</TestConnection>
<TextNotFound>指定されたテキストが見つかりませんでした。 テキスト:{0}</TextNotFound>
</DesignerFx>
<Desktop>
<Beginner>ビギナー</Beginner>
<ButtonAddCloud>クラウドフォルダーを追加</ButtonAddCloud>
<ButtonAddFolder>フォルダーを追加</ButtonAddFolder>
<ButtonCreateDashboard>ダッシュボードを作成</ButtonCreateDashboard>
<ButtonCreateReport>レポートを作成</ButtonCreateReport>
<ChooseYourSkillLevel>あなたのスキルレベルを選択してください</ChooseYourSkillLevel>
<Creator>クリエーター</Creator>
<Developer>開発者</Developer>
<DoYouWantToInstallReports>レポートとダッシュボードのテンプレートをインストールしますか?</DoYouWantToInstallReports>
<InstallSamplesDesc>サンプルプロジェクトをインストールしましょう。 それらは私たちのソフトウェアを扱う基本を学ぶのに役立ちます。</InstallSamplesDesc>
<PleaseAnswerWhoAreYou>誰かお答ください。</PleaseAnswerWhoAreYou>
<SkillLevel>スキルレベル</SkillLevel>
<WhoAreYou>あなたは誰?</WhoAreYou>
<WhoAreYouBeginnerDescription>デザイナーの最初の実行を行う場合は、完璧にフィットします。</WhoAreYouBeginnerDescription>
<WhoAreYouCreatorDescription>レポートの作成に最適です。 デザインに必要な機能を備えています。</WhoAreYouCreatorDescription>
<WhoAreYouDeveloperDescription>アプリケーションの作成に最適です。 レポートデザインと埋め込みコンポーネントの完全な機能が含まれています。</WhoAreYouDeveloperDescription>
</Desktop>
<Dialogs>
<StiButtonControl>ボタン</StiButtonControl>
<StiCheckBoxControl>チェックボックス</StiCheckBoxControl>
<StiCheckedListBoxControl>チェックリストボックス</StiCheckedListBoxControl>
<StiComboBoxControl>コンボボックス</StiComboBoxControl>
<StiDateTimePickerControl>日時ピッカー</StiDateTimePickerControl>
<StiForm>図形</StiForm>
<StiGridControl>グリッド</StiGridControl>
<StiGroupBoxControl>グループボックス</StiGroupBoxControl>
<StiLabelControl>ラベル</StiLabelControl>
<StiListBoxControl>リストボックス</StiListBoxControl>
<StiListViewControl>リストビュー</StiListViewControl>
<StiLookUpBoxControl>ルックアップボックス</StiLookUpBoxControl>
<StiNumericUpDownControl>数値アップ</StiNumericUpDownControl>
<StiPanelControl>パネル</StiPanelControl>
<StiPictureBoxControl>ピクチャーボックス</StiPictureBoxControl>
<StiRadioButtonControl>ラジオボタン</StiRadioButtonControl>
<StiRadioControl>ラジオ</StiRadioControl>
<StiRadioGroupControl>ラジオグループ</StiRadioGroupControl>
<StiReportControl>レポートコントロール</StiReportControl>
<StiRichTextBoxControl>リッチテキストボックス</StiRichTextBoxControl>
<StiSliderControl>スライダー</StiSliderControl>
<StiSwitchControl>トグル</StiSwitchControl>
<StiTextBoxControl>テキストボックス</StiTextBoxControl>
<StiTreeViewControl>ツリー表示</StiTreeViewControl>
</Dialogs>
<Editor>
<AllowSQLFormatting>SQLフォーマットを許可する</AllowSQLFormatting>
<AutomaticallyGeneratedExpression>これは自動生成された式です。</AutomaticallyGeneratedExpression>
<BetweenMetrics>1〜10のメトリックを選択できます。</BetweenMetrics>
<CantFind>データが見つかりませんでした。</CantFind>
<CollapseToDefinitions>定義への崩壊</CollapseToDefinitions>
<Column>列:{0}</Column>
<EntireScope>全体の範囲</EntireScope>
<Find>検索</Find>
<FindNext>次を探す</FindNext>
<FindWhat>キーワード検索:</FindWhat>
<FromCursor>カーソルから</FromCursor>
<GotoLine>行へ</GotoLine>
<InsertField>フィールドを挿入</InsertField>
<InsertLink>リンクを挿入</InsertLink>
<InsertSymbol>シンボルを挿入</InsertSymbol>
<Line>行:{0}</Line>
<LineNumber>行番号:</LineNumber>
<LineNumberIndex>行番号({0} - {1})</LineNumberIndex>
<MarkAll>全てをマーク</MarkAll>
<MatchCase>大文字小文字を区別</MatchCase>
<MatchWholeWord>完全一致</MatchWholeWord>
<MaximumDimensions>最大7つの寸法を選択できます。</MaximumDimensions>
<Outlining>アウトライニング</Outlining>
<PromptOnReplace>置換時のプロンプト</PromptOnReplace>
<Replace>置換</Replace>
<ReplaceAll>すべてを置換</ReplaceAll>
<ReplaceWith>置換:</ReplaceWith>
<Search>サーチ</Search>
<SearchHiddenText>隠されたテキスト</SearchHiddenText>
<SearchUp>検索アップ</SearchUp>
<SelectionOnly>選択のみ</SelectionOnly>
<ShowAutoGeneratedCode>自動生成されたコードを表示</ShowAutoGeneratedCode>
<ShowLineNumbers>行番号を表示</ShowLineNumbers>
<StopOutlining>アウトラインの停止</StopOutlining>
<titleFind>検索</titleFind>
<titleGotoLine>行に行く</titleGotoLine>
<titleReplace>置換</titleReplace>
<ToggleAllOutlining>アウトラインを切り替える</ToggleAllOutlining>
<ToggleOutliningExpansion>アウトライン展開の切り替え</ToggleOutliningExpansion>
<TypeToSearch>検索するタイプ</TypeToSearch>
<UseRegularExpressions>正規表現を使用</UseRegularExpressions>