-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathen-GB.xml
More file actions
5729 lines (5728 loc) · 332 KB
/
Copy pathen-GB.xml
File metadata and controls
5729 lines (5728 loc) · 332 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="English (UK)" description="English (UK)" cultureName="en-GB">
<A_WebViewer>
<AbbreviatedDayFriday>Fr</AbbreviatedDayFriday>
<AbbreviatedDayMonday>Mo</AbbreviatedDayMonday>
<AbbreviatedDaySaturday>Sa</AbbreviatedDaySaturday>
<AbbreviatedDaySunday>Su</AbbreviatedDaySunday>
<AbbreviatedDayThursday>Th</AbbreviatedDayThursday>
<AbbreviatedDayTuesday>Tu</AbbreviatedDayTuesday>
<AbbreviatedDayWednesday>We</AbbreviatedDayWednesday>
<Attachment>Attachment:</Attachment>
<ButtonNext>Next</ButtonNext>
<ButtonPrev>Previous</ButtonPrev>
<ButtonSend>Send</ButtonSend>
<CategoryAlreadyExists>The category with that name already exists!</CategoryAlreadyExists>
<DayFriday>Friday</DayFriday>
<DayMonday>Monday</DayMonday>
<Days>Days</Days>
<DaySaturday>Saturday</DaySaturday>
<DaySunday>Sunday</DaySunday>
<DayThursday>Thursday</DayThursday>
<DayTuesday>Tuesday</DayTuesday>
<DayWednesday>Wednesday</DayWednesday>
<Email>Email:</Email>
<EmailOptions>Email Options</EmailOptions>
<FirstPage>First Page</FirstPage>
<Hours>Hours</Hours>
<LabelFrom>From:</LabelFrom>
<LabelSelectExportFormat>Select the format to which you want to save the report:</LabelSelectExportFormat>
<LabelTo>To:</LabelTo>
<LastPage>Last Page</LastPage>
<Loading>Loading...</Loading>
<Message>Message:</Message>
<Minutes>Minutes</Minutes>
<MonthApril>April</MonthApril>
<MonthAugust>August</MonthAugust>
<MonthDecember>December</MonthDecember>
<MonthFebruary>February</MonthFebruary>
<MonthJanuary>January</MonthJanuary>
<MonthJuly>July</MonthJuly>
<MonthJune>June</MonthJune>
<MonthMarch>March</MonthMarch>
<MonthMay>May</MonthMay>
<MonthNovember>November</MonthNovember>
<MonthOctober>October</MonthOctober>
<MonthSeptember>September</MonthSeptember>
<NextPage>Next Page</NextPage>
<OnePage>One Page</OnePage>
<Page>Page</Page>
<PageOf>of</PageOf>
<PreviousPage>Previous Page</PreviousPage>
<PrintContinue>Click Print to continue</PrintContinue>
<PrintReport>Print</PrintReport>
<PrintToPdf>PDF</PrintToPdf>
<PrintToXps>Microsoft XPS</PrintToXps>
<PrintWithoutPreview>Print</PrintWithoutPreview>
<PrintWithPreview>Preview</PrintWithPreview>
<SaveReport>Save</SaveReport>
<Subject>Subject:</Subject>
<TabItemContacts>Contacts</TabItemContacts>
<TextComputer>Computer</TextComputer>
<TextItemsRoot>Root</TextItemsRoot>
<TodayDate>Today</TodayDate>
<WholeReport>Whole Report</WholeReport>
</A_WebViewer>
<Adapters>
<AdapterBusinessObjects>Data from Business Objects</AdapterBusinessObjects>
<AdapterConnection>Data from {0}</AdapterConnection>
<AdapterCrossTabDataSource>Data from Cross-Tab</AdapterCrossTabDataSource>
<AdapterCsvFiles>Data from CSV Files</AdapterCsvFiles>
<AdapterDataTables>Data from DataSet, DataTables</AdapterDataTables>
<AdapterDataViews>Data from DataViews</AdapterDataViews>
<AdapterDB2Connection>Data from IBM DB2 Connection</AdapterDB2Connection>
<AdapterDBaseFiles>Data from dBase Files</AdapterDBaseFiles>
<AdapterDbUserSource>Data from User Source</AdapterDbUserSource>
<AdapterFirebirdConnection>Data from Firebird Connection</AdapterFirebirdConnection>
<AdapterInformixConnection>Data from Informix Connection</AdapterInformixConnection>
<AdapterMySQLConnection>Data from MySQL Connection</AdapterMySQLConnection>
<AdapterOdbcConnection>Data from ODBC Connection</AdapterOdbcConnection>
<AdapterOleDbConnection>Data from OLE DB Connection</AdapterOleDbConnection>
<AdapterOracleConnection>Data from Oracle Connection</AdapterOracleConnection>
<AdapterOracleODPConnection>Data from Oracle ODP.NET Connection</AdapterOracleODPConnection>
<AdapterPostgreSQLConnection>Data from PostgreSQL Connection</AdapterPostgreSQLConnection>
<AdapterSqlCeConnection>Data from SQL CE Connection</AdapterSqlCeConnection>
<AdapterSqlConnection>Data from SQL Connection</AdapterSqlConnection>
<AdapterSQLiteConnection>Data from SQLite Connection</AdapterSQLiteConnection>
<AdapterTeradataConnection>Data from Teradata Connection</AdapterTeradataConnection>
<AdapterUniDirectConnection>Data from Uni Direct Connection</AdapterUniDirectConnection>
<AdapterUserSources>Data from User Sources</AdapterUserSources>
<AdapterVirtualSource>Data from other Data Source</AdapterVirtualSource>
<AdapterVistaDBConnection>Data from VistaDB Connection</AdapterVistaDBConnection>
</Adapters>
<BarCode>
<Post>Post</Post>
<TwoDimensional>Two-Dimensional</TwoDimensional>
</BarCode>
<Blockly>
<AllComponents>All Components</AllComponents>
<AllComponentsFrom>All Components from</AllComponentsFrom>
<ColorHex>Colour Hex</ColorHex>
<ColumnName>Column Name</ColumnName>
<DateTime>Date Time</DateTime>
<GetComponentByName>Get Component by Name</GetComponentByName>
<GetCurrentValue>Get Current Value</GetCurrentValue>
<GetDataSourceByName>Get Data Source by Name</GetDataSourceByName>
<GetProperty>Get Property</GetProperty>
<GetStyleByName>Get Style by Name</GetStyleByName>
<GetVariable>Get Variable</GetVariable>
<IndexOfRow>Index of Row</IndexOfRow>
<Lists>Lists</Lists>
<LocalVariables>Local Variables</LocalVariables>
<Logic>Logic</Logic>
<Loops>Loops</Loops>
<Math>Math</Math>
<OfDataSource>of Data Source</OfDataSource>
<OfObject>of Object</OfObject>
<OpenLink>Open Link</OpenLink>
<Process>Process</Process>
<Programming>Programming</Programming>
<RefreshViewer>Refresh Viewer</RefreshViewer>
<SetCurrentValue>Set Current Value</SetCurrentValue>
<SetProperty>Set Property</SetProperty>
<SetSqlCommand>Set Sql Command</SetSqlCommand>
<SetVariable>Set Variable</SetVariable>
<Strings>Strings</Strings>
<ThisComponent>This Component</ThisComponent>
<ThisReport>This Report</ThisReport>
<To>To</To>
<Visuals>Visuals</Visuals>
</Blockly>
<Buttons>
<Add>Add</Add>
<AddAllColumns>Add All Columns</AddAllColumns>
<Attach>Attach</Attach>
<Build>Build...</Build>
<Buttons>Buttons</Buttons>
<Cancel>&Cancel</Cancel>
<Check>Check</Check>
<Close>Close</Close>
<Delete>Delete</Delete>
<Design>Design</Design>
<Down>Down</Down>
<Duplicate>Duplicate</Duplicate>
<EditAsData>Edit as Data</EditAsData>
<EditAsText>Edit as Text</EditAsText>
<Export>Export</Export>
<ForceDelete>Force Delete</ForceDelete>
<Help>Help</Help>
<Install>Install</Install>
<InvertAll>Invert All</InvertAll>
<LessOptions>Less Options</LessOptions>
<LoadDataSet>Load DataSet (*.data)</LoadDataSet>
<More>More</More>
<MoreApps>More Apps</MoreApps>
<MoreOptions>More Options</MoreOptions>
<MoveLeft>Move Left</MoveLeft>
<MoveRight>Move Right</MoveRight>
<MoveToResource>Move to Resource</MoveToResource>
<No>&No</No>
<Ok>&OK</Ok>
<Open>Open</Open>
<OpenContainingFolder>Open Containing Folder</OpenContainingFolder>
<OpenInSafeMode>Open in Safe Mode</OpenInSafeMode>
<Print>Print</Print>
<Publish>Publish</Publish>
<QuickPrint>Quick Print</QuickPrint>
<Remove>Remove</Remove>
<RemoveAll>Remove All</RemoveAll>
<Rename>Rename</Rename>
<RestoreDefaults>Restore Defaults</RestoreDefaults>
<Reverse>Reverse</Reverse>
<Save>Save</Save>
<SaveCopy>Save a Copy</SaveCopy>
<SetAll>Set All</SetAll>
<ShowLess>Show Less</ShowLess>
<ShowMore>Show More</ShowMore>
<ShowSpecific>Show '{0}'</ShowSpecific>
<Sign>Sign</Sign>
<Submit>Submit</Submit>
<SwitchTo>Switch to {0}</SwitchTo>
<Test>Test</Test>
<TryToReconnect>Try to Reconnect</TryToReconnect>
<Up>Up</Up>
<Upgrade>Upgrade</Upgrade>
<UpgradeNow>Upgrade Now</UpgradeNow>
<Upload>Upload</Upload>
<Waiting>Waiting</Waiting>
<Yes>&Yes</Yes>
</Buttons>
<Chart>
<AddCondition>&Add Condition</AddCondition>
<AddConstantLine>Add Constant Line</AddConstantLine>
<AddFilter>&Add Filter</AddFilter>
<AddSeries>&Add Series</AddSeries>
<AddStrip>Add Strip</AddStrip>
<AddTrendLine>Add Trend Line</AddTrendLine>
<Area>Area</Area>
<Axes>Axes</Axes>
<AxisReverse>Reverse</AxisReverse>
<AxisX>Axis X</AxisX>
<AxisY>Axis Y</AxisY>
<BoxAndWhisker>Box and Whisker</BoxAndWhisker>
<Bubble>Bubble</Bubble>
<Candlestick>Candlestick</Candlestick>
<ChartConditionsCollectionForm>Conditions</ChartConditionsCollectionForm>
<ChartEditorForm>Chart Editor</ChartEditorForm>
<ChartFiltersCollectionForm>Filters</ChartFiltersCollectionForm>
<ChartType>Chart Type</ChartType>
<CheckBoxAutoRotation>Auto Rotation</CheckBoxAutoRotation>
<ClusteredBar>Clustered Bar</ClusteredBar>
<ClusteredColumn>Clustered Column</ClusteredColumn>
<Common>Common</Common>
<ConstantLine>Constant Line</ConstantLine>
<ConstantLinesEditorForm>Constant Lines Editor</ConstantLinesEditorForm>
<DataColumns>Data Columns</DataColumns>
<Doughnut>Doughnut</Doughnut>
<Financial>Financial</Financial>
<FullStackedArea>Full-Stacked Area</FullStackedArea>
<FullStackedBar>Full-Stacked Bar</FullStackedBar>
<FullStackedColumn>Full-Stacked Column</FullStackedColumn>
<FullStackedLine>Full-Stacked Line</FullStackedLine>
<FullStackedSpline>Full-Stacked Spline</FullStackedSpline>
<FullStackedSplineArea>Full-Stacked Spline Area</FullStackedSplineArea>
<Funnel>Funnel</Funnel>
<FunnelWeightedSlices>Funnel Weighted Slices</FunnelWeightedSlices>
<Gantt>Gantt</Gantt>
<GridInterlaced>Interlaced</GridInterlaced>
<GridLines>Grid Lines</GridLines>
<Heatmap>Heatmap</Heatmap>
<Histogram>Histogram</Histogram>
<LabelAlignment>Alignment:</LabelAlignment>
<LabelAlignmentHorizontal>Horizontal:</LabelAlignmentHorizontal>
<LabelAlignmentVertical>Vertical:</LabelAlignmentVertical>
<LabelAngle>Angle:</LabelAngle>
<LabelArgumentDataColumn>Argument Data Column:</LabelArgumentDataColumn>
<LabelAutoRotation>Auto Rotation:</LabelAutoRotation>
<LabelCloseValueDataColumn>Close Value Data Column:</LabelCloseValueDataColumn>
<LabelEndValueDataColumn>End Value Data Column:</LabelEndValueDataColumn>
<LabelHighValueDataColumn>High Value Data Column:</LabelHighValueDataColumn>
<LabelHorizontal>Horizontal:</LabelHorizontal>
<LabelLowValueDataColumn>Low Value Data Column:</LabelLowValueDataColumn>
<LabelMinorCount>Minor Count:</LabelMinorCount>
<LabelOpenValueDataColumn>Open Value Data Column:</LabelOpenValueDataColumn>
<Labels>Labels</Labels>
<LabelsCenter>Centre</LabelsCenter>
<LabelSeriesName>Series Name:</LabelSeriesName>
<LabelsInside>Inside</LabelsInside>
<LabelsInsideBase>Inside Base</LabelsInsideBase>
<LabelsInsideEnd>Inside End</LabelsInsideEnd>
<LabelsNone>None</LabelsNone>
<LabelsOutside>Outside</LabelsOutside>
<LabelsOutsideBase>Outside Base</LabelsOutsideBase>
<LabelsOutsideEnd>Outside End</LabelsOutsideEnd>
<LabelsOverlay>Overlay</LabelsOverlay>
<LabelsStyleCategory>Category</LabelsStyleCategory>
<LabelsStyleCategoryPercentOfTotal>Category - Percent Of Total</LabelsStyleCategoryPercentOfTotal>
<LabelsStyleCategoryValue>Category - Value</LabelsStyleCategoryValue>
<LabelsStylePercentOfTotal>Percent Of Total</LabelsStylePercentOfTotal>
<LabelsStyleValue>Value</LabelsStyleValue>
<LabelsTwoColumns>Two Columns</LabelsTwoColumns>
<LabelTextAfter>Text After:</LabelTextAfter>
<LabelTextBefore>Text Before:</LabelTextBefore>
<LabelTitleAlignment>Alignment:</LabelTitleAlignment>
<LabelValueDataColumn>Value Data Column:</LabelValueDataColumn>
<LabelValueType>Value Type:</LabelValueType>
<LabelVertical>Vertical:</LabelVertical>
<LabelVisible>Visible:</LabelVisible>
<Legend>Legend</Legend>
<LegendSpacing>Spacing</LegendSpacing>
<Line>Line</Line>
<ListOfValues>List of Values</ListOfValues>
<ListOfXValues>List of X Values</ListOfXValues>
<ListOfYValues>List of Y Values</ListOfYValues>
<Marker>Marker</Marker>
<MoveConstantLineDown>Move Constant Line Down</MoveConstantLineDown>
<MoveConstantLineUp>Move Constant Line Up</MoveConstantLineUp>
<MoveSeriesDown>Move Series Down</MoveSeriesDown>
<MoveSeriesUp>Move Series Up</MoveSeriesUp>
<MoveStripDown>Move Strip Down</MoveStripDown>
<MoveStripUp>Move Strip Up</MoveStripUp>
<NoConditions>No Conditions</NoConditions>
<NoFilters>No Filters</NoFilters>
<Pareto>Pareto</Pareto>
<Pictorial>Pictorial</Pictorial>
<PictorialStacked>Pictorial Stacked</PictorialStacked>
<Pie>Pie</Pie>
<Polar>Polar</Polar>
<PolarStacked>Polar Stacked</PolarStacked>
<Radar>Radar</Radar>
<RadarArea>Radar Area</RadarArea>
<RadarColumn>Radar Column</RadarColumn>
<RadarLine>Radar Line</RadarLine>
<RadarPoint>Radar Point</RadarPoint>
<Range>Range</Range>
<RangeBar>Range Bar</RangeBar>
<RemoveCondition>&Remove Condition</RemoveCondition>
<RemoveConstantLine>Remove Constant Line</RemoveConstantLine>
<RemoveFilter>&Remove Filter</RemoveFilter>
<RemoveSeries>&Remove Series</RemoveSeries>
<RemoveStrip>Remove Strip</RemoveStrip>
<Ribbon>Ribbon</Ribbon>
<RunChartWizard>Run Chart &Wizard</RunChartWizard>
<Scatter>Scatter</Scatter>
<ScatterLine>Scatter Line</ScatterLine>
<ScatterSpline>Scatter Spline</ScatterSpline>
<Series>Series</Series>
<SeriesColorsCollectionForm>Series Colours</SeriesColorsCollectionForm>
<SeriesEditorForm>Series Editor</SeriesEditorForm>
<Serieses>Series</Serieses>
<SparklinesArea>Area</SparklinesArea>
<SparklinesColumn>Column</SparklinesColumn>
<SparklinesLine>Line</SparklinesLine>
<SparklinesWinLoss>Win / Loss</SparklinesWinLoss>
<Spline>Spline</Spline>
<SplineArea>Spline Area</SplineArea>
<SplineRange>Spline Range</SplineRange>
<StackedArea>Stacked Area</StackedArea>
<StackedBar>Stacked Bar</StackedBar>
<StackedColumn>Stacked Column</StackedColumn>
<StackedLine>Stacked Line</StackedLine>
<StackedSpline>Stacked Spline</StackedSpline>
<StackedSplineArea>Stacked Spline Area</StackedSplineArea>
<SteppedArea>Stepped Area</SteppedArea>
<SteppedLine>Stepped Line</SteppedLine>
<SteppedRange>Stepped Range</SteppedRange>
<Stock>Stock</Stock>
<Strip>Strip</Strip>
<StripsEditorForm>Strips Editor Form</StripsEditorForm>
<Style>Style</Style>
<Sunburst>Sunburst</Sunburst>
<Surface>Surface</Surface>
<Treemap>Treemap</Treemap>
<TrendLinesEditorForm>Trend Lines Editor</TrendLinesEditorForm>
<Waterfall>Waterfall</Waterfall>
<WireframeSurface>Wireframe Surface</WireframeSurface>
</Chart>
<CharterMapEditor>
<Characters>Characters</Characters>
</CharterMapEditor>
<ChartRibbon>
<Axes>Axes</Axes>
<AxesArrowStyle>Arrow Style</AxesArrowStyle>
<AxesArrowStyleLines>Lines</AxesArrowStyleLines>
<AxesArrowStyleNone>None</AxesArrowStyleNone>
<AxesArrowStyleTriangle>Triangle</AxesArrowStyleTriangle>
<AxesLabel>Label Placement</AxesLabel>
<AxesLabelsNone>None</AxesLabelsNone>
<AxesLabelsOneLine>One Line</AxesLabelsOneLine>
<AxesLabelsTwoLines>Two Lines</AxesLabelsTwoLines>
<AxesReverseHorizontal>Reverse Horizontal</AxesReverseHorizontal>
<AxesReverseVertical>Reverse Vertical</AxesReverseVertical>
<AxesTicks>Ticks</AxesTicks>
<AxesTicksMajor>Major</AxesTicksMajor>
<AxesTicksMinor>Minor</AxesTicksMinor>
<AxesTicksNone>None</AxesTicksNone>
<AxesVisible>Visible</AxesVisible>
<AxesXAxis>X Axis</AxesXAxis>
<AxesXTopAxis>X Top Axis</AxesXTopAxis>
<AxesYAxis>Y Axis</AxesYAxis>
<AxesYRightAxis>Y Right Axis</AxesYRightAxis>
<CenterLabels>Centre</CenterLabels>
<ChangeType>Change Type</ChangeType>
<GridLines>Grid Lines</GridLines>
<GridLinesHorizontal>Grid Lines Horizontal</GridLinesHorizontal>
<GridLinesVertical>Grid Lines Vertical</GridLinesVertical>
<HorAlCenter><b>Overlay Legend at Centre</b><br>Show Legend at centre of the chart</br><br>without resizing</br></HorAlCenter>
<HorAlLeft><b>Overlay Legend at Left</b><br>Show Legend at left of the chart</br><br>without resizing</br></HorAlLeft>
<HorAlLeftOutside><b>Show Legend at Left</b><br>Show Legend and align left</br></HorAlLeftOutside>
<HorAlRight><b>Overlay Legend at Right</b><br>Show Legend at right of the chart</br><br>without resizing</br></HorAlRight>
<HorAlRightOutside><b>Show Legend at Right</b><br>Show Legend and align right</br></HorAlRightOutside>
<HorizontalMajor><b>Major</b><br>Display Horizontal Gridlines for Major units</br></HorizontalMajor>
<HorizontalMajorMinor><b>Major && Minor Gridlines</b><br>Display Horizontal Gridlines for Major and Minor units</br></HorizontalMajorMinor>
<HorizontalMinor><b>Minor</b><br>Display Horizontal Gridlines for Minor units</br></HorizontalMinor>
<HorizontalNone><b>None</b><br>Do not display Horizontal Gridlines</br></HorizontalNone>
<InsideBaseLabels>Inside Base</InsideBaseLabels>
<InsideEndLabels>Inside End</InsideEndLabels>
<Labels>Series Labels</Labels>
<Legend>Legend</Legend>
<LegendHorizontalAlignment>Horizontal Alignment</LegendHorizontalAlignment>
<LegendMarker>Marker</LegendMarker>
<LegendMarkerAlignmentLeft>Left</LegendMarkerAlignmentLeft>
<LegendMarkerAlignmentRight>Right</LegendMarkerAlignmentRight>
<LegendMarkerVisible>Visible</LegendMarkerVisible>
<LegendVerticalAlignment>Vertical Alignment</LegendVerticalAlignment>
<LegendVisible>Visible</LegendVisible>
<NoneLabels>None</NoneLabels>
<OutsideBaseLabels>Outside Base</OutsideBaseLabels>
<OutsideEndLabels>Outside End</OutsideEndLabels>
<OutsideLabels>Outside</OutsideLabels>
<ribbonBarAxis>Axes</ribbonBarAxis>
<ribbonBarChartStyles>Chart Styles</ribbonBarChartStyles>
<ribbonBarChartType>Chart Type</ribbonBarChartType>
<ribbonBarLabels>Labels</ribbonBarLabels>
<ribbonBarLegend>Legend</ribbonBarLegend>
<Style>Change Style</Style>
<TwoColumnsPieLabels>Two Columns</TwoColumnsPieLabels>
<VertAlBottom><b>Overlay Legend at Bottom</b><br>Show Legend at bottom of the chart</br><br>without resizing</br></VertAlBottom>
<VertAlBottomOutside><b>Show Legend at Bottom</b><br>Show Legend and align bottom</br></VertAlBottomOutside>
<VertAlCenter><b>Overlay Legend at Centre</b><br>Show Legend at centre of the chart</br><br>without resizing</br></VertAlCenter>
<VertAlTop><b>Overlay Legend at Top</b><br>Show Legend at top of the chart</br><br>without resizing</br></VertAlTop>
<VertAlTopOutside><b>Show Legend at Top</b><br>Show Legend and align top</br></VertAlTopOutside>
<VerticalMajor><b>Major</b><br>Display Vertical Gridlines for Major units</br></VerticalMajor>
<VerticalMajorMinor><b>Major && Minor Gridlines</b><br>Display Vertical Gridlines for Major and Minor units</br></VerticalMajorMinor>
<VerticalMinor><b>Minor</b><br>Display Vertical Gridlines for Minor units</br></VerticalMinor>
<VerticalNone><b>None</b><br>Do not display Vertical Gridlines</br></VerticalNone>
</ChartRibbon>
<Cloud>
<AcceptTermsAndPrivacyPolicy>I read and accept the {0} and {1}</AcceptTermsAndPrivacyPolicy>
<Account>Account</Account>
<AccountSettings>Account Settings</AccountSettings>
<AddAPlace>Add a Place</AddAPlace>
<AreYouSureYouWantDeleteReport>Are you sure you want to delete "{0}" report from disk?</AreYouSureYouWantDeleteReport>
<Authorize>Authorise</Authorize>
<AuthorizeWithLicenseKey>Authorise with Licence Key</AuthorizeWithLicenseKey>
<ButtonChangePassword>Change Password</ButtonChangePassword>
<ButtonDeleteAll>Delete All</ButtonDeleteAll>
<ButtonDesign>Design Report</ButtonDesign>
<ButtonLater>Later</ButtonLater>
<ButtonLogInWith>Log in with {0}</ButtonLogInWith>
<ButtonLogout>Logout</ButtonLogout>
<ButtonPublish>Publish</ButtonPublish>
<ButtonPurchase>Purchase</ButtonPurchase>
<ButtonRecover>Recover</ButtonRecover>
<ButtonRenew>Renew</ButtonRenew>
<ButtonResendEmail>Resend Email</ButtonResendEmail>
<ButtonResendInvitation>Resend Invitation</ButtonResendInvitation>
<ButtonResetPassword>Reset Password</ButtonResetPassword>
<ButtonRun>Run</ButtonRun>
<ButtonScheduler>Scheduler</ButtonScheduler>
<ButtonShare>Share</ButtonShare>
<ButtonSignUp>Sign up</ButtonSignUp>
<ButtonSignUpWith>Sign up with {0}</ButtonSignUpWith>
<ButtonSkip>Skip</ButtonSkip>
<ButtonView>View</ButtonView>
<ButtonWhereUsed>Where is it used?</ButtonWhereUsed>
<Cancel>Cancel</Cancel>
<CheckBoxMoveToRecycleBin>Move to Recycle Bin</CheckBoxMoveToRecycleBin>
<CheckBoxRememberMe>Remember Me</CheckBoxRememberMe>
<CheckForUpdate>Check for Update</CheckForUpdate>
<Cloud>Cloud</Cloud>
<Collection>Collection</Collection>
<Create>Create</Create>
<CreateError>Error while creating report!</CreateError>
<CreateNewCollection>Create New Collection</CreateNewCollection>
<CreateYourTeam>Create your team</CreateYourTeam>
<CreatingReport>Creating report...</CreatingReport>
<DashboardWindowTitleNew>New Dashboard</DashboardWindowTitleNew>
<DeleteFile>Delete File</DeleteFile>
<DoNotAskMe>Do not ask me again</DoNotAskMe>
<EnglishSearchRequired>Please use English for search queries.</EnglishSearchRequired>
<EnterUserNameToLogin>Enter User Name (email) to log in.</EnterUserNameToLogin>
<ExecutionError>Execution error</ExecutionError>
<ExpiredDate>Expired Date</ExpiredDate>
<FileStorageWindowTitleEdit>Edit File Storage</FileStorageWindowTitleEdit>
<FileStorageWindowTitleNew>New File Storage</FileStorageWindowTitleNew>
<FolderWindowTitleEdit>Edit Folder</FolderWindowTitleEdit>
<FolderWindowTitleNew>New Folder</FolderWindowTitleNew>
<ForExample>For example</ForExample>
<GroupBoxAttachedItems>Attached Items</GroupBoxAttachedItems>
<HyperlinkAgreeToTerms>By registering you agree to Terms.</HyperlinkAgreeToTerms>
<HyperlinkAlreadyHaveAccount>Already have account</HyperlinkAlreadyHaveAccount>
<HyperlinkForgotPassword>Forgot password</HyperlinkForgotPassword>
<HyperlinkHavePassword>Have password</HyperlinkHavePassword>
<HyperlinkRegisterAccount>Register FREE account</HyperlinkRegisterAccount>
<InstallSamples>Install Samples</InstallSamples>
<Invitations>Invitations</Invitations>
<Invite>Invite</Invite>
<LabelAddCloudFolder>Connect your Stimulsoft Cloud folder with reports and dashboards.</LabelAddCloudFolder>
<LabelAddFolder>Add your local folder with reports and dashboards.</LabelAddFolder>
<labelCollectionName>Collection Name:</labelCollectionName>
<LabelCreated>Created:</LabelCreated>
<LabelCreateFolder>Create a new category in which you can place other items.</LabelCreateFolder>
<LabelCreateNewDashboard>Create new dashboard.</LabelCreateNewDashboard>
<LabelCreateReportTemplate>Create report template.</LabelCreateReportTemplate>
<LabelCurrentPassword>Current Password:</LabelCurrentPassword>
<LabelDataFile>Data File:</LabelDataFile>
<LabelDataUrl>Data URL:</LabelDataUrl>
<LabelEndDate>End Date:</LabelEndDate>
<labelFileName>File Name:</labelFileName>
<LabelForeground>Foreground:</LabelForeground>
<LabelFromReport>From Report</LabelFromReport>
<LabelFromReportCode>From Report (define in code)</LabelFromReportCode>
<LabelInviteUser>Invite new users to your team. Send invitations to their emails.</LabelInviteUser>
<LabelLastLogin>Last Log in:</LabelLastLogin>
<LabelLastTime>Last Time:</LabelLastTime>
<LabelModified>Modified:</LabelModified>
<LabelNewPassword>New Password:</LabelNewPassword>
<LabelNextTime>Next Time:</LabelNextTime>
<labelPassword>Password:</labelPassword>
<LabelPermission>Permission:</LabelPermission>
<LabelPicture>Picture:</LabelPicture>
<LabelRenderedReport>Rendered report</LabelRenderedReport>
<LabelResponseAsFile>Response as File</LabelResponseAsFile>
<LabelResultType>Result Type:</LabelResultType>
<LabelSeparateReport>Separate report (and scripts) file</LabelSeparateReport>
<LabelShowReport>Show report:</LabelShowReport>
<LabelStartDate>Start Date:</LabelStartDate>
<labelUserName>User Name:</labelUserName>
<License>Licence</License>
<LicenseInformation>Licence Information</LicenseInformation>
<LicenseKey>Licence Key</LicenseKey>
<Login>Log in</Login>
<MyAccount>My Account</MyAccount>
<MyCloud>My Cloud</MyCloud>
<MyPlan>My Plan</MyPlan>
<MyTeam>My Team</MyTeam>
<NofM>{0}: {1} of {2}</NofM>
<Open>Open</Open>
<OpenFile>Open File</OpenFile>
<OperationCreate>Create '{0}'</OperationCreate>
<OperationDelete>Delete '{0}' from Server</OperationDelete>
<OperationDownload>Download from Server</OperationDownload>
<OperationGetList>Get List of Files from Server</OperationGetList>
<OperationLogin>Log in to Server</OperationLogin>
<OperationRename>Rename '{0}' to '{1}'</OperationRename>
<OperationUpload>Upload '{0}' to Server</OperationUpload>
<page>page</page>
<Platforms>Platforms</Platforms>
<Port>Port</Port>
<PrivacyPolicy>Privacy</PrivacyPolicy>
<Products>Products</Products>
<Proxy>Proxy</Proxy>
<PublishMessage>In order to publish this report you should submit it to our service publish.stimulsoft.com</PublishMessage>
<questionOpenThisFile>Are you sure want to open '{0}' item?</questionOpenThisFile>
<questionOverrideItem>Do you really want to override '{0}' item?</questionOverrideItem>
<questionRemoveItem>Do you really want to remove '{0}' item?</questionRemoveItem>
<RefreshList>Refresh List</RefreshList>
<ReportDocumentFormatNotRecognized>Format of '{0}' item is not recognized as rendered report format!</ReportDocumentFormatNotRecognized>
<ReportTemplateFormatNotRecognized>Format of '{0}' item is not recognized as report template format!</ReportTemplateFormatNotRecognized>
<RequestChangesWhenSavingToCloud>Request Changes when Saving to Cloud</RequestChangesWhenSavingToCloud>
<RibbonButtonAddRole>Add Role</RibbonButtonAddRole>
<RibbonButtonAddUser>Add User</RibbonButtonAddUser>
<RibbonButtonAddUserParameter>Add User Parameter</RibbonButtonAddUserParameter>
<RibbonButtonAddWorkspace>Add Workspace</RibbonButtonAddWorkspace>
<RibbonButtonFolder>Folder</RibbonButtonFolder>
<RibbonTabUsers>Users</RibbonTabUsers>
<Root>Root</Root>
<RootFolder>Root Folder</RootFolder>
<Save>Save</Save>
<SaveAccountSettings>Save Account Settings</SaveAccountSettings>
<SaveAsType>Save as type</SaveAsType>
<SaveFile>Save File</SaveFile>
<SavingToStimulsoftCloudPleaseWait>Saving the report to Stimulsoft Cloud. Please wait!</SavingToStimulsoftCloudPleaseWait>
<SearchForOnlineTemplates>Search for online templates</SearchForOnlineTemplates>
<ShareWindowTitleNew>Share</ShareWindowTitleNew>
<ShowAllFiles>Show All Files</ShowAllFiles>
<ShowNotificationMessages>Show Notification Messages</ShowNotificationMessages>
<Submissions>Submissions</Submissions>
<Subscriptions>Subscriptions</Subscriptions>
<TabItemEmbedCode>Embed Code</TabItemEmbedCode>
<TabItemQRCode>QR Code</TabItemQRCode>
<TabItemShare>Link to Share</TabItemShare>
<Team>Team</Team>
<TermsOfUse>Terms</TermsOfUse>
<TextActivated>Activated</TextActivated>
<TextActivationDate>Activation Date</TextActivationDate>
<TextDelete>Delete</TextDelete>
<TextDeletingItems>Deleting items...</TextDeletingItems>
<TextDescriptionChanges>Please, type a description of the changes:</TextDescriptionChanges>
<TextFirstName>First Name</TextFirstName>
<TextFromTo>From {0} to {1} (Total - {2})</TextFromTo>
<TextItemsWorkspace>Workspace</TextItemsWorkspace>
<TextLastName>Last Name</TextLastName>
<TextModify>Modify</TextModify>
<TextNewsLetters>News Letters</TextNewsLetters>
<TextNoFavoriteFiles>No favourite files</TextNoFavoriteFiles>
<TextNoFiles>No files</TextNoFiles>
<TextNoNotifications>No Notifications</TextNoNotifications>
<TextNoRecentFiles>No recent files</TextNoRecentFiles>
<TextOwner>Owner</TextOwner>
<TextProfile>Profile</TextProfile>
<TextReports>Reports</TextReports>
<TextRestoringItems>Restoring items...</TextRestoringItems>
<TextRole>Role</TextRole>
<TextRun>Run</TextRun>
<TextUser>User</TextUser>
<TextUserName>User Name (Email)</TextUserName>
<TimeHoursAgoFive>Five hours ago, {0:t}</TimeHoursAgoFive>
<TimeHoursAgoFour>Four hours ago, {0:t}</TimeHoursAgoFour>
<TimeHoursAgoOne>One hour ago, {0:t}</TimeHoursAgoOne>
<TimeHoursAgoThree>Three hours ago, {0:t}</TimeHoursAgoThree>
<TimeHoursAgoTwo>Two hours ago, {0:t}</TimeHoursAgoTwo>
<TimeMinutesAgoFive>Five minutes ago, {0:t}</TimeMinutesAgoFive>
<TimeMinutesAgoFour>Four minutes ago, {0:t}</TimeMinutesAgoFour>
<TimeMinutesAgoLessOne>Less than a minute ago</TimeMinutesAgoLessOne>
<TimeMinutesAgoN>{0} minutes ago, {1:t}</TimeMinutesAgoN>
<TimeMinutesAgoOne>One minute ago, {0:t}</TimeMinutesAgoOne>
<TimeMinutesAgoThree>Three minutes ago, {0:t}</TimeMinutesAgoThree>
<TimeMinutesAgoTwo>Two minutes ago, {0:t}</TimeMinutesAgoTwo>
<TimeToday>Today, {0:t}</TimeToday>
<TimeYesterday>Yesterday, {0:t}</TimeYesterday>
<ToolTipAddRole>Creating a new role in the workspace.</ToolTipAddRole>
<ToolTipAddUser>Creating a new user in the selected role.</ToolTipAddUser>
<ToolTipAspNet>Publish the selected report to the ASP.NET application.</ToolTipAspNet>
<ToolTipAspNetMvc>Publish the selected report to the ASP.NET MVC application.</ToolTipAspNetMvc>
<ToolTipAttach>Attach items to the selected report.</ToolTipAttach>
<ToolTipCreate>Create a new item.</ToolTipCreate>
<ToolTipDelete>Delete the selected items.</ToolTipDelete>
<ToolTipDeleted>Show deleted items</ToolTipDeleted>
<ToolTipDownload>Download the selected item.</ToolTipDownload>
<ToolTipEdit>Edit the selected item.</ToolTipEdit>
<ToolTipGridMode>List view</ToolTipGridMode>
<ToolTipInfo>View details</ToolTipInfo>
<ToolTipJs>Publish the selected report as the HTML page</ToolTipJs>
<ToolTipPublish>Prepare the selected report to be deployed in your application.</ToolTipPublish>
<ToolTipRecover>Recover the selected items.</ToolTipRecover>
<ToolTipRunWithoutPreview>Render the selected report without preview</ToolTipRunWithoutPreview>
<ToolTipShare>Share the selected file.</ToolTipShare>
<ToolTipSort>Sort options</ToolTipSort>
<ToolTipThumbnailMode>Thumbnail View</ToolTipThumbnailMode>
<ToolTipViewFile>Show the selected file.</ToolTipViewFile>
<ToolTipViewReport>Show the selected report in the viewer.</ToolTipViewReport>
<WeDidntFindAnything>We didn't find anything to show here.</WeDidntFindAnything>
<WindowDescriptionDelete>Are you sure you want to delete the selected items?</WindowDescriptionDelete>
<WindowDescriptionRecover>Selected items will be recovered from the Recycle Bin.</WindowDescriptionRecover>
<WindowTitleDelete>Delete Items</WindowTitleDelete>
<WindowTitleForgotPassword>Forgot Password</WindowTitleForgotPassword>
<WindowTitleLogin>Log in</WindowTitleLogin>
<WindowTitleRecover>Recover Items</WindowTitleRecover>
<WindowTitleRoleEdit>Edit Role</WindowTitleRoleEdit>
<WindowTitleRoleNew>New Role</WindowTitleRoleNew>
<WindowTitleSignUp>Sign up</WindowTitleSignUp>
<WindowTitleUserEdit>Edit User</WindowTitleUserEdit>
<WindowTitleUserNew>New User</WindowTitleUserNew>
<WindowTitleUserParameterEdit>Edit User Parameter</WindowTitleUserParameterEdit>
<WindowTitleUserParameterNew>New User Parameter</WindowTitleUserParameterNew>
<WindowTitleWorkspaceEdit>Edit Workspace</WindowTitleWorkspaceEdit>
<WindowTitleWorkspaceNew>New Workspace</WindowTitleWorkspaceNew>
<WizardBlankReportDescription>Create a blank report</WizardBlankReportDescription>
<WizardExcelDescription>Create a report with Excel data.</WizardExcelDescription>
<WizardJsonDescription>Create a report with JSON data.</WizardJsonDescription>
<WizardPrivateShare>No Access</WizardPrivateShare>
<WizardPrivateShareDescription>External access to the item is restricted.</WizardPrivateShareDescription>
<WizardPublicShare>Public Access</WizardPublicShare>
<WizardPublicShareDescription>External access for any unauthorized user.</WizardPublicShareDescription>
<WizardRegisteredShare>Authorized Access</WizardRegisteredShare>
<WizardRegisteredShareDescription>External access only for registered users from any workspace.</WizardRegisteredShareDescription>
<WizardTeamShare>Team Access</WizardTeamShare>
<WizardTeamShareDescription>External access for users of one workspace only.</WizardTeamShareDescription>
<WizardXmlDescription>Create a report with XML data.</WizardXmlDescription>
<YourPlan>Your Plan</YourPlan>
</Cloud>
<Components>
<StiBarCode>Bar Code</StiBarCode>
<StiButton>Button</StiButton>
<StiCards>Cards</StiCards>
<StiChart>Chart</StiChart>
<StiCheckBox>Check Box</StiCheckBox>
<StiChildBand>Child</StiChildBand>
<StiClone>Clone</StiClone>
<StiColumnFooterBand>Column Footer</StiColumnFooterBand>
<StiColumnHeaderBand>Column Header</StiColumnHeaderBand>
<StiComboBox>Combo Box</StiComboBox>
<StiComponent>Component</StiComponent>
<StiContainer>Container</StiContainer>
<StiContourText>Contour Text</StiContourText>
<StiCrossColumn>Cross-Column</StiCrossColumn>
<StiCrossColumnTotal>Cross-Column Total</StiCrossColumnTotal>
<StiCrossDataBand>Cross-Data</StiCrossDataBand>
<StiCrossFooterBand>Cross-Footer</StiCrossFooterBand>
<StiCrossGroupFooterBand>Cross-Group Footer</StiCrossGroupFooterBand>
<StiCrossGroupHeaderBand>Cross-Group Header</StiCrossGroupHeaderBand>
<StiCrossHeaderBand>Cross-Header</StiCrossHeaderBand>
<StiCrossRow>Cross-Row</StiCrossRow>
<StiCrossRowTotal>Cross-Row Total</StiCrossRowTotal>
<StiCrossSummary>Cross-Summary</StiCrossSummary>
<StiCrossSummaryHeader>Cross-Summary Header</StiCrossSummaryHeader>
<StiCrossTab>Cross-Tab</StiCrossTab>
<StiCrossTitle>Cross-Title</StiCrossTitle>
<StiDashboard>Dashboard</StiDashboard>
<StiDataBand>Data</StiDataBand>
<StiDatePicker>Date Picker</StiDatePicker>
<StiElectronicSignature>Electronic Signature</StiElectronicSignature>
<StiEmptyBand>Empty Data</StiEmptyBand>
<StiFooterBand>Footer</StiFooterBand>
<StiGauge>Gauge</StiGauge>
<StiGroupFooterBand>Group Footer</StiGroupFooterBand>
<StiGroupHeaderBand>Group Header</StiGroupHeaderBand>
<StiHeaderBand>Header</StiHeaderBand>
<StiHierarchicalBand>Hierarchical Data</StiHierarchicalBand>
<StiHorizontalLinePrimitive>Horizontal Line</StiHorizontalLinePrimitive>
<StiIcon>Icon</StiIcon>
<StiImage>Image</StiImage>
<StiIndicator>Indicator</StiIndicator>
<StiListBox>List Box</StiListBox>
<StiMap>Map</StiMap>
<StiMathFormula>Math Formula</StiMathFormula>
<StiMultipleSelection>Multiple Selection</StiMultipleSelection>
<StiNumberBox>Number Box</StiNumberBox>
<StiOnlineMap>Online Map</StiOnlineMap>
<StiOverlayBand>Overlay</StiOverlayBand>
<StiPage>Page</StiPage>
<StiPageFooterBand>Page Footer</StiPageFooterBand>
<StiPageHeaderBand>Page Header</StiPageHeaderBand>
<StiPanel>Panel</StiPanel>
<StiPdfDigitalSignature>PDF Digital Signature</StiPdfDigitalSignature>
<StiPdfDigitalSignatureElement>PDF Element</StiPdfDigitalSignatureElement>
<StiPivotColumn>Pivot Column</StiPivotColumn>
<StiPivotRow>Pivot Row</StiPivotRow>
<StiPivotSummary>Pivot Summary</StiPivotSummary>
<StiPivotTable>Pivot Table</StiPivotTable>
<StiProgress>Progress</StiProgress>
<StiRangeSelector>Range Selector</StiRangeSelector>
<StiRectanglePrimitive>Rectangle</StiRectanglePrimitive>
<StiRegionMap>Region Map</StiRegionMap>
<StiReport>Report</StiReport>
<StiReportSummaryBand>Report Summary</StiReportSummaryBand>
<StiReportTitleBand>Report Title</StiReportTitleBand>
<StiRichText>Rich Text</StiRichText>
<StiRoundedRectanglePrimitive>Rounded Rectangle</StiRoundedRectanglePrimitive>
<StiScreen>Screen</StiScreen>
<StiShape>Shape</StiShape>
<StiSignature>Signature</StiSignature>
<StiSingleSelection>Single Selection</StiSingleSelection>
<StiSlider>Slider</StiSlider>
<StiSparkline>Sparkline</StiSparkline>
<StiSubReport>Sub-Report</StiSubReport>
<StiSystemText>System Text</StiSystemText>
<StiTable>Table</StiTable>
<StiTableOfContents>Table of Contents</StiTableOfContents>
<StiText>Text</StiText>
<StiTextInCells>Text in Cells</StiTextInCells>
<StiTreeView>Tree View</StiTreeView>
<StiTreeViewBox>Tree View Box</StiTreeViewBox>
<StiVerticalLinePrimitive>Vertical Line</StiVerticalLinePrimitive>
<StiWebContent>Web Content</StiWebContent>
<StiWinControl>Win Control</StiWinControl>
<StiZipCode>ZIP Code</StiZipCode>
</Components>
<CustomMapWindow>
<CheckedAll>Checked All</CheckedAll>
<HideText>Hide Text</HideText>
<KeysChangePosition>Keys (Left, Top, Right, Bottom) change the position of the text</KeysChangePosition>
<KeysChangeSize>Shift + keys (Left, Top, Right, Bottom) change the size of the text area</KeysChangeSize>
<UncheckedAll>Unchecked All</UncheckedAll>
</CustomMapWindow>
<Dashboard>
<AddRange>Add Range</AddRange>
<AfterGroupingData>Apply after grouping data</AfterGroupingData>
<AfterSortingData>Apply after grouping and sorting data</AfterSortingData>
<AllowUserColumnSelection>Allow User Column Selection</AllowUserColumnSelection>
<AllowUserDrillDown>Allow User Drill-Down</AllowUserDrillDown>
<AllowUserFiltering>Allow User Filtering</AllowUserFiltering>
<AllowUserSorting>Allow User Sorting</AllowUserSorting>
<BeforeTransformation>Apply before data transformation</BeforeTransformation>
<BindData>Bind to Data</BindData>
<Blank>(Blank)</Blank>
<Blanks>(Blanks)</Blanks>
<BooleanFilters>Boolean Filters</BooleanFilters>
<CannotLoadDashboard>You cannot load a report with dashboards.</CannotLoadDashboard>
<ChangeChartType>Change Chart Type</ChangeChartType>
<ChangeMapType>Change Map Type</ChangeMapType>
<ClearAllFormatting>Clear All Formatting</ClearAllFormatting>
<ClearFilterFrom>Clear Filter from '{0}'</ClearFilterFrom>
<ColorScale>Colour Scale</ColorScale>
<ColumnInteractions>Column Interactions</ColumnInteractions>
<CreateDataBinding>Create Data Binding</CreateDataBinding>
<CustomFilter>Custom &Filter...</CustomFilter>
<DashboardsNotSupportedIntheWPFDesigner>Dashboards are not supported in the WPF Designer.</DashboardsNotSupportedIntheWPFDesigner>
<DataBars>Data Bars</DataBars>
<DataFilterGrouping>This operation is used for grouping different columns only.</DataFilterGrouping>
<DataNotDefined>Data is not defined</DataNotDefined>
<DateFilters>Date Filters</DateFilters>
<Dimension>Dimension</Dimension>
<Dimensions>Dimensions</Dimensions>
<DragDropBlocks>Drag & drop blocks from panel</DragDropBlocks>
<DragDropData>Drag & drop data</DragDropData>
<DragDropDataFromDictionary>Drag & drop data from Dictionary</DragDropDataFromDictionary>
<DrillDown>Drill-Down</DrillDown>
<DrillDownFiltered>Drill-Down Filtered</DrillDownFiltered>
<DrillDownSelected>Drill-Down Selected</DrillDownSelected>
<DrillUp>Drill Up</DrillUp>
<DuplicateField>Duplicate Field</DuplicateField>
<EditDataBinding>Edit Data Binding</EditDataBinding>
<EditExpression>Edit Expression</EditExpression>
<EditField>Edit Field</EditField>
<EmptyDashboardFooter>Drag & drop component from ToolBox or data from Dictionary</EmptyDashboardFooter>
<EmptyDashboardHeader>Dashboard is empty</EmptyDashboardHeader>
<FieldInteractions>Field Interactions</FieldInteractions>
<FieldTypeRestrictionHint>Only '{0}' type field can be used!</FieldTypeRestrictionHint>
<FirstLastPoints>First / Last Points</FirstLastPoints>
<FirstRowIndex>First Row Index</FirstRowIndex>
<FullRowSelect>Full Row Select</FullRowSelect>
<HighLowPoints>High / Low Points</HighLowPoints>
<ImageNotSpecified>Image not specified</ImageNotSpecified>
<Indicator>Indicator</Indicator>
<InitialValue>Initial Value</InitialValue>
<LimitRows>Skip and Limit Rows</LimitRows>
<Measure>Measure</Measure>
<Measures>Measures</Measures>
<Metrics>Metrics</Metrics>
<NewDimension>New Dimension</NewDimension>
<NewField>New Field</NewField>
<NewMeasure>New Measure</NewMeasure>
<NoRanges>No Ranges</NoRanges>
<NoResult>No Result</NoResult>
<NResult>{0} result</NResult>
<NResults>{0} results</NResults>
<NSelected>{0} selected</NSelected>
<Nulls>(Nulls)</Nulls>
<NumberFilters>Number Filters</NumberFilters>
<ParentElement>Parent Element</ParentElement>
<Priority>Priority</Priority>
<RangeMode>Range Mode</RangeMode>
<RangeType>Range Type</RangeType>
<RemoveActions>R&emove Actions</RemoveActions>
<RemoveAllFields>Remove All Fields</RemoveAllFields>
<RemoveField>Remove Field</RemoveField>
<RemoveMobileSurface>Remove Mobile Surface</RemoveMobileSurface>
<ReplaceValues>Replace Values</ReplaceValues>
<ReportSnapshot>Report Snapshot</ReportSnapshot>
<RowsCount>Rows Count</RowsCount>
<RunFieldsEditor>Run Fields Editor</RunFieldsEditor>
<RunFieldsEditorInfo>Run the Fields Editor to change interaction of each table column.</RunFieldsEditorInfo>
<SelectAll>(Select &All)</SelectAll>
<ShowAllValue>Show (All) Value</ShowAllValue>
<ShowAsPercentages>Show as Percentages</ShowAsPercentages>
<ShowBlanks>Show Blanks</ShowBlanks>
<SkipFirstRows>Skip First Rows</SkipFirstRows>
<SortAZ>Sort A to Z</SortAZ>
<SortLargestToSmallest>Sort Largest to Smallest</SortLargestToSmallest>
<SortNewestToOldest>Sort Newest to Oldest</SortNewestToOldest>
<SortOldestToNewest>Sort Oldest to Newest</SortOldestToNewest>
<SortSmallestToLargest>Sort Smallest to Largest</SortSmallestToLargest>
<SortZA>Sort Z to A</SortZA>
<Sparklines>Sparklines</Sparklines>
<StringFilters>String Filters</StringFilters>
<TransformationHint>Click on the table header to apply sorting, filtering or change data. This transformation will be applied only to the data of this item.</TransformationHint>
<Trend>Trend</Trend>
<ViewEditCompilationNotice>You can't edit the report which has the 'Report.CalculationMode' property equals to the 'Compilation' value. Please set that property to 'Interpretation'.</ViewEditCompilationNotice>
<ViewModeDesktop>Desktop</ViewModeDesktop>
<ViewModeMobile>Mobile</ViewModeMobile>
</Dashboard>
<Database>
<Connection>Connection</Connection>
<Database>{0} Connection</Database>
<DatabaseDB2>IBM DB2 Connection</DatabaseDB2>
<DatabaseFirebird>Firebird Connection</DatabaseFirebird>
<DatabaseInformix>Informix Connection</DatabaseInformix>
<DatabaseJson>JSON Data</DatabaseJson>
<DatabaseMySQL>MySQL Connection</DatabaseMySQL>
<DatabaseOdbc>ODBC Connection</DatabaseOdbc>
<DatabaseOleDb>OLE DB Connection</DatabaseOleDb>
<DatabaseOracle>Oracle Connection</DatabaseOracle>
<DatabaseOracleODP>Oracle ODP.NET Connection</DatabaseOracleODP>
<DatabasePostgreSQL>PostgreSQL Connection</DatabasePostgreSQL>
<DatabaseSql>SQL Connection</DatabaseSql>
<DatabaseSqlCe>SQLServerCE Connection</DatabaseSqlCe>
<DatabaseSQLite>SQLite Connection</DatabaseSQLite>
<DatabaseTeradata>Teradata Connection</DatabaseTeradata>
<DatabaseUniDirect>Uni Direct Connection</DatabaseUniDirect>
<DatabaseVistaDB>VistaDB Connection</DatabaseVistaDB>
<DatabaseXml>XML Data</DatabaseXml>
</Database>
<DatePickerRanges>
<CurrentMonth>Current Month</CurrentMonth>
<CurrentQuarter>Current Quarter</CurrentQuarter>
<CurrentWeek>Current Week</CurrentWeek>
<CurrentYear>Current Year</CurrentYear>
<DaysAgo>{0} Days Ago</DaysAgo>
<FirstQuarter>First Quarter</FirstQuarter>
<FourthQuarter>Fourth Quarter</FourthQuarter>
<Index>Index</Index>
<Last14Days>Last 14 Days</Last14Days>
<Last30Days>Last 30 Days</Last30Days>
<Last7Days>Last 7 Days</Last7Days>
<MonthToDate>Month To Date</MonthToDate>
<NextMonth>Next Month</NextMonth>
<NextQuarter>Next Quarter</NextQuarter>
<NextWeek>Next Week</NextWeek>
<NextYear>Next Year</NextYear>
<PreviousMonth>Previous Month</PreviousMonth>
<PreviousQuarter>Previous Quarter</PreviousQuarter>
<PreviousWeek>Previous Week</PreviousWeek>
<PreviousYear>Previous Year</PreviousYear>
<Quarter>Quarter</Quarter>
<QuarterToDate>Quarter To Date</QuarterToDate>
<SecondQuarter>Second Quarter</SecondQuarter>
<ThirdQuarter>Third Quarter</ThirdQuarter>
<Today>Today</Today>
<Tomorrow>Tomorrow</Tomorrow>
<WeekToDate>Week To Date</WeekToDate>
<Year>Year</Year>
<YearToDate>Year To Date</YearToDate>
<Yesterday>Yesterday</Yesterday>
</DatePickerRanges>
<DesignerFx>
<AlreadyExists>'{0}' already exists.</AlreadyExists>
<CanNotLoadThisReportTemplate>Can't load this report template.</CanNotLoadThisReportTemplate>
<CloseDataSourceEditor>Do you want to close data source editor?</CloseDataSourceEditor>
<CloseEditor>Do you want to close editor?</CloseEditor>
<CompilingReport>Compiling Report</CompilingReport>
<Connecting>Connecting to Server</Connecting>
<ConnectionError>Connection error</ConnectionError>
<ConnectionSuccessfull>Connection was successful</ConnectionSuccessfull>
<Continue>Continue</Continue>
<DecryptionError>Decryption error: Wrong password or corrupted file.</DecryptionError>
<EmailSuccessfullySent>The Email has been successfully sent.</EmailSuccessfullySent>
<ErrorAtSaving>Error at saving</ErrorAtSaving>
<ErrorCode>Error at saving. Error code: {0}</ErrorCode>
<ErrorServer>Error at saving. Server doesn't respond.</ErrorServer>
<ExportingReport>Exporting Report</ExportingReport>
<LoadingCode>Loading Code</LoadingCode>
<LoadingConfiguration>Loading Configuration</LoadingConfiguration>
<LoadingData>Loading Data</LoadingData>
<LoadingDocument>Loading Document</LoadingDocument>
<LoadingImages>Loading Images</LoadingImages>
<LoadingLanguage>Loading Language</LoadingLanguage>
<LoadingReport>Loading Report</LoadingReport>
<PreviewAs>Preview as {0}</PreviewAs>
<RenderingReport>Rendering Report</RenderingReport>
<ReportSuccessfullySaved>Report is successfully saved.</ReportSuccessfullySaved>
<RetrieveError>Retrieve columns error</RetrieveError>
<RetrievingColumns>Retrieving Columns</RetrievingColumns>
<Saving>Saving</Saving>
<SavingConfiguration>Saving Configuration</SavingConfiguration>
<SavingReport>Saving Report</SavingReport>
<TestConnection>Test Connection</TestConnection>
<TextNotFound>The specified text was not found. Text : {0}</TextNotFound>
</DesignerFx>
<Desktop>
<Beginner>Beginner</Beginner>
<ButtonAddCloud>Add Cloud Folder</ButtonAddCloud>
<ButtonAddFolder>Add Folder</ButtonAddFolder>
<ButtonCreateDashboard>Create Dashboard</ButtonCreateDashboard>
<ButtonCreateReport>Create Report</ButtonCreateReport>
<ChooseYourSkillLevel>Choose your skill level</ChooseYourSkillLevel>
<Creator>Creator</Creator>
<Developer>Developer</Developer>
<DoYouWantToInstallReports>Do you want to install templates of reports and dashboards?</DoYouWantToInstallReports>
<InstallSamplesDesc>Let's install our sample projects. They will help you learn the basics of working with our software.</InstallSamplesDesc>
<PleaseAnswerWhoAreYou>Please, answer who you are?</PleaseAnswerWhoAreYou>
<SkillLevel>Skill Level</SkillLevel>
<WhoAreYou>Who Are you?</WhoAreYou>
<WhoAreYouBeginnerDescription>Perfect fit if you are doing the first run of the designer.</WhoAreYouBeginnerDescription>
<WhoAreYouCreatorDescription>Perfect fit for creating reports. The necessary functionality for design is available.</WhoAreYouCreatorDescription>
<WhoAreYouDeveloperDescription>Perfect fit for creating applications. Complete functionality for the report design and embedding components included.</WhoAreYouDeveloperDescription>
</Desktop>
<Dialogs>
<StiButtonControl>Button</StiButtonControl>
<StiCheckBoxControl>Check Box</StiCheckBoxControl>
<StiCheckBoxGroupControl>Check Box Group</StiCheckBoxGroupControl>
<StiCheckedListBoxControl>Checked List Box</StiCheckedListBoxControl>
<StiComboBoxControl>Combo Box</StiComboBoxControl>
<StiDatePickerControl>Date Picker</StiDatePickerControl>
<StiDateTimePickerControl>Date Time Picker</StiDateTimePickerControl>
<StiForm>Form</StiForm>
<StiGridControl>Grid</StiGridControl>
<StiGroupBoxControl>Group Box</StiGroupBoxControl>
<StiLabelControl>Label</StiLabelControl>
<StiListBoxControl>List Box</StiListBoxControl>
<StiListControl>List</StiListControl>
<StiListViewControl>List View</StiListViewControl>
<StiLookUpBoxControl>LookUp Box</StiLookUpBoxControl>
<StiMultiListControl>Multi List</StiMultiListControl>
<StiMultiSelectControl>Multi Select</StiMultiSelectControl>
<StiNumberInputControl>Number Input</StiNumberInputControl>
<StiNumericUpDownControl>Numeric Up Down</StiNumericUpDownControl>
<StiPanelControl>Panel</StiPanelControl>
<StiPictureBoxControl>Picture Box</StiPictureBoxControl>
<StiRadioButtonControl>Radio Button</StiRadioButtonControl>
<StiRadioGroupControl>Radio Group</StiRadioGroupControl>
<StiRangeSliderControl>Range Slider</StiRangeSliderControl>
<StiReportControl>Report Control</StiReportControl>
<StiRichTextBoxControl>Rich Text Box</StiRichTextBoxControl>
<StiSelectControl>Select</StiSelectControl>
<StiSliderControl>Slider</StiSliderControl>
<StiSwitchControl>Toggle</StiSwitchControl>
<StiTextBoxControl>Text Box</StiTextBoxControl>
<StiTextInputControl>Text Input</StiTextInputControl>
<StiTreeViewControl>Tree View</StiTreeViewControl>
</Dialogs>
<Editor>
<AllowSQLFormatting>Allow SQL Formatting</AllowSQLFormatting>
<AutomaticallyGeneratedExpression>This is an automatically generated expression.</AutomaticallyGeneratedExpression>
<BetweenMetrics>Between 1 and 10 metrics can be selected.</BetweenMetrics>
<CantFind>Cannot find the data you're searching for.</CantFind>
<CollapseToDefinitions>C&ollapse to Definitions</CollapseToDefinitions>
<Column>Column: {0}</Column>
<EntireScope>&Entire Scope</EntireScope>
<Find>&Find</Find>
<FindNext>&Find Next</FindNext>
<FindWhat>Find What:</FindWhat>
<FromCursor>From Cursor</FromCursor>
<GotoLine>Go To &Line</GotoLine>
<InsertField>Insert Field</InsertField>
<InsertLink>Insert Link</InsertLink>
<InsertSymbol>Insert Symbol</InsertSymbol>
<Line>Line: {0}</Line>
<LineNumber>Line Number:</LineNumber>
<LineNumberIndex>Line Number ({0} - {1})</LineNumberIndex>
<MarkAll>&Mark All</MarkAll>
<MatchCase>Match &Case</MatchCase>
<MatchWholeWord>Match &Whole Word</MatchWholeWord>
<MaximumDimensions>Maximum 7 dimensions can be selected.</MaximumDimensions>
<NotFound>Not Found</NotFound>
<Outlining>Out&lining</Outlining>
<PromptOnReplace>Prompt on Replace</PromptOnReplace>
<Replace>&Replace</Replace>
<ReplaceAll>Replace &All</ReplaceAll>