-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClientLibrary.en-US.txt
1055 lines (532 loc) · 24.4 KB
/
ClientLibrary.en-US.txt
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
***********************************************************************************
This file is not required to execute your application and does not have to be
deployed to production server.
Code On Time generator uses this file to maintain AJAX Client Library resource
strings. Replace the text between localization brackets as needed and
re-generate your application. Refresh the browser cache to ensure that the latest
client library resource scripts are being used when application starts.
Help us to improve the client library resources. We ask you to kindly contribute
localized resource files to Code On Time community.
Simply send the resource files as attachments to [email protected] and
we will include your resource file(s) in the general distribution of the code
generation library.
************************************************************************************
^About^About^About^
^Accent^Accent^Accent^
^ActionBarActionsHeaderText^Actions^ActionBarActionsHeaderText^
^ActionBarCancelActionHeaderText^Cancel^ActionBarCancelActionHeaderText^
^ActionBarCancelWhenEditActionDescription^Cancel all record changes.^ActionBarCancelWhenEditActionDescription^
^ActionBarCancelWhenNewActionDescription^Cancel new record.^ActionBarCancelWhenNewActionDescription^
^ActionBarInsertActionDescription^Save new record to the database.^ActionBarInsertActionDescription^
^ActionBarInsertActionHeaderText^Save^ActionBarInsertActionHeaderText^
^ActionBarNewHeaderDescription^Create a new {0} record.^ActionBarNewHeaderDescription^
^ActionBarNewHeaderText^New {0}^ActionBarNewHeaderText^
^ActionBarNewHeaderText2^New^ActionBarNewHeaderText2^
^ActionBarRecordHeaderText^Record^ActionBarRecordHeaderText^
^ActionBarReportHeaderText^Report^ActionBarReportHeaderText^
^ActionBarUpdateActionDescription^Save changes to the database.^ActionBarUpdateActionDescription^
^ActionBarUpdateActionHeaderText^Save^ActionBarUpdateActionHeaderText^
^AddAccount^Add Account^AddAccount^
^AddCondition^Add Condition^AddCondition^
^AddConditionText^Add search condition^AddConditionText^
^AddItem^Add Item^AddItem^
^AddMatchingGroup^Add matching group^AddMatchingGroup^
^AddSearchBarField^More Search Fields^AddSearchBarField^
^AddSystemIdentity^Add System Identity^AddSystemIdentity^
^AddToFavorites^Add to Favorites^AddToFavorites^
^AdvancedSearch^Advanced Search^AdvancedSearch^
^AdvancedSearchInstruction^Enter conditions that must be matched and press search button.^AdvancedSearchInstruction^
^After^After^After^
^Agenda^Agenda^Agenda^
^AllDatesInPreriod^All Dates in Period^AllDatesInPreriod^
^AlternativeView^Select an alternative view of data.^AlternativeView^
^Always^Always^Always^
^Apply^Apply^Apply^
^Apps^Apps^Apps^
^Aquarium^Aquarium^Aquarium^
^Auto^Auto^Auto^
^AverageOf^Average of^AverageOf^
^AvgAggregate^Avg: {0}^AvgAggregate^
^AvgAggregateToolTip^Average of {0}^AvgAggregateToolTip^
^Azure^Azure^Azure^
^Back^Back^Back^
^BackColor^Back Color^BackColor^
^BatchEditActionHeaderText^Batch Edit^BatchEditActionHeaderText^
^BatchEditInFormActionHeaderText^Batch Edit (Form)^BatchEditInFormActionHeaderText^
^BatchUpdate^update^BatchUpdate^
^Before^Before^Before^
^BeginsWith^Begins With^BeginsWith^
^Belltown^Belltown^Belltown^
^Berry^Berry^Berry^
^Between^Between^Between^
^Bittersweet^Bittersweet^Bittersweet^
^Blank^Blank^Blank^
^BlankPassword^Password cannot be blank.^BlankPassword^
^BlankUserName^User name cannot be blank.^BlankUserName^
^BlankValue^(Blank)^BlankValue^
^BlobDownloadHint^Click here to download the original file.^BlobDownloadHint^
^BlobDownloadLink^download^BlobDownloadLink^
^Bold^Bold^Bold^
^BooleanFilterText^Logical Filters^BooleanFilterText^
^BooleanIsExpected^A logical value is expected.^BooleanIsExpected^
^ButtonShapes^Button Shapes^ButtonShapes^
^By^by^By^
^Calendar^Calendar^Calendar^
^Cancel^Cancel^Cancel^
^Cards^Cards^Cards^
^Cay^Cay^Cay^
^ChangeYourLanguage^Change your language^ChangeYourLanguage^
^Charts^Charts^Charts^
^Citrus^Citrus^Citrus^
^Classic^Classic^Classic^
^ClearFilter^Clear Filter from {0}^ClearFilter^
^ClearFilter2^Clear Filter^ClearFilter2^
^ClearText^Clear^ClearText^
^ClearToolTip^Clear {0}^ClearToolTip^
^Close^Close^Close^
^Comfortable^Comfortable^Comfortable^
^Compact^Compact^Compact^
^Condensed^Condensed^Condensed^
^ConfirmContinue^Continue?^ConfirmContinue^
^ConfirmReload^Reload?^ConfirmReload^
^ConnectionLost^The network connection has been lost. Try again?^ConnectionLost^
^Construct^Construct^Construct^
^Contains^Contains^Contains^
^Convention^Convention^Convention^
^Copy^Copy^Copy^
^CountAggregate^Count: {0}^CountAggregate^
^CountAggregateToolTip^Count of {0}^CountAggregateToolTip^
^CountOf^Count of^CountOf^
^CreateLink^Create Link^CreateLink^
^CustomFilterOption^Filter...^CustomFilterOption^
^Cut^Cut^Cut^
^DarkKnight^Dark Knight^DarkKnight^
^DarkTheme^Dark^DarkTheme^
^DataSheetActionDescription^Display items using a data sheet<br/>format.^DataSheetActionDescription^
^DataSheetActionHeaderText^Show in Data Sheet^DataSheetActionHeaderText^
^DataWarning^The maximum number of items to process is {0:d}. Please apply a filter to reduce the number of items.^DataWarning^
^Date^Date^Date^
^DateFilterText^Date Filters^DateFilterText^
^DateIsExpected^A date is expected.^DateIsExpected^
^DatesAMinAgo^a minute ago^DatesAMinAgo^
^DatesInAMin^in a minute^DatesInAMin^
^DatesInHour^in an hour^DatesInHour^
^DatesInMin^in {0} min^DatesInMin^
^DatesLast^Last^DatesLast^
^DatesMinAgo^{0} min ago^DatesMinAgo^
^DatesNext^Next^DatesNext^
^DatesNow^Now^DatesNow^
^DatesOneHour^an hour ago^DatesOneHour^
^DateSortAscending^Earliest on Top^DateSortAscending^
^DateSortDescending^Latest on Top^DateSortDescending^
^DatesSmart^Smart Dates^DatesSmart^
^DatesToday^Today^DatesToday^
^DatesTomorrow^Tomorrow^DatesTomorrow^
^DatesYesterday^Yesterday^DatesYesterday^
^Day^Day^Day^
^DefaultCancelActionHeaderText^Close^DefaultCancelActionHeaderText^
^DefaultCreateViewDescription^Please fill this form and press Save button to create a new {0} record. Press Cancel to return to the previous screen.^DefaultCreateViewDescription^
^DefaultEditDescription^These are the fields of the {0} record that can be edited.^DefaultEditDescription^
^DefaultEditViewDescription^Please review {0} information below. Press Edit to change this record, press Delete to delete the record, or press Cancel/Close to return back.^DefaultEditViewDescription^
^DefaultGridViewDescription^This is a list of {0}.^DefaultGridViewDescription^
^DefaultNewDescription^Complete the form. Make sure to enter all required fields.^DefaultNewDescription^
^DefaultOption^Default^DefaultOption^
^DefaultReferenceDescription^Additional details about {0} are provided in the reference information section.^DefaultReferenceDescription^
^Delete^Delete^Delete^
^DeleteActionConfirmation^Delete?^DeleteActionConfirmation^
^DeleteActionHeaderText^Delete^DeleteActionHeaderText^
^DeleteSearchBarField^(delete)^DeleteSearchBarField^
^DetailsToolTip^View details for {0}^DetailsToolTip^
^DevelopExplorer^Project Explorer^DevelopExplorer^
^DevelopFormLayout^Form Layout^DevelopFormLayout^
^DevelopFormLayoutInstr^Select screen sizes to be included in the layout.^DevelopFormLayoutInstr^
^DevelopTools^Developer Tools^DevelopTools^
^DidNotMatch^Did not match^DidNotMatch^
^Directions^Directions^Directions^
^DiscardChanges^Discard changes?^DiscardChanges^
^DisplayDensity^Display Density^DisplayDensity^
^DisplayedAbove^Displayed Above^DisplayedAbove^
^DisplayedBelow^Displayed Below^DisplayedBelow^
^DoesNotBeginWith^Does Not Begin With^DoesNotBeginWith^
^DoesNotContain^Does Not Contain^DoesNotContain^
^DoesNotEndWith^Does Not End With^DoesNotEndWith^
^DoesNotEqual^Does Not Equal^DoesNotEqual^
^DoesNotInclude^Does Not Include^DoesNotInclude^
^DoNotMatchAll^Do not match all conditions^DoNotMatchAll^
^DoNotMatchAllPastTense^Did not match all conditions^DoNotMatchAllPastTense^
^DoNotMatchAny^Do not match any conditions^DoNotMatchAny^
^DoNotMatchAnyPastTense^Did not match any conditions^DoNotMatchAnyPastTense^
^Download^Download^Download^
^DuplicateActionHeaderText^Duplicate^DuplicateActionHeaderText^
^EditActionHeaderText^Edit^EditActionHeaderText^
^EditModeCancelActionHeaderText^Cancel^EditModeCancelActionHeaderText^
^Empty^Empty^Empty^
^EmptyContext^Actions are not available.^EmptyContext^
^EmptyValue^(Empty)^EmptyValue^
^EndsWith^Ends With^EndsWith^
^Equals^Equals^Equals^
^Error^Error^Error^
^ExitFullscreen^Exit Fullscreen^ExitFullscreen^
^ExportCsvActionDescription^Download items in CSV format.^ExportCsvActionDescription^
^ExportCsvActionHeaderText^Download^ExportCsvActionHeaderText^
^ExportRowsetActionDescription^Analyze items with spreadsheet<br/>application.^ExportRowsetActionDescription^
^ExportRowsetActionHeaderText^Export to Spreadsheet^ExportRowsetActionHeaderText^
^ExportRssActionDescription^Syndicate items with an RSS reader.^ExportRssActionDescription^
^ExportRssActionHeaderText^View RSS Feed^ExportRssActionHeaderText^
^Favorites^Favorites^Favorites^
^Felt^Felt^Felt^
^FilesBytes^bytes^FilesBytes^
^FilesClear^Clear^FilesClear^
^FilesClearConfirm^Clear?^FilesClearConfirm^
^FilesClick^Click to select a file^FilesClick^
^FilesClickMany^Click to select files^FilesClickMany^
^FilesDrop^Drop a file here^FilesDrop^
^FilesDropMany^Drop files here^FilesDropMany^
^FilesKB^KB^FilesKB^
^FilesMB^KB^FilesMB^
^FilesTap^Tap to select a file^FilesTap^
^FilesTapMany^Tap to select files^FilesTapMany^
^Filter^Filter^Filter^
^FilterApplied^A filter has been applied.^FilterApplied^
^FilterByField^Select a field to apply a filter to <b>{0}</b>.^FilterByField^
^FilterByOptions^Select one or more options in the list below and press <b>{2}</b> to filter <b>{0}</b> by the field <b>{1}</b>.^FilterByOptions^
^FilterLabelAnd^and^FilterLabelAnd^
^FilterLabelClear^Clear^FilterLabelClear^
^FilterLabelEquals^equals^FilterLabelEquals^
^FilterLabelFilterToolTip^Change^FilterLabelFilterToolTip^
^FilterLabelIncludes^includes^FilterLabelIncludes^
^FilterLabelOr^or^FilterLabelOr^
^FilterLabelSelectAll^(Select All)^FilterLabelSelectAll^
^FilterSiteMap^Filter site map...^FilterSiteMap^
^Finish^Finish^Finish^
^FitToWidth^Fit To Width^FitToWidth^
^FlatTreeToggle^Switch to Hierarchy^FlatTreeToggle^
^FontName^Font Name^FontName^
^FontSize^Font Size^FontSize^
^ForeColor^Fore Color^ForeColor^
^Forget^Forget^Forget^
^ForgotYourPassword^Forgot your password?^ForgotYourPassword^
^Freeze^Freeze^Freeze^
^Fullscreen^Fullscreen^Fullscreen^
^Future^Future^Future^
^GeneralTabText^General^GeneralTabText^
^GenericNewToolTip^Create New^GenericNewToolTip^
^GenericSortAscending^Smallest on Top^GenericSortAscending^
^GenericSortDescending^Largest on Top^GenericSortDescending^
^Graham^Graham^Graham^
^GrandTotals^Grand Totals^GrandTotals^
^Granite^Granite^Granite^
^Grapello^Grapello^Grapello^
^Gravity^Gravity^Gravity^
^GreaterThan^Greater Than^GreaterThan^
^GreateThanOrEqual^Greater Than Or Equal^GreateThanOrEqual^
^Grid^Grid^Grid^
^GridActionDescription^Display items in the standard<br/>list format.^GridActionDescription^
^GridActionHeaderText^Show in Standard View^GridActionHeaderText^
^Group^Group^Group^
^GroupByField^Select a field to group <b>{0}</b>.^GroupByField^
^GroupedBy^Grouped by^GroupedBy^
^Help^Help^Help^
^HelpClose^Close^HelpClose^
^HelpFullScreen^Full Screen^HelpFullScreen^
^Hide^Hide^Hide^
^HideAdvancedSearch^Hide Advanced Search^HideAdvancedSearch^
^HierarchyTreeModeToggle^Switch to Flat List^HierarchyTreeModeToggle^
^History^History^History^
^HistoryToolTip^View history of previously selected records^HistoryToolTip^
^HistoryUnavailable^History is not available.^HistoryUnavailable^
^Home^Home^Home^
^IdleUser^Are you still there? Please login again.^IdleUser^
^ImportActionDescription^Upload a CSV, XLS, or XLSX file<br/>to import records.^ImportActionDescription^
^ImportActionHeaderText^Import From File^ImportActionHeaderText^
^ImportAutoDetect^(auto detect)^ImportAutoDetect^
^ImportComplete^complete^ImportComplete^
^ImportDone^Completed importing^ImportDone^
^ImportDownloadTemplate^Download import file template.^ImportDownloadTemplate^
^ImportDuplicates^Duplicates^ImportDuplicates^
^ImportEmail^Send the import log to the following email addresses (optional)^ImportEmail^
^ImportEmailNotSpecified^Recipient of the import log has not been specified. Proceed anyway?^ImportEmailNotSpecified^
^ImportExpected^Expected to complete^ImportExpected^
^ImportFileStats^There are <b>{0}</b> records in the file <b>{1}</b> ready to be processed. Please match the field names.^ImportFileStats^
^Importing^Importing^Importing^
^ImportMappingInstruction^There are <b>{0}</b> record(s) in the file <b>{1}</b> ready to be processed.<br/>Please map the import fields from data file to the application fields and click <i>Import</i> to start processing.^ImportMappingInstruction^
^ImportNotSupported^Data format of "{0}" is not supported.^ImportNotSupported^
^ImportProcessing^Import file processing has been initiated. The imported data records will become available upon successful processing. You may need to refresh the relevant views/pages to see the imported records.^ImportProcessing^
^ImportRemaining^Expected to complete^ImportRemaining^
^ImportSelectFile^Select a data file in CSV, XLS, or XLSX format.^ImportSelectFile^
^ImportStartButton^Import^ImportStartButton^
^ImportUploading^Your file is being uploaded to the server. Please wait...^ImportUploading^
^ImportUploadInstruction^Please select the file to upload. The file must be in <b>CSV</b>, <b>XLS</b>, or <b>XLSX</b> format.^ImportUploadInstruction^
^In^in^In^
^Includes^Includes^Includes^
^Indent^Indent^Indent^
^InfoBarAnd^and^InfoBarAnd^
^InfoBarEmpty^empty^InfoBarEmpty^
^InfoBarEqualTo^is equal to^InfoBarEqualTo^
^InfoBarGreaterThan^is greater than^InfoBarGreaterThan^
^InfoBarGreaterThanOrEqual^is greater than or equal to^InfoBarGreaterThanOrEqual^
^InfoBarLessThan^is less than^InfoBarLessThan^
^InfoBarLessThanOrEqual^is less than or equal to^InfoBarLessThanOrEqual^
^InfoBarLike^is like^InfoBarLike^
^InfoBarOr^or^InfoBarOr^
^InfoBarQuickFind^Any field contains^InfoBarQuickFind^
^InfoBarStartsWith^starts with^InfoBarStartsWith^
^InitialListMode^Initial List Mode^InitialListMode^
^InsertActionHeaderText^OK^InsertActionHeaderText^
^InsertHorizontalRule^Insert Horizontal Rule^InsertHorizontalRule^
^InsertingRecords^Inserting records^InsertingRecords^
^InsertOrderedList^Insert Ordered List^InsertOrderedList^
^InsertUnorderedList^Insert Unordered List^InsertUnorderedList^
^Into^into^Into^
^InvalidUserNameAndPassword^Your user name and password are not valid.^InvalidUserNameAndPassword^
^Italic^Italic^Italic^
^ItemsPerPage^Items per page: ^ItemsPerPage^
^ItemsSelectedMany^{0} items selected^ItemsSelectedMany^
^ItemsSelectedOne^{0} item selected^ItemsSelectedOne^
^JustDatesNow^Just now^JustDatesNow^
^JustifyCenter^Justify Center^JustifyCenter^
^JustifyFull^Justify Full^JustifyFull^
^JustifyLeft^Justify Left^JustifyLeft^
^JustifyRight^Justify Right^JustifyRight^
^LabelsInList^Labels In List^LabelsInList^
^Lacquer^Lacquer^Lacquer^
^Laminate^Laminate^Laminate^
^Landscape^Landscape^Landscape^
^Large^Large^Large^
^LastMonth^Last Month^LastMonth^
^LastQuarter^Last Quarter^LastQuarter^
^LastWeek^Last Week^LastWeek^
^LastYear^Last Year^LastYear^
^Less^Less^Less^
^LessThan^Less Than^LessThan^
^LessThanOrEqual^Less Than Or Equal^LessThanOrEqual^
^Lichen^Lichen^Lichen^
^LightTheme^Light^LightTheme^
^Line^Line^Line^
^ListViewStyle^List^ListViewStyle^
^Loading^Loading...^Loading^
^Logical^Logical^Logical^
^LoginButton^Login^LoginButton^
^LoginLink^Login^LoginLink^
^Logout^Logout^Logout^
^LookupInstruction^Please select <b>{0}</b> in the list. ^LookupInstruction^
^LookupOriginalSelection^The original selection is <b>"{0}"</b>. ^LookupOriginalSelection^
^ManageAccounts^Manage Accounts^ManageAccounts^
^Map^Map^Map^
^MatchAll^Match all conditions^MatchAll^
^MatchAllPastTense^Matched all conditions^MatchAllPastTense^
^MatchAny^Match any conditions^MatchAny^
^MatchAnyPastTense^Matched any conditions^MatchAnyPastTense^
^Matched^Matched^Matched^
^MaxAggregate^Max: {0}^MaxAggregate^
^MaxAggregateToolTip^Maximum of {0}^MaxAggregateToolTip^
^Maximize^Expand^Maximize^
^MaximumOf^Maximum of^MaximumOf^
^Medium^Medium^Medium^
^Menu^Menu^Menu^
^MinAggregate^Min: {0}^MinAggregate^
^MinAggregateToolTip^Minimum of {0}^MinAggregateToolTip^
^Minimize^Collapse^Minimize^
^MinimumOf^Minimum of^MinimumOf^
^Mission^Mission^Mission^
^Modern^Modern^Modern^
^ModernRose^Modern Rose^ModernRose^
^Month^Month^Month^
^More^More^More^
^MultiSelection^Multi Selection^MultiSelection^
^Municipal^Municipal^Municipal^
^MyAccount^My Account^MyAccount^
^Never^Never^Never^
^NewActionHeaderText^New^NewActionHeaderText^
^NewRowLink^Click here to create a new record.^NewRowLink^
^NewToolTip^New {0}^NewToolTip^
^Next^Next^Next^
^Next2^Next^Next2^
^NextMonth^Next Month^NextMonth^
^NextQuarter^Next Quarter^NextQuarter^
^NextWeek^Next Week^NextWeek^
^NextYear^Next Year^NextYear^
^No^No^No^
^NoMatches^No matches.^NoMatches^
^None^None^None^
^Noon^Noon^Noon^
^NoRecords^No records found.^NoRecords^
^NoteDeleteConfirm^Delete?^NoteDeleteConfirm^
^NoteDeleteLabel^delete^NoteDeleteLabel^
^NoteEditLabel^edit^NoteEditLabel^
^NotEmpty^Not Empty^NotEmpty^
^NotMatched^(not matched)^NotMatched^
^NullValue^n/a^NullValue^
^NullValueInForms^N/A^NullValueInForms^
^Number^Number^Number^
^NumberFilterText^Number Filters^NumberFilterText^
^NumberIsExpected^A number is expected.^NumberIsExpected^
^OK^OK^OK^
^OnHover^On Hover^OnHover^
^OnOrAfter^On or After^OnOrAfter^
^OnOrBefore^On or Before^OnOrBefore^
^OpenActionHeaderText^Open^OpenActionHeaderText^
^Optional^Optional^Optional^
^Other^Other^Other^
^Outdent^Outdent^Outdent^
^Page^Page^Page^
^Password^Password^Password^
^Past^Past^Past^
^Paste^Paste^Paste^
^PerformAdvancedSearch^Search^PerformAdvancedSearch^
^Permalink^Permalink^Permalink^
^PermalinkToolTip^Create a permanent link for selected record^PermalinkToolTip^
^PermalinkUnavailable^Permalink is not available. Please select a record.^PermalinkUnavailable^
^Petal^Petal^Petal^
^Pinnate^Pinnate^Pinnate^
^Plastic^Plastic^Plastic^
^Portrait^Portrait^Portrait^
^PresentationStyle^Select a data presentation style.^PresentationStyle^
^Prev2^Prev^Prev2^
^Previous^Previous^Previous^
^PromoteActions^Promote Actions^PromoteActions^
^Quarter^Quarter^Quarter^
^Quarter1^Quarter 1^Quarter1^
^Quarter2^Quarter 2^Quarter2^
^Quarter3^Quarter 3^Quarter3^
^Quarter4^Quarter 4^Quarter4^
^QuickFindScope^Search in...^QuickFindScope^
^QuickFindText^Quick Find^QuickFindText^
^QuickFindToolTip^Type to search the records and press Enter^QuickFindToolTip^
^Recent^Recent^Recent^
^Redo^Redo^Redo^
^Refresh^Refresh^Refresh^
^RememberMe^Remember me next time^RememberMe^
^RemoveCondition^Remove Condition^RemoveCondition^
^RemoveFormat^Remove Format^RemoveFormat^
^ReportActionDescription^Render a report in PDF format^ReportActionDescription^
^ReportActionHeaderText^Report^ReportActionHeaderText^
^ReportAsExcelActionDescription^View items in a formatted<br/>Microsoft Excel spreadsheet.^ReportAsExcelActionDescription^
^ReportAsExcelActionHeaderText^Spreadsheet^ReportAsExcelActionHeaderText^
^ReportAsImageActionDescription^View items as a multipage TIFF image.^ReportAsImageActionDescription^
^ReportAsImageActionHeaderText^Multipage Image^ReportAsImageActionHeaderText^
^ReportAsPdfActionDescription^View items as Adobe PDF document.<br/>Requires a compatible reader.^ReportAsPdfActionDescription^
^ReportAsPdfActionHeaderText^PDF Document^ReportAsPdfActionHeaderText^
^ReportAsWordActionDescription^View items in a formatted<br/>Microsoft Word document.^ReportAsWordActionDescription^
^ReportAsWordActionHeaderText^Microsoft Word^ReportAsWordActionHeaderText^
^Required^Required^Required^
^RequiredField^This field is required.^RequiredField^
^RequiredFiledMarkerFootNote^indicates a required field^RequiredFiledMarkerFootNote^
^ResetAdvancedSearch^Reset^ResetAdvancedSearch^
^ResolvingReferences^Resolving references^ResolvingReferences^
^ResumeBrowsing^Resume Browsing^ResumeBrowsing^
^ResumeEditing^Resume Editing^ResumeEditing^
^ResumeEntering^Resume Entering^ResumeEntering^
^ResumeLookup^Resume Lookup^ResumeLookup^
^ResumeViewing^Resume Viewing^ResumeViewing^
^Ricasso^Ricasso^Ricasso^
^RolesTab^Roles^RolesTab^
^RootNodeText^Top Level^RootNodeText^
^Rotate^Rotate^Rotate^
^RowCancelActionHeaderText^Cancel^RowCancelActionHeaderText^
^RowInsertActionHeaderText^Insert^RowInsertActionHeaderText^
^RowUpdateActionHeaderText^Save^RowUpdateActionHeaderText^
^RowUpdateWhenBatchEditActionConfirmation^Update?^RowUpdateWhenBatchEditActionConfirmation^
^RowUpdateWhenBatchEditActionHeaderText^Update Selection^RowUpdateWhenBatchEditActionHeaderText^
^Save^Save^Save^
^SaveAndNew^Save and New^SaveAndNew^
^SeeAll^See All^SeeAll^
^SeeAlso^See Also^SeeAlso^
^SelectActionHeaderText^Select^SelectActionHeaderText^
^SelectAll^Select All^SelectAll^
^SelectLink^(select)^SelectLink^
^SelectToolTip^Select {0}^SelectToolTip^
^Separator^Separator^Separator^
^Settings^Settings^Settings^
^Show^Show^Show^
^ShowAdvancedSearch^Show Advanced Search^ShowAdvancedSearch^
^ShowChart^Show Chart^ShowChart^
^ShowData^Show Data^ShowData^
^ShowingItems^Showing <b>{0}</b>-<b>{1}</b> of <b>{2}</b> items^ShowingItems^
^ShowingItemsInfo^Showing {0} items.^ShowingItemsInfo^
^ShowingItemsRange^Showing {0} of {1} items^ShowingItemsRange^
^ShowOptions^Show Options^ShowOptions^
^ShowSystemButtons^Show System Buttons^ShowSystemButtons^
^Sidebar^Sidebar^Sidebar^
^Sign^Sign here^Sign^
^SignedOut^Signed Out^SignedOut^
^SignUpNow^Sign up now^SignUpNow^
^Simple^Simple^Simple^
^SiteActions^Site Actions^SiteActions^
^SizeLabel^Size^SizeLabel^
^Small^Small^Small^
^Social^Social^Social^
^Sort^Sort^Sort^
^SortBy^Sort by {0}^SortBy^
^SortByField^Select a field to change the sort order of <b>{0}</b>.^SortByField^
^SortByOptions^Select the sort order of <b>{0}</b> by the field <b>{1}</b> in the list of options below.^SortByOptions^
^StartImport^Start Import^StartImport^
^StrikeThrough^Strike Through^StrikeThrough^
^StringSortAscending^Ascending^StringSortAscending^
^StringSortDescending^Descending^StringSortDescending^
^Submit^Submit^Submit^
^Subscript^Sub Script^Subscript^
^Suggestions^Suggestions^Suggestions^
^SumAggregate^Total: {0}^SumAggregate^
^SumAggregateToolTip^Total of {0}^SumAggregateToolTip^
^Summary^Summary^Summary^
^Summer^Summer^Summer^
^SumOf^Total of^SumOf^
^Superscript^Super Script^Superscript^
^Sync^Sync^Sync^
^Tasks^Tasks^Tasks^
^TestingRecords^Testing records^TestingRecords^
^Text^Text^Text^
^TextFilterText^Text Filters^TextFilterText^
^Theme^Theme^Theme^
^ThisMonth^This Month^ThisMonth^
^ThisQuarter^This Quarter^ThisQuarter^
^ThisWeek^This Week^ThisWeek^
^ThisYear^This Year^ThisYear^
^Tiny^Tiny^Tiny^
^Today^Today^Today^
^Tomorrow^Tomorrow^Tomorrow^
^Top^top^Top^
^ToThisWebsite^to this website^ToThisWebsite^
^TouchUINotSupported^Touch UI is not supported in this browser.^TouchUINotSupported^
^TransitionFade^Fade^TransitionFade^
^TransitionFlip^Flip^TransitionFlip^
^TransitionFlow^Flow^TransitionFlow^
^TransitionNone^None^TransitionNone^
^TransitionPop^Pop^TransitionPop^
^Transitions^Transitions^Transitions^
^TransitionSlide^Slide^TransitionSlide^
^TransitionSlideDown^Slide Down^TransitionSlideDown^
^TransitionSlideUp^Slide Up^TransitionSlideUp^
^TransitionTurn^Turn^TransitionTurn^
^TreeActionDescription^Display hierarchical relationships.^TreeActionDescription^
^TreeActionHeaderText^Show Hierarchy^TreeActionHeaderText^
^TypeToSearch^Type to Search^TypeToSearch^
^Underline^Underline^Underline^