-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathText.js
1762 lines (1647 loc) · 65.2 KB
/
Text.js
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
TreeGridLoaded ({ // JSONP header, to be possible to load from xxx_Jsonp data source
Cfg: { TextVersion:"130101" },
/*
In Alert section place CR/LF as "\n"
In HTML sections place CR/LF as "<br>"
In HTML sections use HTML tags <em> (error - red), <s> (disabled - gray), <i> (highlight - blue), <b> (strong highlight - blue+bold)
Some texts can place dynamic information, e.g. count or id; some text replace "%d", some other texts replace %1, %2, ...
*/
Lang : {
// All alert / confirm non HTML texts
Alert : {
// 3.1
CanReloadStart : "This command ",
CanReloadChanges : "updates all changes to server",
CanCancelChanges : "cancels all changes",
And : " and ",
CanReloadSelect : "clears all selection",
CanReloadEnd : "! Do you want to continue?",
// 3.2
ErrTimeout : "Cannot download data, timeout expired",
AskTimeout : "Cannot download data, server timeout !\nDo you want to repeat request ?",
UploadTimeout : "Cannot upload data, timeout expired",
AskUploadTimeout : "Cannot upload data, server timeout !\nDo you want to send data again ?",
// 3.5
ErrHide : "You cannot hide all variable columns!",
ErrHideExt : "Width of all fixed columns is too wide!",
// 4.2
ErrPrintOpen : "The print window could not be opened\n\n Permit popup windows to let print the grid",
ErrPrint : "The document was not successfully printed",
// 4.4.3
ErrCheck : "Synchronizing with server failed!\nDo you want to temporary disable the checking for updates?",
// 4.7
SearchHelp : "Enter string to search for like in Google\n\nindividual keywords separate by space\nphrases place into double quotes\nvariants separate by uppercase OR keyword\nexceptions precede by \"-\" (minus)\n\nOr enter expression to search by\n\nspecify columns caption to compare\nuse operators < <= > >= = <> ( ) + - * /\nuse AND OR keywords to join expressions\nuse special keywords STARTS ENDS CONTAINS\n for comparing strings (NOT to negate)\nexample: customer starts martin and date <= 1/1/2006",
NotFound : "Nothing found",
SearchStart : "Nothing found\nDo you want to continue from beginning?",
SearchError : "The search expression is invalid !",
// 5.3
Invalid:"Invalid value",
// 6.0
DelRow:"Are you sure to delete row '%d' ?",
DelSelected:"Are you sure to delete %d selected rows ?",
StyleErr : "Cannot load TreeGrid CSS style !",
ExportDownload:"Download",
// 7.0
FoundResults:"Found %d results",
PrintPrepared:"Grid is ready to print",
// 7.1
PrintReady:"Grid is ready to print\nChoose Print Preview option in menu to update page size\nOr choose Print option or press Ctrl+P to print directly",
PrintCloseWindow:"\nAfter print is finished, you can close this page",
PrintCloseTag:"\nAfter print is finished, you can click to the grid to return",
// 9.2
PivotReload:"Do you want to re-create the pivot grid?",
// 12.0
FormulaCircularAsk:"Formula contains circular cell reference\nDo you want to permit it?",
DelCol:"Are you sure to delete column '%d' ?",
DelSelectedCols:"Are you sure to delete %d selected columns ?",
SearchEnd : "Nothing found\nDo you want to continue from end?",
// 12.1
ExportIE:"Not available in IE 9 and older",
ExportError:"Export failed!",
// 13.0
DefaultSheet:"Sheet",
NewSheet:"Sheet%1",
LoadSheetErrorMissingModule:"Loading data failed because of missing TreeGrid module %1",
StripHtml:"The change will strip formatting from the text!
Do you want to save the change?"
},
// All message HTML texts
Text : {
// 2.0
DelSelected : "Deleting selected rows",
ExtentErr : "Too small grid size",
Sort : "Sorting rows ...",
SelectAll : "Changing selection of all rows",
DoFilter : "Filtering rows ...",
// 2.3
UpdateGrid : "Updating view ...",
CollapseAll : "Collapsing all rows ...",
ExpandAll : "Expanding all rows ...",
// 2.6
Render : "Rendering ...",
Page : "Page",
NoPages : "Empty",
UpdateCfg : "Updating settings ...",
StartErr : "Fatal error ! <br/>TreeGrid cannot render",
// 3.0
Calculate : "Calculating cells ...",
UpdateValues : "Updating values ...",
UpdateTree : "Updating tree ...",
// 3.1
PageErr:"Cannot download this data part !",
// 3.2
Layout : "Loading layout ...",
Load : "Loading data ...",
// 3.5
ColumnsCaption : "Select columns to display",
ColUpdate : "Updating columns ...",
// 4.3
Picture : "Picture",
DefaultsDate : "Select date ...",
DefaultsButton : "Select ...",
// 4.5
GroupCustom:"To group by, drag column caption here ...",
Group:"Grouping rows ...",
DefaultsFilterOff:"(All)",
Items:"Items %d - %d",
Print:"<h2><center>Please wait while generating report for printing ...</center></h2>",
// 4.7
SearchMethodList:"|Automatic|Search like Google|Search by expression",
Contains:"contains,has",
Starts:"starts,starts with,starts by,begins,begins with,begins by",
Ends:"ends,ends by, ends with",
And:"and",
Or:"or",
Not:"not",
SearchSearch:"Search",
SearchFilter:"Filter",
SearchSelect:"Select",
SearchMark:"Mark",
SearchFind:"Find",
SearchClear:"Clear",
SearchHelp:"Help",
Search:"Searching ...",
// 5.0.1
Printed:"Please switch to window containing the report to print it",
// 5.6
DoUndo:"Performing undo ...",
DoRedo:"Performing redo ...",
// 5.9
GanttUpdate:"Updating Gantt ...",
// 6.0
GanttCreate:"Creating Gantt ...",
LoadStyles:"Loading style ...",
SetStyle:"Updating style ...",
LoadPage:"Loading",
RenderPage:"Rendering",
ColWidth : "Changing width of column '%d'",
ColMove : "Moving column '%d'",
Password:"***",
DefaultsNone:"Clear all",
RadioFilterOff:"<i>off</i>",
DragObjectMove:"moving row <b>%d</b>",
DragObjectCopy:"copying row <b>%d</b>",
DragObjectMoreMove:"moving <b'>%d</b> rows",
DragObjectMoreCopy:"copying <b>%d</b> rows",
ExportFinished:"<center><b>Report generated</b><br/><br/>Click button for download<br/></center><br/>",
RenderProgressText:"Finished %d pages from %d",
RenderProgressCancel:"Render on background",
PrintProgressCaption:"Generating report",
PrintProgressText:"Finished %d rows from %d",
PrintProgressCancel:"Cancel report",
ExportProgressCaption:"Generating report",
ExportProgressText:"Finished %d rows from %d",
ExportProgressCancel:"Cancel report",
ExpandProgressCaption:"Expanding all rows",
ExpandProgressText:"Finished %d rows from %d",
ExpandProgressCancel:"Stop expanding",
ExportCaption : "Select columns to export",
PrintCaption : "Select columns to print",
DefaultsAll:"Select all",
// 6.1
DefaultsAlphabet:"%d ...",
// 7.0
RemoveUnused:"Clearing unused pages",
ErrorSave:"Saving changes on server failed!",
DatesRepeat:"Repeat",
DatesStart:"Start",
DatesEndTime:"End",
DatesValue:"Value",
DatesRepeatEnum:"||Weekly|Daily|Hourly",
DatesRepeatKeys:"||w|d|h",
RenderProgressCaptionRows:"Rendering row pages",
RenderProgressCaptionCols:"Rendering column pages",
RenderProgressCaptionChildren:"Rendering tree pages",
// 8.0
CalendarNone:"<s>None</s>",
CalendarEmpty:"<s>Default</s>",
CalendarEdit:"<s>Edit ...</s>",
// 9.2
ExpandCols:"Expanding columns",
CollapseCols:"Collapsing columns",
// 9.3
PagingUpdate:"Creating pages ...",
CopySlow:"The copy action took too long time (%d ms), please press the Ctrl+C again to finish the action",
CopyOk:"The copy action finished successfuly",
// 10.0
LevelsTip:"Expand rows up to %d level",
// 12.0
FileIE:"Not available in IE<=9",
Paste:"Pasting data from clipboard ...",
FormulaError1:"Formula <b>%1</b> cannot be parsed",
FormulaError2:"Incorrect cell reference in formula <b>%1</b>",
FormulaError3:"Incorrect item <b>%2</b> in formula <b>%1</b>",
FormulaError4:"Incorrect formula <b>%1</b> with error <i>%2</i>",
FormulaError5:"Formula cannot be calculated with error <i>%2</i>",
FormulaError6:"Formula <b>%1</b> returned <b>null</b> result",
FormulaError7:"Formula <b>%1</b> returned <b>NaN</b> result",
NotInList:"The value <b>%1</b> is not in the item list",
EmptyValue:"empty",
CannotEdit:"Not editable value",
NoStyle:"Style cannot be changed",
NoFormat:"Format cannot be changed",
NoNumber:"Cell value is not a number",
EditMaskError:"The value <b>%1</b> contains restricted characters",
FormulaRestrict:"Formula <b>%1</b> is restricted with error <i>%2</i>",
SizeChanged:"The value <b>%1</b> changed due size limit",
ResultText:"The value <b>%1</b> is invalid",
EditErrorsMessage:"%1",
EditChangesMessage:"%1",
EditErrorsMessageCell:"%1 in cell <b>%2</b><br>",
EditChangesMessageCell:"%1 in cell <b>%2</b><br>",
EditErrorsMessageMore:"There are <b>%1</b> more problems ...",
FormulaCircular:"Formula contains circular cell reference",
FormulaCircularAlert:"Formula contains circular cell reference",
ErrAdd:"Cannot add new row to parent %1",
ErrAddRoot:"Cannot add new row to root",
DelSelectedCols : "Deleting selected columns",
SearchFindPrev:"Prev",
NoMenu:"No action available",
SetStyleSame : "No cell was changed",
SetStyleError : "No cell was changed due edit restrictions",
SetStyleErrors : "There were not changed %1 cells due edit restrictions",
// 13.0
PagerSep1:"\n|\n",
PagerSep2:"\n=>\n",
PagerSep3:",\n",
PagerNone:"...",
LoadSheet:"Reading sheet ...",
DiscardSheet:"Do you want to discard all your data and load the data from file <b>%1</b>?",
AddSheet:"Do you want to add the data from file <b>%1</b> to actual data?",
OpenSheet:"Do you want to add the data from file <b>%1</b> to actual data<br>or discard all your data and load the data from file <b>%1</b>?",
LoadSheetError:"Loading data from <b>%1</b> failed with error <b>%2</b>",
ParseSheetError:"Parsing data from <b>%1</b> failed",
SheetsUnsupported:"Opening xlsx files is not supported in your browser",
DeleteSheet:"Do you want delete sheet <b>%1</b>?",
DeleteTab:"Do you want delete tab <b>%1</b>?",
OnlyXlsx:"Cannot open <b>%1</b>. Only <b>xlsx</b> files are supported",
CompatibleStyles:"Compatible",
ShrinkStyle:"Too large style, shrinking style size",
SetSize:"Changing style size",
UniqueSheet:" (%1)",
ShrinkSize:"There is not enough space to display the grid fully<br>Do you want to shrink the grid style size?",
EnterFormat:"Enter format string like in MS Excel",
FormulaError8:"External reference to unknown sheet <b>%2</b> in formula <b>%1</b>.",
FormulaError9:"Not supported function <b>%2</b> in formula <b>%1</b>",
FormulaError10:"Not supported reference to external file <b>%2</b> in formula <b>%1</b>",
FormulaError11:"Not yet implemented array formula or unexpected cell range <b>%2</b> in formula <b>%1</b>"
},
// Gantt texts
Gantt : {
// 6.0
ErrGanttDep:"Cannot connect dependency here",
ErrGanttPercentEdit:"Wrong input, the value must be in range 0 - 100",
DelAllGanttDep:"Disconnect all dependencies",
DelGanttMilestone:"Delete milestone",
EditGanttPercent:"Enter completed status",
DelGanttFlow:"Delete real flow",
DelGanttFlowPart:"Delete the real flow bar",
DelGanttFlags:"Delete all flags",
DelGanttFlag:"Delete the flag",
EditGanttFlag:"Enter the flag text",
DelGanttAll:"Clear the gantt cell",
NewGanttFlag:"Add new flag to selected point",
EditGanttResource:"Change resources",
AssignGanttResource:"Assign resources",
CorrectAllDependencies:"Correct all dependencies in chart",
CorrectRelatedDependencies:"Correct related dependencies",
CorrectDep:"Moving %d bars",
GanttFlagEdit:"Enter text for the flag",
GanttPercentEdit:"Enter new completed status in percent",
GanttResourceEdit:"Enter the resource text",
GanttDepLagEdit:"Enter the lag for the dependency",
// 6.1
GanttResizeDelete:"Are you sure to delete the item?",
DelGanttRunPart:"Delete the box",
EditGanttRun:"Change the box text",
EditGanttRunTip:"Change the box information",
GanttRunEdit:"Enter the box text",
GanttRunEditTip:"Enter the box information",
ChooseGanttFlagIcon:"Select the flag icon",
// 6.3
GanttCorrectDependencies:"There are also <b>%d</b> dependent tasks that should be updated. <br>Do you want to move them?",
GanttCorrectDependency:"There is also one dependent task that should be updated. Do you want to move it?",
GanttCorrectTask:"The task violates its constraints, do you want to move it?",
GanttDeleteDependencies:"There are %d dependencies, do you want to delete them?",
GanttCircularDependencies:"It will cause circular dependency relation. Do you want to create it anyway?",
GanttCircularDependenciesErr:"It is not possible to create circular dependency relation",
ErrComplete:"The complete value must be in range 0 - 100!",
ErrDuration:"The duration value is incorrect!",
ErrEnd:"The end date cannot be less than start date!",
ErrDependency:"The dependency value is incorrect!",
ErrCorrect:"It is not possible to correct the dependencies!",
ErrCorrectSome:"Not all dependencies were corrected due constraints!",
IncorrectDependencies:"<em><b>%d</b> incorrect dependencies</em>",
IncorrectDependency:"<em><b>1</b> incorrect dependency</em>",
CorrectDependencies:"All dependencies are correct",
DisabledDependencies:"<s>Dependency checking disabled</s>",
GanttCheckExclude:"The object starts on holiday, do you want to move it to the right?",
GanttMinStart:"The task must start after <b>%d</b>",
GanttMaxStart:"The task must start before <b>%d</b>",
GanttMinEnd:"The task must finish after <b>%d</b>",
GanttMaxEnd:"The task must finish before <b>%d</b>",
DelGanttConstraint:"Delete %d constraint",
DelGanttConstraints:"Delete all constraints",
ChangeGanttConstraint:"Set the constraint as %d",
NewGanttConstraint:"Add %d constraint here",
MinStart:"early start",
MaxStart:"late start",
MinEnd:"early end",
MaxEnd:"late end",
ExactStart:"mandatory start",
ExactEnd:"mandatory end",
SplitGanttConstraint:"Split the %d constraint",
GanttDepLagChangeEnd:"Change lag of line from <b> %d</b>",
// 6.4
GanttExactStart:"The task must start on <b>%d</b>",
GanttExactEnd:"The task must finish on <b>%d</b>",
ExtraPrice:"Extra price",
ExtraPrices:"Extra resource units",
DelGanttPoint:"Delete the point",
DelGanttPoints:"Delete all points",
NewGanttPoint:"Add new point to selected point",
// 6.5
ErrStart:"The start date cannot be higher than end date!",
// 6.6
GanttCheckExcludeBack:"The object ends on holiday, do you want to move it to the left?",
DelGanttBase:"Delete project start",
SetGanttBase:"Set project start here",
DelGanttFinish:"Delete project finish",
SetGanttFinish:"Set project finish here",
NewGanttMilestone:"Add new milestone here",
// 7.0
ErrDateLow:"The date cannot be before <em><b>%1</b></em> due <b>%2</b> constraint",
ErrDateHigh:"The date cannot be after <em><b>%1</b></em> due <b>%2</b> constraint",
Baseline:"project start",
Finishline:"project finish",
ChartMinStart:"project minimal date",
ChartMaxEnd:"project maximal date",
NewGanttEndMilestone:"Add new ending milestone here",
ErrCorrectDep:"Not all dependencies were corrected due errors!",
DelGanttRunGroup:"Delete row group (%d boxes)",
DelGanttRunGroupAll:"Delete group (%d boxes)",
ValueChanged:"Value changed due constraints",
ErrChangeValue:"Entered value is incorrect",
CompleteChanged:"Value changed to be in range 0 - 100",
DurationChanged:"Value changed to be not negative",
EditGanttRunText:"Enter the task information",
SetGanttMilestoneIncomplete:"Set the milestone incomplete",
SetGanttMilestoneComplete:"Set the milestone complete",
ErrMoveChildren:"Cannot move the task due children constraints",
MoveChildrenChanged:"Value changed due children constraints",
NewGanttRunStop:"Add new stop here",
GanttCorrectExclude:"The object starts or ends on holiday, do you want to correct it?",
// 9.2
SplitGanttFlow:"Split the real flow bar",
// 10.0
ZoomMain:"Zoom to the bar",
ZoomRun:"Zoom to the box",
ZoomAll:"Zoom to all objects",
SplitGanttRun:"Split the box",
SplitGanttMain:"Split the bar",
DelGanttMainPart:"Delete the bar",
DelGanttMain:"Delete the task",
DelGanttMainAll:"Delete all tasks",
DelGanttMainBar:"Delete task",
DelGanttRun:"Delete all %d boxes in row",
SelectGanttRunPart:"Select the box",
UnselectGanttRunPart:"Unselect the box",
SelectGanttRun:"Select all boxes",
UnselectGanttRun:"Unselect all boxes",
DelGanttRunSelected:"Delete selected boxes (%d boxes)",
Plan0:"0",
GanttTextEdit:"Enter the task information",
EditGanttText:"Enter the task information",
GanttDepLagChange:"Change the dependency lag",
DelGanttDep:"Delete the dependency",
DisableGanttMain:"Disable the task",
EnableGanttMain:"Enable the task",
LockGanttMain:"Lock the task",
UnlockGanttMain:"Unlock the task",
DisableGanttRun:"Disable the task",
EnableGanttRun:"Enable the task",
LockGanttRun:"Lock the task",
UnlockGanttRun:"Unlock the task",
DisableGanttRunPart:"Disable the box",
EnableGanttRunPart:"Enable the box",
LockGanttRunPart:"Lock the box",
UnlockGanttRunPart:"Unlock the box",
SetGanttPercent:"Set completed status here",
ErrLag:"The lag value is incorrect!",
EmptyManual:"None",
ErrCorrectNone:"Not all dependencies can be corrected due constraints!",
ZoomHeader:"Zoom to <b>%d</b> %d - %d",
ZoomUndo:"Zoom back to <b>%d</b>",
ZoomIn:"Zoom in to <b>%d</b>",
ZoomOut:"Zoom out to <b>%d</b>",
ZoomFit:"Zoom to fit to actual space",
// 11.0
JoinGanttRunSelected:"Join selected boxes",
SplitGanttRunJoined:"Split joined boxes",
JoinGanttRunAdjacent:"Join adjacent boxes",
SplitGanttRunAdjacent:"Split joined adjacent boxes",
ChooseGanttRunType:"Change the box",
ChooseGanttRunRowType:"Change all %d boxes in row",
ChooseGanttRunSelectedType:"Change selected %d boxes",
ChooseGanttRunGroupType:"Change %d boxes in row group",
ChooseGanttRunGroupAllType:"Change %d boxes in group",
// 12.0
GanttPinchZoom:"Scale %d%",
// 13.0
DelGanttRunContainerOnly:"Delete the container",
DelGanttRunContainer:"Delete all %d boxes in container",
EnableGanttRunContainer:"Enable all %d boxes in container",
DisableGanttRunContainer:"Disable all %d boxes in container",
LockGanttRunContainer:"Lock all %d boxes in container",
ChooseGanttRunContainerType:"Change all %d boxes in container",
ChooseGanttRunContainer:"Change the container",
AddGanttRunContainer:"Add new container for the box"
},
GanttUnits : {
// 10.0
ms : "millisecond", ms10 : "10 milliseconds", ms100 : "100 milliseconds",
s : "second", s2 : "2 seconds", s5 : "5 seconds", s10 : "10 seconds", s15 : "15 seconds", s30 : "30 seconds",
m : "minute", m2 : "2 minutes", m5 : "5 minutes", m10 : "10 minutes", m15 : "15 minutes", m30 : "30 minutes",
h : "hour", h2 : "2 hours", h3 : "3 hours", h6 : "6 hours", h8 : "8 hours", h12 : "12 hours",
d : "day", w : "week", w1 : "week",
M : "month", M2 : "2 months", M3 : "year quarter", M4 : "4 months", M6 : "year half",
y : "year", y2 : "2 year", y3 : "3 years", y4 : "4 years", y5 : "5 years", y10 : "10 years", y20 : "20 years", y50 : "50 years"
},
// Popup dialog buttons, non HTML
MenuButtons : {
// 6.0
Ok:"OK",
Clear:"Clear",
Today:"Today",
All:"All on",
Cancel:"Cancel",
// 6.7
Yesterday:"Yesterday",
// 7.0
EmptyTip:"Empty date",
// 10.0
Yes:"Yes",
No:"No",
Always:"Always",
Never:"Never",
// 12.1
ShowAll:"Show all",
HideAll:"Hide all",
Reset:"Defaults",
// 13.0
Add:"Add",
Discard:"Discard",
Once:"Once"
},
// Cell menu item names (cell Menu attribute), HTML
// %1 is replaced by count of affected rows, only for mass actions
MenuCell : {
// 6.0
CopyRow : "Duplicate the row",
CopyRowBelow : "Duplicate the row",
CopyTree : "Duplicate the row tree",
CopyTreeBelow : "Duplicate the row tree",
CopyEmpty : "Add empty row tree above",
CopyEmptyBelow : "Add empty row tree below",
CopySelected : "Copy %1 selected rows above",
CopySelectedBelow : "Copy %1 selected rows below",
CopySelectedTree : "Copy %1 selected row trees above",
CopySelectedTreeBelow : "Copy %1 selected row trees below",
CopySelectedEmpty : "Add %1 selected empty row trees above",
CopySelectedEmptyBelow : "Add %1 selected empty row trees below",
CopySelectedChild : "Copy %1 selected rows as the first children",
CopySelectedTreeChild :"Copy %1 selected row trees as the first children",
CopySelectedEmptyChild : "Add %1 selected empty row trees as the first children",
CopySelectedChildEnd : "Copy %1 selected rows as the last children",
CopySelectedTreeChildEnd : "Copy %1 selected row trees as the last children",
CopySelectedEmptyChildEnd : "Add %1 selected empty row trees as the last children",
CopySelectedEnd : "Copy %1 selected rows to the end",
CopySelectedEndPage : "Copy %1 selected rows to the end of page",
CopySelectedEndGrid : "Copy %1 selected rows to the end of grid",
CopySelectedTreeEnd : "Copy %1 selected row trees to the end",
CopySelectedTreeEndPage : "Copy %1 selected row trees to the end of page",
CopySelectedTreeEndGrid : "Copy %1 selected row trees to the end of grid",
CopySelectedEmptyEnd : "Add %1 selected empty row trees to the end",
CopySelectedEmptyEndPage : "Add %1 selected empty row trees to the end of page",
CopySelectedEmptyEndGrid : "Add %1 selected empty row trees to the end of grid",
AddRow : "Add new empty row above",
AddChild : "Add new empty row as the first child",
AddChildEnd : "Add new empty row as the last child",
AddRowBelow : "Add new empty row below",
AddRowEnd : "Add new empty row to the end",
AddRowEndPage : "Add new empty row to the end of page",
AddRowEndGrid : "Add new empty row to the end of grid",
// 12.0
CopyRows : "Copy %1 focused rows above",
CopyRowsBelow : "Copy %1 focused rows below",
CopyRowsTree : "Copy %1 focused row trees above",
CopyRowsTreeBelow : "Copy %1 focused row trees below",
CopyRowsEmpty : "Add %1 empty focused row trees above",
CopyRowsEmptyBelow : "Add %1 empty focused row trees below",
AddRows : "Add %1 empty focused rows above",
AddRowsBelow : "Add %1 empty focused rows below",
AddSelected : "Add %1 empty selected rows above",
AddSelectedBelow : "Add %1 empty selected rows below",
DeleteRow:"Delete row",
UndeleteRow:"Undelete row",
RemoveRow:"Remove row",
DeleteRows:"Delete %1 focused rows",
UndeleteRows:"Undelete %1 focused rows",
RemoveRows:"Remove %1 focused rows",
DeleteSelected:"Delete %1 selected rows",
UndeleteSelected:"Undelete %1 selected rows",
RemoveSelected:"Remove %1 selected rows",
CopyCol:"Duplicate the column",
CopyColNext:"Duplicate the column",
CopyCols:"Copy %1 focused columns left",
CopyColsNext:"Copy %1 focused columns right",
CopySelectedCols:"Copy %1 selected columns left",
CopySelectedColsNext:"Copy %1 selected columns right",
AddCol:"Add new empty column left",
AddColNext:"Add new empty column right",
AddCols:"Add %1 empty focused columns left",
AddColsNext:"Add %1 empty focused columns right",
AddSelectedCols:"Add %1 empty selected columns left",
AddSelectedColsNext:"Add %1 empty selected columns right",
AddColEnd:"Add new empty column to the end",
DeleteCol:"Delete column",
UndeleteCol:"Undelete column",
RemoveCol:"Remove column",
DeleteCols:"Delete %1 focused columns",
UndeleteCols:"Undelete %1 focused columns",
RemoveCols:"Remove %1 focused columns",
DeleteSelectedCols:"Delete %1 selected columns",
UndeleteSelectedCols:"Undelete %1 selected columns",
RemoveSelectedCols:"Remove %1 selected columns",
ClearSelection:"Unselect all %1 rows and columns",
SelectRow:"Select row",
DeselectRow:"Unselect row",
SelectFocusedRows:"Select %1 focused rows",
DeselectFocusedRows:"Unselect %1 focused rows",
SelectAll:"Select all %1 rows",
DeselectAll:"Unselect all %1 rows",
InvertAll:"Invert selection of all %1 rows",
SelectCol:"Select column",
DeselectCol:"Unselect column",
SelectFocusedCols:"Select %1 focused columns",
DeselectFocusedCols:"Unselect %1 focused columns",
SelectCell:"Select cell",
DeselectCell:"Unselect cell",
SelectRowRange:"Select %1 rows in the area",
DeselectRowRange:"Unselect %1 rows in the area",
SelectColRange:"Select %1 columns in the area",
DeselectColRange:"Unselect %1 columns in the area",
SelectCellRange:"Select %1 cells in the area",
DeselectCellRange:"Unselect %1 cells in the area",
SelectColCells:"Select all %1 cells in column",
DeselectColCells:"Unselect all %1 cells in column",
SelectRowCells:"Select all %1 cells in row",
DeselectRowCells:"Unselect all %1 cells in row",
SelectAllCells:"Select all %1 cells",
DeselectAllCells:"Unselect all %1 cells",
SelectAllCols:"Select all %1 columns",
DeselectAllCols:"Unselect all %1 columns",
SpanSelected:"Span %1 selected cell ranges",
SpanCells:"Span %1 cells",
SplitSelected:"Split %1 selected spanned cells",
SplitCells:"Split spanned %1 cells",
SplitCell:"Split spanned cell",
Expand:"Expand row",
Collapse:"Collapse row",
ExpandAll:"Expand all %1 rows",
CollapseAll:"Collapse all %1 rows",
CollapseAllRoot:"Collapse all %1 root rows",
Outdent:"Outdent row",
Indent:"Indent row",
OutdentRows:"Outdent %1 rows",
IndentRows:"Indent %1 rows",
OutdentSelected:"Outdent %1 selected rows",
IndentSelected:"Indent %1 selected rows",
ExpandCell:"Expand or collapse cell",
ExpandCol:"Expand column",
CollapseCol:"Collapse column",
ExpandRow:"Expand row",
CollapseRow:"Collapse row",
ExpandAllCells:"Expand all columns",
CollapseAllCells:"Collapse all columns",
ExpandRowCells:"Expand all columns in row",
CollapseRowCells:"Collapse all columns in row",
HideRow:"Hide row",
HideRows:"Hide %1 focused rows",
HideSelectedRows:"Hide %1 selected rows",
ShowRowAbove:"Show hidden row above",
ShowRowBelow:"Show hidden row below",
ShowAllRows:"Show all %1 hidden rows",
ShowRows:"Show %1 hidden rows",
HideCol:"Hide column",
HideCols:"Hide %1 focused columns",
HideSelectedCols:"Hide %1 selected columns",
ShowColLeft:"Show hidden column on the left",
ShowColRight:"Show hidden column on the right",
ShowAllCols:"Show all %1 hidden columns",
ShowCols:"Show %1 hidden columns",
SearchOn:"Enable search",
SearchOff:"Disable search",
SortAsc:"Sort by the column ascending",
SortDesc:"Sort by the column descending",
SortAscOne:"Sort by the one column ascending",
SortDescOne:"Sort by the one column descending",
SortAscAppend:"Sort by the next column ascending",
SortDescAppend:"Sort by the next column descending",
NoSort:"Do not sort by the column",
DefaultSort:"Restore original sorting",
SortOn:"Enable sorting",
SortOff:"Disable sorting",
Undo:"Undo last action",
UndoAll:"Undo all %1 actions",
Redo:"Redo last undone action",
RedoAll:"Redo all %1 undone actions",
ClearUndo:"Clear undo buffer",
Print:"Print the grid",
ExportPDF:"Print the grid to PDF",
Export:"Export the grid to XLSX, XLS or CSV",
Repaint:"Repaint, clear unused pages",
RenderPages:"Change the paging",
PagingOn:"Enable paging, clear unused pages",
PagingOff:"Disable paging, render all pages",
ShowCfg:"Show configuration menu",
ShowColumns:"Show columns menu",
ShowDebug:"Show debug window",
Reload:"Reload grid, cancel changes",
Validate:"Check the data for errors",
Save:"Save changes to server",
GoUp:"Focus up",
GoUpEdit:"Focus up",
GoDown:"Focus down",
GoDownEdit:"Focus down",
GoDownAdd:"Focus down",
GoDownEditAdd:"Focus down",
GoLeft:"Focus left",
GoLeftEdit:"Focus left",
GoRight:"Focus right",
GoRightEdit:"Focus right",
GoFirst:"Focus first row",
GoLast:"Focus last row",
PageDown:"Go to next page",
PageUp:"Go to previous page",
PageDownFull:"Go to next page",
PageUpFull:"Go to previous page",
ShowDetail:"Show the row detail",
RefreshDetail:"Show the row detail",
ClearDetail:"Clear the detail",
ShowHintStatic:"Show full cell content",
GridResizeDefault:"Restore grid size",
GroupBy:"Group by the column",
GroupByLast:"Add the column to grouping",
UngroupBy:"Ungroup by the column",
GroupOn:"Enable grouping",
GroupOff:"Disable grouping",
Focus:"Focus cell",
FocusEdit:"Focus and edit cell",
FocusAndEdit:"Focus and edit cell",
ChangeFocus:"Focus cell",
ChangeFocusRow:"Focus row cell",
ChangeFocusCol:"Focus column cell",
Blur:"Remove focus",
BlurFocused:"Remove focus",
FocusWholeRow:"Focus all cells in row",
FocusWholeCol:"Focus all cells in column",
FocusWholeGrid:"Focus all cells in grid",
StartEdit:"Edit focused cell",
StartEditEmpty:"Edit focused cell empty",
StartEditCell:"Edit the cell",
StartEditCellEmpty:"Edit the cell empty",
CancelEdit:"Cancel editing",
AcceptEdit:"Finish editing",
ShowCalendar:"Pick up date from calendar",
ShowDates:"Pick up dates from table",
ShowLink:"Navigate to url",
Button:"Press the button",
ButtonClick:"Press the right button",
IconClick:"Press the left button",
ShowHelp:"Show help",
ShowFile:"Pick up a file",
ShowDefaults:"Show predefined items",
ShowDefaultsMenu:"Show predefined items",
ChangeBool:"Change checkbox",
CheckBool:"Check the icon",
UncheckBool:"Uncheck the icon",
ClearBool:"Clear the cell",
ChangeRadioLeft:"Cycle radio left",
ChangeRadioLeftCycle:"Cycle radio left",
ChangeRadioRight:"Cycle radio right",
ChangeRadioRightCycle:"Cycle radio right",
CheckIcon:"Check the icon",
UncheckIcon:"Uncheck the icon",
SetChecked:"Change checkbox",
ShowFilterMenu:"Show filter menu",
ShowFilterMenuRow:"Show filter menu",
FilterBy:"Filter by the cell value",
FilterByMenu:"Choose filter for the cell value",
FilterByMenuRow:"Choose filter for the cell value",
ClearFilter:"Clear filter for the column",
ClearFilters:"Clear all filters",
FilterOn:"Enable filtering",
FilterOff:"Disable filtering",
ClearCell:"Clear the cell",
ClearValue:"Clear the cell value",
ClearStyle:"Clear the cell style",
ClearCells:"Clear all %1 focused cells",
ClearValues:"Clear all focused cell values",
ClearStyles:"Clear all focused cell styles",
ClearSelectedCells:"Clear all selected cells",
ClearSelectedValues:"Clear all selected cell values",
ClearSelectedStyles:"Clear all selected cell styles",
ClearCol:"Clear the column",
ClearColValues:"Clear the column values",
ClearColStyles:"Clear the column styles",
ClearSelectedCols:"Clear %1 selected columns",
ClearSelectedColsValues:"Clear %1 selected column values",
ClearSelectedColsStyles:"Clear %1 selected column styles",
ClearRow:"Clear the row",
ClearRowValues:"Clear the row values",
ClearRowStyles:"Clear the row styles",
ClearSelectedRows:"Clear %1 selected rows",
ClearSelectedRowsValues:"Clear %1 selected row values",
ClearSelectedRowsStyles:"Clear %1 selected row styles",
ClearAll:"Clear all cells",
ClearAllValues:"Clear all cell values",
ClearAllStyles:"Clear all cell styles",
SetCellAbsolute:"Set the cell reference absolute",
SetCellRelative:"Set the cell reference relative",
SwitchCellAbsolute:"Switch cell reference",
SwitchRowColAbsolute:"Switch cell reference",
ChooseRowInsert:"Insert row reference",
ChooseRowReplace:"Replace row reference",
ChooseRowReplaceAll:"Replace row reference",
ChooseColInsert:"Insert column reference",
ChooseColReplace:"Replace column reference",
ChooseColReplaceAll:"Replace column reference",
ChooseCellInsert:"Insert cell reference",
ChooseCellReplace:"Replace cell reference",
ChooseCellReplaceAll:"Replace cell reference",
CalcOn:"Enable calculations",
CalcOff:"Disable calculations",
ClearBorder:"Clear cell border",
ClearBorderTop:"Clear cell top border",
ClearBorderBottom:"Clear cell bottom border",
ClearBorderLeft:"Clear cell left border",
ClearBorderRight:"Clear cell right border",
SetBorder:"Set cell border",
SetBorderTop:"Set cell top border",
SetBorderBottom:"Set cell bottom border",
SetBorderLeft:"Set cell left border",
SetBorderRight:"Set cell right border",
SetBorderIn:"Set cell inner border",
SetBorderInTop:"Set cell inner top border",
SetBorderInBottom:"Set cell inner bottom border",
SetBorderInLeft:"Set cell inner left border",
SetBorderInRight:"Set cell inner right border",
ClearBorders:"Clear border in %1 cells",
ClearBordersOut:"Clear outer border in %1 cells",
ClearBordersIn:"Clear inner border in %1 cells",
ClearBordersTop:"Clear top border in %1 cells",
ClearBordersBottom:"Clear bottom border in %1 cells",
ClearBordersLeft:"Clear left border in %1 cells",
ClearBordersRight:"Clear right border in %1 cells",
SetBorders:"Set border in %1 cells",
SetBordersOut:"Set outer border in %1 cells",
SetBordersOutTop:"Set outer top border in %1 cells",
SetBordersOutBottom:"Set outer bottom border in %1 cells",
SetBordersOutLeft:"Set outer left border in %1 cells",
SetBordersOutRight:"Set outer right border in %1 cells",
SetBordersIn:"Set inner border in %1 cells",
SetBordersInTop:"Set inner top border in %1 cells",
SetBordersInBottom:"Set inner bottom border in %1 cells",
SetBordersInLeft:"Set inner left border in %1 cells",
SetBordersInRight:"Set inner right border in %1 cells",
ClearSelectedBorders:"Clear border in %1 selected cells",
ClearSelectedBordersTop:"Clear top border in %1 selected cells",
ClearSelectedBordersBottom:"Clear bottom border in %1 selected cells",
ClearSelectedBordersLeft:"Clear left border in %1 selected cells",
ClearSelectedBordersRight:"Clear right border in %1 selected cells",
ClearSelectedBordersOut:"Clear outer border in %1 selected cells",
ClearSelectedBordersIn:"Clear inner border in %1 selected cells",
SetSelectedBorders:"Set border in %1 selected cells",
SetSelectedBordersOut:"Set outer border in %1 selected cells",
SetSelectedBordersOutTop:"Set outer top border in %1 selected cells",
SetSelectedBordersOutBottom:"Set outer bottom border in %1 selected cells",
SetSelectedBordersOutLeft:"Set outer left border in %1 selected cells",
SetSelectedBordersOutRight:"Set outer right border in %1 selected cells",
SetSelectedBordersIn:"Set inner border in %1 selected cells",
SetSelectedBordersInTop:"Set inner top border in %1 selected cells",
SetSelectedBordersInBottom:"Set inner bottom border in %1 selected cells",
SetSelectedBordersInLeft:"Set inner left border in %1 selected cells",
SetSelectedBordersInRight:"Set inner right border in %1 selected cells",
ChooseBorderEdge:"Choose cell border edge",
ChooseBorderEdgeItems:"%1",
ChooseBorderStyle:"Choose cell border style",
ChooseBorderStyleItems:"%1",
ChooseBorderColor:"Choose cell border color",
ChooseBorderColorItems:"<span style='background:%2;padding-left:15px;margin-right:5px;border-radius:50px;line-height:12px;font-size:12px;'></span>%1",
ChooseBorder:"Choose cell border",
ChooseBordersEdge:"Choose border edge in %1 cells",
ChooseBordersStyle:"Choose border style in %1 cells",
ChooseBordersColor:"Choose border color in %1 cells",
ChooseBorders:"Choose border in %1 cells",
ChooseSelectedBordersEdge:"Choose border edge in %1 selected cells",
ChooseSelectedBordersStyle:"Choose border style in %1 selected cells",
ChooseSelectedBordersColor:"Choose border color in %1 selected cells",
ChooseSelectedBorders:"Choose border in %1 selected cells",
RotateLeft:"Rotate cell left",
RotateRight:"Rotate cell right",
NoRotate:"Clear cell rotation",
VAlignTop:"Align cell value top",
VAlignBottom:"Align cell value bottom",
VAlignMiddle:"Center cell value vertically",
NoVAlign:"Clear cell vertical alignment",
AlignLeft:"Align cell value left",
AlignRight:"Align cell value right",
AlignCenter:"Center cell value horizontally",
NoAlign:"Clear cell horizontal alignment",
WrapOn:"Wrap cell value",
WrapOff:"Do not wrap cell value",
NoWrap:"Use default cell wrapping",
NoTextStyle:"Use cell default text style",
BoldOn:"Use bold font in cell",
BoldOff:"Do not use bold font in cell",
ItalicOn:"Use italic font in cell",
ItalicOff:"Do not use italic font in cell",
UnderlineOn:"Underline cell text",
UnderlineOff:"Do not underline cell text",
StrikeOn:"Strike cell text",
StrikeOff:"Do not strike cell text",
OverlineOn:"Overline cell text",
OverlineOff:"Do not overline cell text",
SmallCapsOn:"Use small caps in cell",
SmallCapsOff:"Do not use small caps in cell",
SetTextColor:"Set cell text color",
NoTextColor:"Clear cell text color",
ChooseTextColor:"Choose cell text color",
ChooseTextColorItems:"<span style='background:%2;padding-left:15px;margin-right:5px;border-radius:50px;line-height:12px;font-size:12px;'></span>%1",
SetColor:"Set cell background color",
NoColor:"Clear cell background color",
ChooseColor:"Choose cell background color",
ChooseColorItems:"<span style='background:%2;padding-left:15px;margin-right:5px;border-radius:50px;line-height:12px;font-size:12px;'></span>%1",
SetTextSize:"Set cell font size",
NoTextSize:"Set default cell font size",
ChooseTextSize:"Choose cell font size",
ChooseTextSizeItems:"%1",
SetTextFont:"Set cell font name",
NoTextFont:"Set default cell font name",
ChooseTextFont:"Choose cell font name",
ChooseTextFontItems:"%1",
SetTextShadowColor:"Set cell text shadow color",
NoTextShadowColor:"Clear cell text shadow color",
ChooseTextShadowColor:"Choose cell text shadow color",
ChooseTextShadowColorItems:"<span style='background:%2;padding-left:15px;margin-right:5px;border-radius:50px;line-height:12px;font-size:12px;'></span>%1",
SetTextShadow:"Set cell text shadow",
NoTextShadow:"Clear cell text shadow",
ChooseTextShadow:"Choose cell text shadow",
ChooseTextShadowItems:"%1",
RotateLeftCells:"Rotate %1 cells left",
RotateRightCells:"Rotate %1 cells right",
NoRotateCells:"Clear rotation in %1 cells",
VAlignTopCells:"Align value top in %1 cells",
VAlignBottomCells:"Align value bottom in %1 cells",
VAlignMiddleCells:"Center value vertically in %1 cells",
NoVAlignCells:"Clear vertical alignment in %1 cells",
AlignLeftCells:"Align value left in %1 cells",
AlignRightCells:"Align value right in %1 cells",
AlignCenterCells:"Center value horizontally in %1 cells",
NoAlignCells:"Clear horizontal alignment in %1 cells",
WrapOnCells:"Wrap value in %1 cells",
WrapOffCells:"Do not wrap value in %1 cells",
NoWrapCells:"Use default wrapping in %1 cells",
NoTextStyleCells:"Use default text style in %1 cells",
BoldOnCells:"Use bold font in %1 cells",
BoldOffCells:"Do not use bold font in %1 cells",
ItalicOnCells:"Use italic font in %1 cells",
ItalicOffCells:"Do not use italic font in %1 cells",
UnderlineOnCells:"Underline text in %1 cells",
UnderlineOffCells:"Do not underline text in %1 cells",
StrikeOnCells:"Strike text in %1 cells",
StrikeOffCells:"Do not strike text in %1 cells",
OverlineOnCells:"Overline text in %1 cells",
OverlineOffCells:"Do not overline text in %1 cells",
SmallCapsOnCells:"Use small caps in %1 cells",
SmallCapsOffCells:"Do not use small caps in %1 cells",
SetTextColorCells:"Set text color in %1 cells",
NoTextColorCells:"Clear text color in %1 cells",
ChooseTextColorCells:"Choose text color in %1 cells",
ChooseTextColorItemsCells:"%1",
SetColorCells:"Set background color in %1 cells",
NoColorCells:"Clear background color in %1 cells",
ChooseColorCells:"Choose background color in %1 cells",
ChooseColorItemsCells:"%1",
SetTextSizeCells:"Set font size in %1 cells",
NoTextSizeCells:"Set default font size in %1 cells",
ChooseTextSizeCells:"Choose font size in %1 cells",
ChooseTextSizeItemsCells:"%1",
SetTextFontCells:"Set font name in %1 cells",
NoTextFontCells:"Set default font name in %1 cells",
ChooseTextFontCells:"Choose font name in %1 cells",
ChooseTextFontItemsCells:"%1",
SetTextShadowColorCells:"Set text shadow color in %1 cells",
NoTextShadowColorCells:"Clear text shadow color in %1 cells",
ChooseTextShadowColorCells:"Choose text shadow color in %1 cells",
ChooseTextShadowColorItemsCells:"%1",
SetTextShadowCells:"Set text shadow in %1 cells",
NoTextShadowCells:"Clear text shadow in %1 cells",
ChooseTextShadowCells:"Choose text shadow in %1 cells",
ChooseTextShadowItemsCells:"%1",
RotateLeftSelected:"Rotate %1 selected cells left",
RotateRightSelected:"Rotate %1 selected cells right",
NoRotateSelected:"Clear rotation in %1 selected cells",
VAlignTopSelected:"Align value top in %1 selected cells",
VAlignBottomSelected:"Align value bottom in %1 selected cells",
VAlignMiddleSelected:"Center value vertically in %1 selected cells",
NoVAlignSelected:"Clear vertical alignment in %1 selected cells",
AlignLeftSelected:"Align value left in %1 selected cells",
AlignRightSelected:"Align value right in %1 selected cells",
AlignCenterSelected:"Center value horizontally in %1 selected cells",
NoAlignSelected:"Clear horizontal alignment in %1 selected cells",
WrapOnSelected:"Wrap value in %1 selected cells",
WrapOffSelected:"Do not wrap value in %1 selected cells",
NoWrapSelected:"Use default wrapping in %1 selected cells",
NoTextStyleSelected:"Use default text style in %1 selected cells",
BoldOnSelected:"Use bold font in %1 selected cells",
BoldOffSelected:"Do not use bold font in %1 selected cells",
ItalicOnSelected:"Use italic font in %1 selected cells",
ItalicOffSelected:"Do not use italic font in %1 selected cells",
UnderlineOnSelected:"Underline text in %1 selected cells",
UnderlineOffSelected:"Do not underline text in %1 selected cells",
StrikeOnSelected:"Strike text in %1 selected cells",
StrikeOffSelected:"Do not strike text in %1 selected cells",
OverlineOnSelected:"Overline text in %1 selected cells",
OverlineOffSelected:"Do not overline text in %1 selected cells",
SmallCapsOnSelected:"Use small caps in %1 selected cells",
SmallCapsOffSelected:"Do not use small caps in %1 selected cells",
SetTextColorSelected:"Set text color in %1 selected cells",
NoTextColorSelected:"Clear text color in %1 selected cells",
ChooseTextColorSelected:"Choose text color in %1 selected cells",
ChooseTextColorItemsSelected:"%1",
SetColorSelected:"Set background color in %1 selected cells",
NoColorSelected:"Clear background color in %1 selected cells",