-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmessages.json
6110 lines (6110 loc) · 340 KB
/
messages.json
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
{
"domain": "superset",
"locale_data": {
"superset": {
"": {
"domain": "superset",
"lang": "zh",
"plural_forms": "nplurals=1; plural=0"
},
"\n The cumulative option allows you to see how your data accumulates over different\n values. When enabled, the histogram bars represent the running total of frequencies\n up to each bin. This helps you understand how likely it is to encounter values\n below a certain point. Keep in mind that enabling cumulative doesn't change your\n original data, it just changes the way the histogram is displayed.": [
"\n通过累积选项, 您可以查看数据在不同值上的累积情况。启用该选项后, 直方图条形图将表示每个分区的频率总和。这可以帮助你了解遇到低于某个点的值(n)的可能性有多大。请记住, 启用累积功能并不会改变你的原始数据, 它只是改变了直方图的显示方式。"
],
"\n The normalize option transforms the histogram values into proportions or\n probabilities by dividing each bin's count by the total count of data points.\n This normalization process ensures that the resulting values sum up to 1,\n enabling a relative comparison of the data's distribution and providing a\n clearer understanding of the proportion of data points within each bin.": [
"\n归一化选项将直方图值转化为比例或概率, 方法是将每个分区的计数除以数据点的总计数。这一归一化过程可确保得出的值总和为 1, 从而可以对数据分布进行相对比较, 并更清楚地了解每个分区内数据点的比例。"
],
"\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [
"\n此过滤条件是从看板上下文继承的。保存图表时不会保存。"
],
"\n Error: %(text)s\n ": [
"\n错误:%(text)s\n "
],
" (excluded)": ["(不包含)"],
" Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [
"如果您不想覆盖GeoJSON中指定的颜色,请将不透明度设置为0"
],
" a dashboard OR ": ["一个已存在的看板或者"],
" a new one": ["另存为新的"],
" expression which needs to adhere to the ": [" 表达式必须基于 "],
" source code of Superset's sandboxed parser": [
"Superset 沙盒解析器的源代码"
],
" standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [
"来确保字符的表达顺序与时间顺序一致的标准。如果时间戳格式不符合 ISO 8601 标准,则需要定义表达式和类型,以便将字符串转换为日期或时间戳。注意:当前不支持时区。如果时间以epoch格式存储,请输入 `epoch_s` or `epoch_ms` 。如果没有指定任何模式,我们可以通过额外的参数在每个数据库/列名级别上使用可选的默认值。"
],
" to add calculated columns": ["添加计算列"],
" to add metrics": ["添加指标"],
" to edit or add columns and metrics.": ["编辑或增加列与指标"],
" to mark a column as a time column": ["将一列标记为时间列"],
" to open SQL Lab. From there you can save the query as a dataset.": [
"然后打开SQL工具箱。在那里你可以将查询保存为一个数据集。"
],
" to visualize your data.": ["将您的数据可视化"],
"!= (Is not equal)": ["不等于(!=)"],
"% calculation": ["% 计算"],
"% of parent": ["% 父类"],
"% of total": ["% 总计"],
"%(dialect)s cannot be used as a data source for security reasons.": [
"出于安全原因,%(dialect)s SQLite数据库不能用作数据源。"
],
"%(message)s\nThis may be triggered by: \n%(issues)s": [
"%(message)s\n这可能由以下因素触发:%(issues)s"
],
"%(name)s.csv": ["%(name)s.csv"],
"%(name)s.pdf": ["%(name)s.pdf"],
"%(object)s does not exist in this database.": [
"数据库中不存在 %(object)s 。"
],
"%(other)s charts will appear here": [" %(other)s 图表将出现在此处"],
"%(other)s dashboards will appear here": [" %(other)s 看板将出现在此处"],
"%(other)s recents will appear here": [
" %(other)s 最近访问的将出现在此处"
],
"%(other)s saved queries will appear here": [
"%(other)s 保存的请求将出现在此处"
],
"%(prefix)s %(title)s": ["%(prefix)s %(title)s"],
"%(report_type)s schedule frequency exceeding limit. Please configure a schedule with a minimum interval of %(minimum_interval)d minutes per execution.": [
"%(report_type)s 计划频率超出限制。请配置最小间隔为每次执行 %(minimum_interval)d 分钟的计划。"
],
"%(rows)d rows returned": ["返回了 %(rows)d 行"],
"%(subtitle)s\nThis may be triggered by:\n %(issue)s": [
"%(subtitle)s\n这可能由以下因素触发:%(issue)s"
],
"%(suggestion)s instead of \"%(undefinedParameter)s?\"": [
"用 %(suggestion)s 替换 \"%(undefinedParameter)s\" 吗?"
],
"%(type)s File": ["%(type)s 文件"],
"%(validator)s was unable to check your query.\nPlease recheck your query.\nException: %(ex)s": [
"%(validator)s 无法检查您的查询。\n请重新检查您的查询。\n异常: %(ex)s"
],
"%s Error": ["%s 异常"],
"%s PASSWORD": ["%s 密码"],
"%s SSH TUNNEL PASSWORD": ["%s SSH 隧道密码"],
"%s SSH TUNNEL PRIVATE KEY": ["%s SSH 隧道私有密钥"],
"%s SSH TUNNEL PRIVATE KEY PASSWORD": ["%s SSH 隧道私有密钥密码"],
"%s Selected": ["%s 已选定"],
"%s Selected (%s Physical, %s Virtual)": [
"%s 个被选中 (%s 个实体, %s 个虚拟)"
],
"%s Selected (Physical)": ["%s 个被选中(实体)"],
"%s Selected (Virtual)": ["%s 个被选中(虚拟)"],
"%s aggregates(s)": ["%s 聚合"],
"%s column(s)": ["%s 列"],
"%s ineligible item(s) are hidden": ["隐藏了 %s 个不符合条件的项目"],
"%s items could not be tagged because you don’t have edit permissions to all selected objects.": [
"无法标记 %s 项目, 因为您没有所有选定对象的编辑权限。"
],
"%s operator(s)": ["%s 运算符"],
"%s option": ["%s 个选项"],
"%s option(s)": ["%s 个选项"],
"%s recipients": ["最近"],
"%s row": ["%s 行"],
"%s saved metric(s)": ["%s 保存的指标"],
"%s updated": ["上次更新 %s"],
"%s%s": ["%s%s"],
"%s-%s of %s": ["%s-%s 总计 %s"],
"(Removed)": ["(已删除)"],
"(deleted or invalid type)": ["(已删除或无效类型)"],
"(no description, click to see stack trace)": [
"无描述,单击可查看堆栈跟踪"
],
"), and they become available in your SQL (example:": [
"), 他们在你的SQL中会变成有效数据 (比如:"
],
"*%(name)s*\n\n %(description)s\n\n Error: %(text)s\n ": [
"*%(name)s*\n\n %(description)s\n\n 错误: %(text)s\n "
],
"*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [
"*%(name)s*\n\n%(description)s\n\n<%(url)s|在 Superset 中探索>\n\n%(table)s\n"
],
"*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [
"*%(name)s*\n\n%(description)s\n\n错误: %(text)s\n"
],
"+ %s more": ["+ %s 更多"],
",": [","],
"-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [
"-- 注意:除非您保存查询,否则如果清除cookie或更改浏览器时,这些选项卡将不会保留。\n"
],
".": ["."],
"0 Selected": ["0个被选中"],
"1 calendar day frequency": ["1个日历日的频率"],
"1 day": ["天"],
"1 day ago": ["1天之前"],
"1 hour": ["1小时"],
"1 hourly frequency": ["每小时一次的频率"],
"1 minute": ["1分钟"],
"1 minutely frequency": ["每分钟一次的频率"],
"1 month ago": ["1月之前"],
"1 month end frequency": ["每月一次的频率"],
"1 month start frequency": ["每月月初的频率"],
"1 week": ["1周"],
"1 week ago": ["1周之前"],
"1 week starting Monday (freq=W-MON)": ["周一为一周开始"],
"1 week starting Sunday (freq=W-SUN)": ["周日为一周开始"],
"1 year": ["1年"],
"1 year ago": ["1年之前"],
"1 year end frequency": ["每年年末的频率"],
"1 year start frequency": ["每年年初的频率"],
"10 minute": ["10分钟"],
"104 weeks": ["104周"],
"104 weeks ago": ["104周之前"],
"15 minute": ["15分钟"],
"156 weeks": ["156周"],
"156 weeks ago": ["156周之前"],
"1AS": [""],
"1D": [""],
"1H": [""],
"1M": [""],
"1T": [""],
"2 years": ["2年"],
"2 years ago": ["2年之前"],
"2/98 percentiles": ["2/98百分位"],
"22": [""],
"28 days": ["28天"],
"28 days ago": ["28天之前"],
"2D": ["2D"],
"3 letter code of the country": ["国家3字码"],
"3 years": ["3年"],
"3 years ago": ["3年前"],
"30 days": ["30天"],
"30 days ago": ["30天之前"],
"30 minute": ["30分钟"],
"30 minutes": ["30分钟"],
"30 second": ["30秒钟"],
"30 seconds": ["30秒钟"],
"3D": [""],
"4 weeks (freq=4W-MON)": [""],
"5 minute": ["5分钟"],
"5 minutes": ["5分钟"],
"5 second": ["5秒"],
"5 seconds": ["5秒"],
"52 weeks": ["52周"],
"52 weeks ago": ["52周之前"],
"52 weeks starting Monday (freq=52W-MON)": ["以周一开始的52周"],
"6 hour": ["6小时"],
"60 days": ["60天"],
"7 calendar day frequency": ["7个日历日的频率"],
"7 days": ["7天"],
"7D": [""],
"9/91 percentiles": ["9/91百分位"],
"90 days": ["90天"],
":": [":"],
"< (Smaller than)": ["小于(<)"],
"<= (Smaller or equal)": ["小于等于(<=)"],
"<enter SQL expression here>": ["输入SQL表达式"],
"<new column>": ["新列"],
"<new metric>": ["新指标"],
"<new spatial>": ["新空间"],
"<no type>": ["无类型"],
"== (Is equal)": ["等于(==)"],
"> (Larger than)": ["大于(>)"],
">= (Larger or equal)": ["大于等于(>=)"],
"A Big Number": ["大数字"],
"A comma separated list of columns that should be parsed as dates": [
"应作为日期解析的列的逗号分隔列表。"
],
"A comma separated list of columns that should be parsed as dates.": [
"应作为日期解析的列的逗号分隔列表。"
],
"A comma-separated list of schemas that files are allowed to upload to.": [
"允许以逗号分割的CSV文件上传"
],
"A database port is required when connecting via SSH Tunnel.": [
"通过 SSH 隧道连接时需要数据库端口。"
],
"A database with the same name already exists.": ["已存在同名的数据库。"],
"A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas library for supported data types.": [
"包含列名及其数据类型的字典(如果需要更改默认值)。例如 {\"user_id\":\"int\"}. 有关支持的数据类型, 请查看 Python 的 Pandas 库。"
],
"A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [
"包含列名及其数据类型的字典(如果需要更改默认值)。例如 {\"user_id\":\"integer\"}"
],
"A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [
"指向内置插件位置的完整URL(例如,可以托管在CDN上)"
],
"A handlebars template that is applied to the data": [""],
"A human-friendly name": ["人性化的名称"],
"A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [
"可嵌入此仪表板的域名列表。将此字段留空将允许从任何域嵌入。"
],
"A list of tags that have been applied to this chart.": [
"已应用于此图表的标签列表。"
],
"A list of users who can alter the chart. Searchable by name or username.": [
"有权处理该图表的用户列表。可按名称或用户名搜索。"
],
"A map of the world, that can indicate values in different countries.": [
"一张世界地图,可以显示不同国家的价值观。"
],
"A map that takes rendering circles with a variable radius at latitude/longitude coordinates": [
"在经纬度坐标处绘制半径可变的圆的地图"
],
"A metric to use for color": ["用于颜色的指标"],
"A new chart and dashboard will be created.": [
"将会创建一个新图表和看板"
],
"A new chart will be created.": ["将会创建一个新图表"],
"A new dashboard will be created.": ["将会创建一个新看板"],
"A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.": [
"一种极坐标图表,其中圆被分成等角度的楔形,任何楔形表示的值由其面积表示,而不是其半径或扫掠角度。"
],
"A readable URL for your dashboard": ["为看板生成一个可读的 URL"],
"A reference to the [Time] configuration, taking granularity into account": [
"对 [时间] 配置的引用,会将粒度考虑在内"
],
"A report named \"%(name)s\" already exists": ["报告 %(name)s 已存在"],
"A reusable dataset will be saved with your chart.": [
"一个可重复使用的数据集将随图表一起保存。"
],
"A screenshot of the dashboard will be sent to your email at": [
"计划的报告将作为PNG发送到您的电子邮件"
],
"A set of parameters that become available in the query using Jinja templating syntax": [
"在查询中可用的一组参数使用JINJA模板语法"
],
"A time column must be specified when using a Time Comparison.": [
"使用时间比较时,必须指定封闭的时间范围(有开始和结束)。"
],
"A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [
"时间序列图表,直观显示多个组中的相关指标随时间的变化情况。每组使用不同的颜色进行可视化"
],
"A timeout occurred while executing the query.": ["查询超时。"],
"A timeout occurred while generating a csv.": ["生成CSV时超时。"],
"A timeout occurred while generating a dataframe.": ["生成数据超时"],
"A timeout occurred while taking a screenshot.": ["截图超时"],
"A valid color scheme is required": ["需要有效的配色方案"],
"A waterfall chart is a form of data visualization that helps in understanding\n the cumulative effect of sequentially introduced positive or negative values.\n These intermediate values can either be time based or category based.": [
"瀑布图是一种数据可视化形式, 有助于了解连续引入的正值或负值的累积效应。"
],
"APPLY": ["应用"],
"APR": ["四月"],
"AQE": ["异步执行查询"],
"AUG": ["八月"],
"AXIS TITLE MARGIN": ["轴标题边距"],
"AXIS TITLE POSITION": ["轴标题的位置"],
"About": ["关于"],
"Access": ["访问"],
"Access token": ["上一个"],
"Action": ["操作"],
"Action Log": ["操作日志"],
"Actions": ["操作"],
"Active": ["激活"],
"Actual Values": ["空值"],
"Actual range for comparison": ["比较范围"],
"Actual time range": ["实际时间范围"],
"Actual value": ["空值"],
"Actual values": ["空值"],
"Adaptive formatting": ["自动匹配格式化"],
"Add": ["新增"],
"Add Alert": ["新增告警"],
"Add BCC Recipients": ["最近"],
"Add CC Recipients": ["最近"],
"Add CSS Template": ["新增CSS模板"],
"Add CSS template": ["新增CSS模板"],
"Add Chart": ["新增图表"],
"Add Column": ["新增列"],
"Add Dashboard": ["新增看板"],
"Add Database": ["新增数据库"],
"Add Log": ["新增日志"],
"Add Metric": ["新增指标"],
"Add Report": ["新增报告"],
"Add Rule": ["新增规则"],
"Add Tag": ["新增标签"],
"Add a Plugin": ["新增插件"],
"Add a dataset": ["新增数据集"],
"Add a new tab": ["新增新的选项卡"],
"Add a new tab to create SQL Query": ["添加一个选项卡以创建 SQL 查询"],
"Add additional custom parameters": ["新增其他自定义参数"],
"Add an annotation layer": ["新增注释层"],
"Add an item": ["新增一行"],
"Add and edit filters": ["范围过滤"],
"Add annotation": ["新增注释"],
"Add annotation layer": ["新增注释层"],
"Add another notification method": ["新增通知方法"],
"Add calculated columns to dataset in \"Edit datasource\" modal": [
"在“编辑数据源”对话框中向数据集添加计算列"
],
"Add calculated temporal columns to dataset in \"Edit datasource\" modal": [
"在“编辑数据源”对话框中为数据集添加计算的时间列"
],
"Add color for positive/negative change": ["添加颜色表示正/负变化"],
"Add cross-filter": ["增加过滤条件"],
"Add custom scoping": ["添加自定义作用域"],
"Add dataset columns here to group the pivot table columns.": [
"必须是分组列"
],
"Add delivery method": ["新增通知方法"],
"Add description of your tag": ["为您的查询写一段描述"],
"Add extra connection information.": ["增加额外的连接信息"],
"Add filter": ["增加过滤条件"],
"Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [
"为控制筛选器的源查询添加筛选条件,但这只限于自动完成的上下文,即这些条件不会影响筛选器在仪表板上的应用方式。当你希望通过只扫描底层数据的一个子集来提高查询性能,或者限制筛选器中显示的可用值范围时,这一点特别有用。"
],
"Add filters and dividers": ["添加过滤器和分隔符"],
"Add item": ["增加条件"],
"Add metric": ["新增指标"],
"Add metrics to dataset in \"Edit datasource\" modal": [
"在“编辑数据源”对话框中为数据集添加度量指标"
],
"Add new color formatter": ["增加新的的颜色格式化器"],
"Add new formatter": ["新增格式化"],
"Add notification method": ["新增通知方法"],
"Add required control values to preview chart": [
"添加必需的控制值以预览图表"
],
"Add required control values to save chart": [
"添加必需的控制值以保存图表"
],
"Add sheet": ["添加sheet页"],
"Add tag to entities": ["给对象添加标签"],
"Add the name of the chart": ["给图表添加名称"],
"Add the name of the dashboard": ["给看板添加名称"],
"Add to dashboard": ["添加到看板"],
"Add/Edit Filters": ["增加过滤条件"],
"Added": ["已添加"],
"Added to 1 dashboard": ["添加到看板"],
"Additional Parameters": ["附加参数"],
"Additional fields may be required": ["可能需要额外的字段"],
"Additional information": ["附加信息"],
"Additional metadata": ["附加元数据"],
"Additional padding for legend.": ["图例额外的内边距。"],
"Additional parameters": ["额外参数"],
"Additional settings.": ["额外的设置"],
"Additional text to add before or after the value, e.g. unit": [
"附加文本到数据前(后),例如:单位"
],
"Additive": ["附加"],
"Adds color to the chart symbols based on the positive or negative change from the comparison value.": [
"根据比较值的正负变化为图表符号添加颜色。"
],
"Adjust column settings such as specifying the columns to read, how duplicates are handled, column data types, and more.": [
"调整列设置, 如指定要读取的列、如何处理重复、列数据类型等。"
],
"Adjust how spaces, blank lines, null values are handled and other file wide settings.": [
"调整空格、空行、空值的处理方式以及其他文件范围内的设置。"
],
"Adjust how this database will interact with SQL Lab.": [
"调整此数据库与 SQL 工具箱的交互方式。"
],
"Adjust performance settings of this database.": [
"调整此数据库的性能设置"
],
"Advanced": ["高级选项"],
"Advanced Analytics": ["高级分析"],
"Advanced Data type": ["高级数据类型"],
"Advanced analytics": ["高级分析"],
"Advanced analytics Query A": ["高级分析查询A"],
"Advanced analytics Query B": ["高级分析查询B"],
"Advanced analytics post processing": ["高级分析"],
"Advanced data type": ["高级数据类型"],
"Advanced-Analytics": ["高级分析"],
"Aesthetic": ["炫酷"],
"After": ["之后"],
"Aggregate": ["聚合"],
"Aggregate Mean": ["合计平均值"],
"Aggregate Sum": ["合计"],
"Aggregate function applied to the list of points in each cluster to produce the cluster label.": [
"聚合函数应用于每个群集中的点列表以产生聚合标签。"
],
"Aggregate function to apply when pivoting and computing the total rows and columns": [
"在旋转和计算总的行和列时,应用聚合函数"
],
"Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [
"聚合网格单元边界内的数据, 并将汇总值映射为动态色标"
],
"Aggregation": ["合计"],
"Aggregation function": ["聚合功能"],
"Alert": ["警报"],
"Alert Triggered, In Grace Period": ["告警已触发,在宽限期内"],
"Alert condition": ["告警条件"],
"Alert condition schedule": ["告警条件计划"],
"Alert contents": ["标签内容"],
"Alert ended grace period.": ["告警已结束宽限期。"],
"Alert failed": ["告警失败"],
"Alert fired during grace period.": ["在宽限期内触发告警。"],
"Alert found an error while executing a query.": [
"告警在执行查询时发现错误。"
],
"Alert is active": ["激活邮件报告"],
"Alert name": ["告警名称"],
"Alert on grace period": ["告警宽限期"],
"Alert query returned a non-number value.": ["告警查询返回非数字值。"],
"Alert query returned more than one column.": ["告警查询返回多个列。"],
"Alert query returned more than one column. %(num_cols)s columns returned": [
"告警查询返回多个列。%(num_cols)s 列被返回"
],
"Alert query returned more than one row.": ["告警查询返回了多行。"],
"Alert query returned more than one row. %(num_rows)s rows returned": [
"告警查询返回了多行。%(num_rows)s 行被返回"
],
"Alert running": ["告警运行中"],
"Alert triggered, notification sent": ["告警已触发,通知已发送"],
"Alert validator config error.": ["告警验证器配置错误。"],
"Alerts": ["告警"],
"Alerts & Reports": ["告警和报告"],
"Alerts & reports": ["告警和报告"],
"Align +/-": ["对齐 +/-"],
"All": ["所有"],
"All Text": ["所有文本"],
"All charts": ["所有图表"],
"All charts/global scoping": ["所有的图表或者全局作用域"],
"All filters": ["所有过滤器"],
"All panels": ["应用于所有面板"],
"All panels with this column will be affected by this filter": [
"包含此列的所有面板都将受到此过滤条件的影响"
],
"Allow CREATE TABLE AS": ["允许 CREATE TABLE AS"],
"Allow CREATE TABLE AS option in SQL Lab": [
"在 SQL 编辑器中允许 CREATE TABLE AS 选项"
],
"Allow CREATE VIEW AS": ["允许 CREATE VIEW AS"],
"Allow CREATE VIEW AS option in SQL Lab": [
"在 SQL 编辑器中允许 CREATE VIEW AS 选项"
],
"Allow Csv Upload": ["允许Csv上传"],
"Allow DML": ["允许 DML"],
"Allow changing catalogs": ["允许更改目录"],
"Allow column names to be changed to case insensitive format, if supported (e.g. Oracle, Snowflake).": [
"如果数据库支持(例如 Oracle、Snowflake 等),允许将列名更改为不区分大小写的格式。"
],
"Allow columns to be rearranged": ["允许列重排"],
"Allow creation of new tables based on queries": ["允许基于查询创建新表"],
"Allow creation of new views based on queries": [
"允许基于查询创建新视图"
],
"Allow data manipulation language": ["允许数据操作语言"],
"Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [
"允许最终用户通过拖放列标题来重新排列它们。请注意,他们所做的更改不会在下次打开图表时保留。"
],
"Allow file uploads to database": ["允许上传文件到数据库"],
"Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [
"允许使用非SELECT语句(如UPDATE、DELETE、CREATE等)操作数据库。"
],
"Allow node selections": ["允许节点选择"],
"Allow sending multiple polygons as a filter event": [
"允许使用多个多边形来过滤事件"
],
"Allow this database to be explored": ["允许浏览此数据库"],
"Allow this database to be queried in SQL Lab": [
"允许在SQL工具箱中查询此数据库"
],
"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab": [
"允许用户在 SQL 编辑器中运行非 SELECT 语句(UPDATE,DELETE,CREATE,...)"
],
"Allowed Domains (comma separated)": ["允许的域名(逗号分隔)"],
"Alphabetical": ["按字母顺序排列"],
"Also known as a box and whisker plot, this visualization compares the distributions of a related metric across multiple groups. The box in the middle emphasizes the mean, median, and inner 2 quartiles. The whiskers around each box visualize the min, max, range, and outer 2 quartiles.": [
"也称为框须图,该可视化比较了一个相关指标在多个组中的分布。中间的框强调平均值、中值和内部2个四分位数。每个框周围的触须可视化了最小值、最大值、范围和外部2个四分区。"
],
"Altered": ["已更改"],
"Always filter main datetime column": ["主日期列"],
"An Error Occurred": ["发生了一个错误"],
"An alert named \"%(name)s\" already exists": ["数据集 %(name)s 已存在"],
"An enclosed time range (both start and end) must be specified when using a Time Comparison.": [
"使用时间比较时,必须指定封闭的时间范围(有开始和结束)。"
],
"An engine must be specified when passing individual parameters to a database.": [
"向数据库传递单个参数时必须指定引擎。"
],
"An error has occurred": ["发生了一个错误"],
"An error occurred": ["发生了一个错误"],
"An error occurred saving dataset": ["保存数据集时发生错误"],
"An error occurred when running alert query": ["精简日志时出错 "],
"An error occurred while accessing the value.": ["访问值时出错。"],
"An error occurred while collapsing the table schema. Please contact your administrator.": [
"收起表结构时出错。请与管理员联系。"
],
"An error occurred while creating %ss: %s": ["创建时出错:%ss: %s"],
"An error occurred while creating the data source": [
"创建数据源时发生错误"
],
"An error occurred while creating the value.": ["创建值时出错。"],
"An error occurred while deleting the value.": ["删除值时出错。"],
"An error occurred while expanding the table schema. Please contact your administrator.": [
"展开表结构时出错。请与管理员联系。"
],
"An error occurred while fetching %s info: %s": ["获取%s看板时出错:%s"],
"An error occurred while fetching %ss: %s": ["抓取出错:%ss: %s"],
"An error occurred while fetching available CSS templates": [
"获取可用的CSS模板时出错"
],
"An error occurred while fetching chart owners values: %s": [
"获取图表所有者时出错 %s"
],
"An error occurred while fetching dashboard owner values: %s": [
"获取看板所有者时出错:%s"
],
"An error occurred while fetching dashboards": ["获取看板时出错"],
"An error occurred while fetching dashboards: %s": ["获取看板时出错:%s"],
"An error occurred while fetching database related data: %s": [
"获取数据库相关数据时出错:%s"
],
"An error occurred while fetching database values: %s": [
"获取数据库信息时出错:%s"
],
"An error occurred while fetching dataset datasource values: %s": [
"获取数据集数据源信息时出错: %s"
],
"An error occurred while fetching dataset owner values: %s": [
"获取数据集所有者值时出错:%s"
],
"An error occurred while fetching dataset related data": [
"获取数据集相关数据时出错"
],
"An error occurred while fetching dataset related data: %s": [
"获取数据集相关数据时出错:%s"
],
"An error occurred while fetching datasets: %s": ["获取数据集时出错:%s"],
"An error occurred while fetching function names.": [
"获取函数名称时出错。"
],
"An error occurred while fetching owners values: %s": [
"获取图表所有者时出错 %s"
],
"An error occurred while fetching schema values: %s": [
"获取结构信息时出错:%s"
],
"An error occurred while fetching tab state": ["获取选项卡状态时出错"],
"An error occurred while fetching table metadata": [
"获取表格元数据时发生错误"
],
"An error occurred while fetching table metadata. Please contact your administrator.": [
"获取表格元数据时发生错误。请与管理员联系。"
],
"An error occurred while fetching user values: %s": [
"获取用户信息出错:%s"
],
"An error occurred while importing %s: %s": ["导入时出错 %s: %s"],
"An error occurred while loading dashboard information.": [
"获取看板时出错"
],
"An error occurred while loading the SQL": ["创建数据源时发生错误"],
"An error occurred while opening Explore": ["精简日志时出错 "],
"An error occurred while parsing the key.": ["更新值时出错。"],
"An error occurred while pruning logs ": ["精简日志时出错 "],
"An error occurred while removing query. Please contact your administrator.": [
"删除查询时出错。请与管理员联系。"
],
"An error occurred while removing tab. Please contact your administrator.": [
"删除选项卡时出错。请与管理员联系。"
],
"An error occurred while removing the table schema. Please contact your administrator.": [
"删除表结构时出错。请与管理员联系。"
],
"An error occurred while rendering the visualization: %s": [
"渲染可视化时发生错误:%s"
],
"An error occurred while setting the active tab. Please contact your administrator.": [
"设置活动选项卡时出错。请与管理员联系。"
],
"An error occurred while starring this chart": ["以此字符开头时出错"],
"An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [
"在后端存储查询时出错。为避免丢失更改,请使用 \"保存查询\" 按钮保存查询。"
],
"An error occurred while updating the value.": ["更新值时出错。"],
"An error occurred while upserting the value.": ["更新值时出错。"],
"An unexpected error occurred": ["发生了一个错误"],
"Anchor to": ["锚定到"],
"Angle at which to end progress axis": ["进度轴结束的角度"],
"Angle at which to start progress axis": ["开始进度轴的角度"],
"Animation": ["动画"],
"Annotation": ["注释"],
"Annotation Layer %s": ["注释层 %s"],
"Annotation Layers": ["注释层"],
"Annotation Slice Configuration": ["注释切片配置"],
"Annotation could not be created.": ["注释无法创建。"],
"Annotation could not be updated.": ["注释无法更新。"],
"Annotation layer": ["注释层"],
"Annotation layer could not be created.": ["无法创建注释层"],
"Annotation layer could not be updated.": ["无法更新注释层"],
"Annotation layer description columns": ["注释层描述列。"],
"Annotation layer has associated annotations.": ["注释层仍在加载。"],
"Annotation layer interval end": ["注释层间隔结束"],
"Annotation layer name": ["注释层名称"],
"Annotation layer not found.": ["注释层仍在加载。"],
"Annotation layer opacity": ["注释层不透明度"],
"Annotation layer parameters are invalid.": ["注释层仍在加载。"],
"Annotation layer stroke": ["注释层混乱"],
"Annotation layer time column": ["注释层时间列"],
"Annotation layer title column": ["注释层标题列"],
"Annotation layer type": ["注释层类型"],
"Annotation layer value": ["注释层值"],
"Annotation layers": ["注释层"],
"Annotation layers are still loading.": ["注释层仍在加载。"],
"Annotation layers could not be deleted.": ["注释层仍在加载。"],
"Annotation not found.": ["注释不存在。"],
"Annotation parameters are invalid.": ["注释层仍在加载。"],
"Annotation source": ["注释来源"],
"Annotation source type": ["注释数据源类型"],
"Annotation template created": ["注释无法创建。"],
"Annotation template updated": ["注释已更新。"],
"Annotations and Layers": ["注释与注释层"],
"Annotations and layers": ["注释与注释层"],
"Annotations could not be deleted.": ["无法删除注释。"],
"Any": ["所有"],
"Any additional detail to show in the certification tooltip.": [
"要在认证工具提示中显示详细信息。"
],
"Any color palette selected here will override the colors applied to this dashboard's individual charts": [
"此处选择的任何调色板都将覆盖应用于此看板的各个图表的颜色"
],
"Any databases that allow connections via SQL Alchemy URIs can be added. ": [
"可以添加任何允许通过SQL AlChemy URI进行连接的数据库。"
],
"Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver ": [
"可以添加任何允许通过SQL AlChemy URI进行连接的数据库。了解如何连接数据库驱动程序"
],
"Append": ["追加"],
"Applied cross-filters (%d)": ["应用的交叉筛选器 (%d)"],
"Applied filters (%d)": ["应用的过滤器 (%d)"],
"Applied filters (%s)": ["应用的过滤器 (%d)"],
"Applied filters: %s": ["应用的过滤器 (%s)"],
"Applied rolling window did not return any data. Please make sure the source query satisfies the minimum periods defined in the rolling window.": [
"应用的滚动窗口(rolling window)未返回任何数据。请确保源查询满足滚动窗口中定义的最小周期。"
],
"Apply": ["应用"],
"Apply conditional color formatting to metric": [
"将条件颜色格式应用于指标"
],
"Apply conditional color formatting to metrics": [
"将条件颜色格式应用于指标"
],
"Apply conditional color formatting to numeric columns": [
"将条件颜色格式应用于数字列"
],
"Apply filters": ["应用过滤器"],
"Apply metrics on": ["应用指标到"],
"Apply to all panels": ["应用于所有面板"],
"Apply to specific panels": ["应用于特定面板"],
"April": ["四月"],
"Arc": ["圆弧"],
"Are you sure you intend to overwrite the following values?": [
"您确实要删除选定的查询吗?"
],
"Are you sure you want to cancel?": ["您确定要取消吗?"],
"Are you sure you want to delete": ["确定要删除吗"],
"Are you sure you want to delete %s?": ["确定要删除 %s 吗?"],
"Are you sure you want to delete the selected %s?": [
"确实要删除选定的 %s 吗?"
],
"Are you sure you want to delete the selected annotations?": [
"确实要删除选定的注释吗?"
],
"Are you sure you want to delete the selected charts?": [
"确实要删除所选图表吗?"
],
"Are you sure you want to delete the selected dashboards?": [
"确实要删除选定的看板吗?"
],
"Are you sure you want to delete the selected datasets?": [
"确实要删除选定的数据集吗?"
],
"Are you sure you want to delete the selected layers?": [
"确实要删除选定的图层吗?"
],
"Are you sure you want to delete the selected queries?": [
"您确实要删除选定的查询吗?"
],
"Are you sure you want to delete the selected rules?": [
"确实要删除选定的图层吗?"
],
"Are you sure you want to delete the selected tags?": [
"确实要删除选定的 %s 吗?"
],
"Are you sure you want to delete the selected templates?": [
"确实要删除选定的模板吗?"
],
"Are you sure you want to overwrite this dataset?": [
"确实要删除选定的数据集吗?"
],
"Are you sure you want to proceed?": ["您确定要继续执行吗?"],
"Are you sure you want to save and apply changes?": [
"确实要保存并应用更改吗?"
],
"Area": ["文本区域"],
"Area Chart": ["面积图"],
"Area chart": ["面积图"],
"Area chart opacity": ["面积图不透明度"],
"Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [
"时间序列面积图与折线图相似,因为它们表示具有相同比例的变量,但面积图将度量叠加在一起。超级集中的面积图可以是流式、堆栈式或展开式"
],
"Arrow": ["箭头"],
"Assign a set of parameters as": ["数据集参数无效。"],
"Assist": ["关联"],
"Associated Charts": ["关联的图表"],
"Async Execution": ["异步执行查询"],
"Asynchronous query execution": ["异步执行查询"],
"August": ["八月"],
"Authorization needed": ["需要授权"],
"Auto": ["自动"],
"Auto Zoom": ["数据缩放"],
"Autocomplete": ["自动补全"],
"Autocomplete filters": ["自适配过滤条件"],
"Autocomplete query predicate": ["自动补全查询谓词"],
"Automatic Color": ["自动配色"],
"Available sorting modes:": ["可用分类模式:"],
"Average": ["平均值"],
"Average value": ["平均值"],
"Axis": ["坐标轴"],
"Axis Bounds": ["Y 轴界限"],
"Axis Format": ["Y 轴格式化"],
"Axis Title": ["轴标题"],
"Axis ascending": ["轴线升序"],
"Axis descending": ["轴线降序"],
"BCC recipients": ["最近"],
"BOOLEAN": ["布尔值"],
"Back": ["返回"],
"Back to all": ["返回到列表"],
"Backend": ["后端"],
"Backward values": ["向后数值"],
"Bad formula.": ["错误的公式"],
"Bad spatial key": ["错误的空间字段"],
"Bar": ["柱"],
"Bar Chart": ["柱状图"],
"Bar Chart (legacy)": ["柱状图(传统)"],
"Bar Charts are used to show metrics as a series of bars.": [
"柱状图用于将指标以一系列柱状显示。"
],
"Bar Values": ["柱状图的值"],
"Bar orientation": ["方向"],
"Base": ["基础"],
"Base layer map style. See Mapbox documentation: %s": [
"基础图层地图样式。请参阅 Mapbox 文档:%s"
],
"Based on a metric": ["基于指标"],
"Based on granularity, number of time periods to compare against": [
"根据粒度、要比较的时间阶段"
],
"Based on what should series be ordered on the chart and legend": [
"根据图表和图例上的序列应如何排序"
],
"Basic": ["基础"],
"Basic information": ["基本情况"],
"Batch editing %d filters:": ["批量编辑 %d 个过滤条件:"],
"Battery level over time": ["电池电量随时间变化"],
"Be careful.": ["小心。"],
"Before": ["之前"],
"Big Number": ["数字"],
"Big Number Font Size": ["数字的字体大小"],
"Big Number with Time Period Comparison": ["大数与时段比较"],
"Big Number with Trendline": ["带趋势线的数字"],
"Bins": ["处于"],
"Bottom": ["底端"],
"Bottom Margin": ["底部边距"],
"Bottom left": ["底左"],
"Bottom margin, in pixels, allowing for more room for axis labels": [
"底部边距,以像素为单位,为轴标签留出更多空间"
],
"Bottom right": ["底右"],
"Bottom to Top": ["自下而上"],
"Bounds for numerical X axis. Not applicable for temporal or categorical axes. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [
"Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。"
],
"Bounds for the Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [
"Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。"
],
"Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [
"Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。"
],
"Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [
"Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。"
],
"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [
"Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。"
],
"Box Plot": ["箱线图"],
"Breakdowns": ["分解"],
"Breaks down the series by the category specified in this control.\n This can help viewers understand how each category affects the overall value.": [
"按此控件中指定的类别细分系列, 这可以帮助查看者了解每个类别对整体值的影响。"
],
"Bubble Chart": ["气泡图"],
"Bubble Chart (legacy)": ["气泡图(传统)"],
"Bubble Color": ["气泡颜色"],
"Bubble Opacity": ["气泡透明度"],
"Bubble Size": ["气泡大小"],
"Bubble size": ["气泡尺寸"],
"Bubble size number format": ["气泡尺寸数字格式"],
"Bucket break points": ["桶分割点"],
"Build": ["重构"],
"Bulk select": ["批量选择"],
"Bulk tag": [""],
"Bullet Chart": ["子弹图"],
"Business": ["商业"],
"Business Data Type": ["业务数据类型"],
"By default, each filter loads at most 1000 choices at the initial page load. Check this box if you have more than 1000 filter values and want to enable dynamically searching that loads filter values as users type (may add stress to your database).": [
"默认情况下,每个过滤器在初始页面加载时最多加载1000个选项。如果您有超过1000个过滤值,并且希望启用动态搜索,以便在键入时加载筛选值(可能会给数据库增加压力),请选中此框。"
],
"By key: use column names as sorting key": ["使用列名作为排序关键字"],
"By key: use row names as sorting key": ["使用行名作为排序关键字"],
"By value: use metric values as sorting key": [
"使用度量值作为排序关键字"
],
"CANCEL": ["取消"],
"CC recipients": ["最近"],
"CREATE DATASET": ["创建数据集"],
"CREATE TABLE AS": ["允许 CREATE TABLE AS"],
"CREATE VIEW AS": ["允许 CREATE VIEW AS"],
"CREATE VIEW statement": ["CREATE VIEW 语句"],
"CRON Schedule": ["CRON定时任务"],
"CRON expression": ["CRON表达式"],
"CSS": ["CSS"],
"CSS Styles": ["CSS 样式"],
"CSS Templates": ["CSS 模板"],
"CSS applied to the chart": ["对图表应用 CSS"],
"CSS template": ["CSS 模板"],
"CSS template not found.": ["CSS模板未找到"],
"CSS templates": ["CSS 模板"],
"CSS templates could not be deleted.": ["CSS模板不能被删除"],
"CSV Upload": ["允许CSV上传"],
"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [
"csv 文件 \"%(csv_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\""
],
"CSV to Database configuration": ["csv 到数据库配置"],
"CSV upload": ["CSV上传"],
"CTAS & CVAS SCHEMA": ["CTAS和CVAS方案"],
"CTAS (create table as select) can only be run with a query where the last statement is a SELECT. Please make sure your query has a SELECT as its last statement. Then, try running your query again.": [
"CTA(create table as select)只能与最后一条语句为SELECT的查询一起运行。请确保查询的最后一个语句是SELECT。然后再次尝试运行查询。"
],
"CTAS Schema": ["CTAS 模式"],
"CVAS (create view as select) can only be run with a query with a single SELECT statement. Please make sure your query has only a SELECT statement. Then, try running your query again.": [
"CVAS(createview as select)只能与带有单个SELECT语句的查询一起运行。请确保您的查询只有SELECT语句。然后再次尝试运行查询。"
],
"CVAS (create view as select) query has more than one statement.": [
"CVAS (create view as select)查询有多条语句。"
],
"CVAS (create view as select) query is not a SELECT statement.": [
"CVAS (create view as select)查询不是SELECT语句。"
],
"Cache Timeout": ["缓存超时"],
"Cache Timeout (seconds)": ["缓存超时(秒)"],
"Cache timeout": ["缓存时间"],
"Cached": ["已缓存"],
"Cached %s": ["缓存于%s"],
"Cached value not found": ["缓存的值未找到"],
"Calculate contribution per series or row": ["计算每个系列或总计的贡献"],
"Calculate from first step": ["根据第一步计算"],
"Calculate from previous step": ["根据上一步计算"],
"Calculated column [%s] requires an expression": [
"计算列 [%s] 需要一个表达式"
],
"Calculated columns": ["计算列"],
"Calculation type": ["计算类型"],
"Calendar Heatmap": ["时间热力图"],
"Can not move top level tab into nested tabs": [
"无法将顶级选项卡移动到嵌套选项卡中"
],
"Can select multiple values": ["允许选择多个值"],
"Can't have overlap between Series and Breakdowns": [
"Series 和 Breakdown 之间不能有重叠"
],
"Cancel": ["取消"],
"Cancel query on window unload event": ["当窗口关闭时取消查询"],
"Cannot access the query": ["无法访问查询"],
"Cannot delete a database that has datasets attached": [
"无法删除附加了数据集的数据库"
],
"Cannot have multiple credentials for the SSH Tunnel": [
"无法为 SSH 隧道设置多个凭证"
],
"Cannot load filter": ["无法加载筛选器"],
"Cannot parse time string [%(human_readable)s]": [
"无法解析时间字符串[%(human_readable)s]"
],
"Catalog": ["标签"],
"Categorical": ["分类"],
"Categorical Color": ["分类颜色"],
"Categories to group by on the x-axis.": ["要在x轴上分组的类别。"],
"Category": ["分类"],
"Category Name": ["分类名称"],
"Category and Percentage": ["分类和比例"],
"Category and Value": ["分类和值"],
"Category name": ["分类名称"],
"Category of target nodes": ["目标节点类别"],
"Category, Value and Percentage": ["类别、数值和百分比"],
"Cell Padding": ["单元填充"],
"Cell Radius": ["单元格半径"],
"Cell Size": ["单元尺寸"],
"Cell bars": ["单元格柱状图"],
"Cell content": ["单元格内容"],
"Cell limit": ["单元格限制"],
"Centroid (Longitude and Latitude): ": ["中心点(经度/纬度)"],
"Certification": ["认证"],
"Certification details": ["认证细节"],
"Certified": ["认证"],
"Certified By": ["认证"],
"Certified by": ["认证"],
"Certified by %s": ["认证人 %s"],
"Change order of columns.": ["更改列的顺序。"],
"Change order of rows.": ["更改行的顺序。"],
"Changed By": ["修改人"],
"Changed by": ["修改人"],
"Changes saved.": ["修改已保存"],
"Changing one or more of these dashboards is forbidden": [
"一个或多个看板的修改被禁止"
],
"Changing the dataset may break the chart if the chart relies on columns or metadata that does not exist in the target dataset": [
"如果图表依赖于目标数据集中不存在的列或元数据,则更改数据集可能会破坏图表"
],
"Changing these settings will affect all charts using this dataset, including charts owned by other people.": [
"更改这些设置将影响使用此数据集的所有图表,包括其他人拥有的图表。"
],
"Changing this Dashboard is forbidden": ["无法修改该看板"],
"Changing this chart is forbidden": ["禁止更改此图表"],
"Changing this control takes effect instantly": ["更改此控件立即生效。"],
"Changing this dataset is forbidden": ["没有权限更新此数据集"],
"Changing this dataset is forbidden.": ["禁止更改此数据集。"],
"Changing this datasource is forbidden": ["没有权限更新此数据集"],
"Changing this report is forbidden": ["禁止更改此报告"],
"Character to interpret as decimal point": ["将字符解释为小数点的字符。"],
"Character to interpret as decimal point.": [
"将字符解释为小数点的字符。"
],
"Chart": ["图表"],
"Chart %(id)s not found": ["图表 %(id)s 没有找到"],
"Chart Cache Timeout": ["表缓存超时"],
"Chart Data: %s": ["上次更新 %s"],
"Chart ID": ["图表 ID"],
"Chart Options": ["图表选项"],
"Chart Orientation": ["方向"],
"Chart Owner: %s": ["图表所有者:%s"],
"Chart Source": ["数据源"],
"Chart Title": ["图表标题"],
"Chart [%s] has been overwritten": ["图表 [%s] 已经覆盖"],
"Chart [%s] has been saved": ["图表 [%s] 已经保存"],
"Chart [%s] was added to dashboard [%s]": [
"图表 [%s] 已经添加到看板 [%s]"
],
"Chart [{}] has been overwritten": ["图表 [{}] 已经覆盖"],
"Chart [{}] has been saved": ["图表 [{}] 已经保存"],
"Chart [{}] was added to dashboard [{}]": [
"图表 [{}] 已经添加到看板 [{}]"
],
"Chart cache timeout": ["图表缓存超时"],
"Chart changes": ["图表变化"],
"Chart could not be created.": ["您的图表无法创建。"],
"Chart could not be updated.": ["您的图表无法更新。"],
"Chart does not exist": ["图表没有找到"],
"Chart has no query context saved. Please save the chart again.": [
"图表未保存任何查询上下文。请重新保存图表。"
],
"Chart height": ["图表高度"],
"Chart imported": ["图表已导入"],
"Chart last modified": ["最后修改"],
"Chart last modified by": ["上次修改人 %s"],
"Chart name": ["图表名称"],
"Chart not found": ["图表 %(id)s 没有找到"],
"Chart options": ["图表选项"],
"Chart owners": ["图表所有者:%s"],
"Chart parameters are invalid.": ["图表参数无效。"],
"Chart properties updated": ["编辑图表属性"],