-
Notifications
You must be signed in to change notification settings - Fork 278
Expand file tree
/
Copy pathmessagebundle.properties
More file actions
1027 lines (693 loc) · 35.8 KB
/
messagebundle.properties
File metadata and controls
1027 lines (693 loc) · 35.8 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
#This is the resource bundle for the UI5 Web Components
#__ldi.translation.uuid=96bea51a-d5e3-46f0-b1d1-514d97be02ec
#XACT: ARIA announcement for the required state
ACC_STATE_REQUIRED=Required
#XACT: ARIA announcement for the disabled state
ACC_STATE_DISABLED=Disabled
#XACT: ARIA announcement for the readonly state
ACC_STATE_READONLY=Read Only
#XACT: ARIA announcement for the empty state
ACC_STATE_EMPTY=Empty
#XACT: ARIA announcement for an element with a single interactive element
ACC_STATE_SINGLE_CONTROL=Includes element
#XACT: ARIA announcement for an element with multiple interactive elements
ACC_STATE_MULTIPLE_CONTROLS=Includes elements
#XBUT: Card Content aria-label text
ARIA_LABEL_CARD_CONTENT=Card Content
#XBUT: Card aria-roledescription text
ARIA_ROLEDESCRIPTION_CARD=Card
#XBUT: Card Header aria-roledescription text
ARIA_ROLEDESCRIPTION_CARD_HEADER=Card Header
#XBUT: Card Header aria-roledescription interactive text
ARIA_ROLEDESCRIPTION_INTERACTIVE_CARD_HEADER=Interactive Card Header
#XACT: ARIA announcement for the Avatar default tooltip
AVATAR_TOOLTIP=Avatar
#XACT: ARIA type description for interactive Avatar (when the Avatar is a button)
AVATAR_TYPE_BUTTON=Button
#XACT: ARIA type description for non-interactive Avatar (when the Avatar is an image)
AVATAR_TYPE_IMAGE=Image
#XACT: ARIA announcement for the Avatar default tooltip
AVATAR_GROUP_DISPLAYED_HIDDEN_LABEL={0} displayed, {1} hidden.
#XACT: ARIA announcement for the Avatar default tooltip
AVATAR_GROUP_SHOW_COMPLETE_LIST_LABEL=Activate for complete list.
#XACT: ARIA announcement for the AvatarGroup type Individual aria-label attribute
AVATAR_GROUP_ARIA_LABEL_INDIVIDUAL=Individual avatars.
#XACT: ARIA announcement for the AvatarGroup type Group aria-label attribute
AVATAR_GROUP_ARIA_LABEL_GROUP=Conjoined avatars.
#XACT: ARIA announcement for the navigation in AvatarGroup
AVATAR_GROUP_MOVE=Press ARROW keys to move.
#XACT: ARIA announcement for the badge with "Tag" design
TAG_DESCRIPTION_TAG=Tag
#XACT: ARIA announcement for the roledescription attribute
TAG_ROLE_DESCRIPTION=Tag button
#XACT: ARIA announcement for the "Negative" state
TAG_ERROR=Error
#XACT: ARIA announcement for the "Critical" state
TAG_WARNING=Warning
#XACT: ARIA announcement for the "Positive" state
TAG_SUCCESS=Success
#XACT: ARIA announcement for the "Information" state
TAG_INFORMATION=Information
#XACT: position (current and max. value) of a Breadcrumb item which should be announced by screenreaders
BREADCRUMB_ITEM_POS={0} of {1}
#XACT: ARIA announcement for the breadcrumbs
BREADCRUMBS_ARIA_LABEL=Breadcrumb Trail
#XACT: ARIA announcement for the breadcrumbs overflow button
BREADCRUMBS_OVERFLOW_ARIA_LABEL=More
#XFLD: Breadcrumbs popover cancel button
BREADCRUMBS_CANCEL_BUTTON=Cancel
#XACT: Breadcrumbs popover accessible name
FORM_SELECTABLE_AVALIABLE_VALUES=Available Values
#XTOL: text that could be show if BusyIndicator is active
BUSY_INDICATOR_TITLE=Please wait
#XACT: ARIA announcement for the accept button
BUTTON_ARIA_TYPE_ACCEPT=Positive Action
#XACT: ARIA announcement for the reject button
BUTTON_ARIA_TYPE_REJECT=Negative Action
#XACT: ARIA announcement for the default action (emphasized) button
BUTTON_ARIA_TYPE_EMPHASIZED=Default Action
#XACT: ARIA announcement for the warning button
BUTTON_ARIA_TYPE_ATTENTION=Warning
#XACT: ARIA announcement for the Button Badge with value 1 - "{0} item"
BUTTON_BADGE_ONE_ITEM={0} item
#XACT: ARIA announcement for the Button Badge with value more than 1 - "{0} items"
BUTTON_BADGE_MANY_ITEMS={0} items
#ACC: ARIA announcement for the Button role attribute
BUTTON_ROLE_DESCRIPTION=Button
#ACC: ARIA announcement for the Link role attribute
LINK_ROLE_DESCRIPTION=Link
#XACT: Text for Today item in CalendarLegend
CAL_LEGEND_TODAY_TEXT=Today
#XACT: Text for Selected Day item in CalendarLegend
CAL_LEGEND_SELECTED_TEXT=Selected Day
#XACT: Text for Working Day item in CalendarLegend
CAL_LEGEND_WORKING_DAY_TEXT=Working Day
#XACT: Text for Non-Working Day item in CalendarLegend
CAL_LEGEND_NON_WORKING_DAY_TEXT=Non-Working Day
#XACT: Role description text for the Calendar Legend
CAL_LEGEND_ROLE_DESCRIPTION=Calendar Legend
# Carousel of text
CAROUSEL_OF_TEXT=of
#Carousel dots text
CAROUSEL_DOT_TEXT=Page {0} of {1}
# Carousel Previous Page text
CAROUSEL_PREVIOUS_ARROW_TEXT=Previous Page
# Carousel Next Page text
CAROUSEL_NEXT_ARROW_TEXT=Next Page
#XACT: ARIA announcement for the attribute 'aria-roledescription' of the Carousel component
CAROUSEL_ARIA_ROLE_DESCRIPTION=Carousel
#XACT: ARIA announcement for the aria-label attribute of an element within a Carousel component with a list role
CAROUSEL_ARIA_LIST_LABEL=Item Container
#XFLD: Label of the container holding the colors
COLORPALETTE_CONTAINER_LABEL=Color palette - Predefined colors
#XFLD: Title of the popup holding the colors
COLORPALETTE_POPOVER_TITLE=Color Palette
#XFLD: Label of the color box
COLORPALETTE_COLOR_LABEL=Color
#XFLD: Color Palette dialog button
COLOR_PALETTE_DIALOG_CANCEL_BUTTON=Cancel
#XFLD: Color Palette dialog button
COLOR_PALETTE_DIALOG_OK_BUTTON=OK
#XTIT: Color Palette dialog title of the Color Picker
COLOR_PALETTE_DIALOG_TITLE=Change Color
#XTIT: Color Palette dialog button text to open the Color Picker
COLOR_PALETTE_MORE_COLORS_TEXT=More Colors...
#XTIT: Color Palette dialog button text to set the default color
COLOR_PALETTE_DEFAULT_COLOR_TEXT=Default Color
#XACT: ARIA information for the ColorPicker slider group
COLORPICKER_LABEL= Color Picker
#XACT: ARIA information for the ColorPicker slider group
COLORPICKER_SLIDER_GROUP=Color Sliders
#XACT: ARIA information for the ColorPicker Alpha slider
COLORPICKER_ALPHA_SLIDER=Alpha slider
#XACT: ARIA information for the ColorPicker Hue slider
COLORPICKER_HUE_SLIDER=Hue slider
#XTOL: Six symbol hexadecimal group representing CSS color hex string
COLORPICKER_HEX=Hexadecimal
#XFLD: Label text for the ColorPicker Red input field
COLORPICKER_RED=Red
#XFLD: Label text for the ColorPicker Green input field
COLORPICKER_GREEN=Green
#XFLD: Label text for the ColorPicker Blue input field
COLORPICKER_BLUE=Blue
#XFLD: Label text for the ColorPicker Hue input field
COLORPICKER_HUE=Hue
#XFLD: Label text for the ColorPicker Saturation input field
COLORPICKER_SATURATION=Saturation
#XFLD: Label text for the ColorPicker Light input field
COLORPICKER_LIGHT=Light
#XTOL: Tooltip for color picker mode toggle button
COLORPICKER_TOGGLE_MODE_TOOLTIP=Change Color Mode
#XTOL: Alpha chanel transparency value for RGBA color mode
COLORPICKER_ALPHA=Alpha
#XACT: Text which indicates that the value of an input is in percent.
COLORPICKER_PERCENTAGE=%
#XACT: Text which indicates that the color mode is changed.
COLORPICKER_COLOR_MODE_CHANGED=Color mode changed to {0}. Current values: {1}.
#XACT: DatePicker 'Open Picker' icon title
DATEPICKER_OPEN_ICON_TITLE=Open Picker
#XACT: DatePicker 'Open Picker' icon title when the picker is opened
DATEPICKER_OPEN_ICON_TITLE_OPENED=Close Picker
#XACT: Aria information for the Date Picker
DATEPICKER_DATE_DESCRIPTION=Date Input
#XFLD: DatePicker dialog header title on mobile
DATEPICKER_MOBILE_HEADER_TITLE=Enter date
DATEPICKER_VALUE_MISSING=Fill in the date value in the format: {0}.
DATEPICKER_PATTERN_MISSMATCH=This format is not supported. Fill in the date and time range values in the format: {0}.
DATEPICKER_RANGE_OVERFLOW=Fill in a date value that is lower than the set max. value of {0}.
DATEPICKER_RANGE_UNDERFLOW=Fill in a date value that is higher than the set min. value of {0}.
#XACT: Aria information for the Date Time Picker
DATETIME_DESCRIPTION=Date Time Input
DATETIME_VALUE_MISSING=Fill in the date and time values in the format: {0}.
DATETIME_PATTERN_MISMATCH=This format is not supported. Fill in the date and time values in the format: {0}.
DATETIME_RANGEOVERFLOW=Fill in a value that is lower than the set max. value of {0}.
DATETIME_RANGEUNDERFLOW=Fill in a value that is higher than the set min. value of {0}.
#XACT: Aria information for the Date Range Picker
DATERANGE_DESCRIPTION=Date Range Input
DATERANGE_VALUE_MISSING=Fill in the date range in the format: {0} - {0}.
DATERANGE_PATTERN_MISMATCH=This format is not supported. Fill in the date values in the format: {0} - {0}.
DATERANGE_OVERFLOW=Fill in a value that is lower than the set max. value of {0}.
DATERANGE_UNDERFLOW=Fill in a value that is higher than the set min. value of {0}.
#XACT: Aria information for the Date Picker popover
DATEPICKER_POPOVER_ACCESSIBLE_NAME=Enter date for {0}
#XTXT: Date Picker placeholder prefix
DATETIME_COMPONENTS_PLACEHOLDER_PREFIX=e.g.
#XACT: Aria information for the Date Time Picker popover
DATETIMEPICKER_POPOVER_ACCESSIBLE_NAME=Choose Date and Time for {0}
#XACT: Aria information for the Date Range Picker popover
DATERANGEPICKER_POPOVER_ACCESSIBLE_NAME=Choose Date Range for {0}
DELETE=Delete
#XFLD: En dash (–) character to indicate that there is an empty space. In some languages there might be a different symbol used.
EMPTY_INDICATOR_SYMBOL=\u2013
#XFLD: ARIA announcement for the empty value.
EMPTY_INDICATOR_ACCESSIBLE_TEXT=Empty value
#XLNK: Link to allow the user to see complete text
EXPANDABLE_TEXT_SHOW_MORE=Show More
#XLNK: Link to allow the user to collapse the complete text and display only the first characters that can fit
EXPANDABLE_TEXT_SHOW_LESS=Show Less
#XBUT: Text for close action of dialog on mobile devices
EXPANDABLE_TEXT_CLOSE=Close
#XACT: ARIA-label text for link that allows the user to see complete text in a popover
EXPANDABLE_TEXT_SHOW_MORE_POPOVER_ARIA_LABEL=Show the full text
#XACT: ARIA-label text for link that allows the user to close the popover with the complete text
EXPANDABLE_TEXT_SHOW_LESS_POPOVER_ARIA_LABEL=Close the popover
#XACT: ARIA announcement for the FileUploader's roledescription attribute
FILEUPLOADER_ROLE_DESCRIPTION=File Uploader
#XACT: Default placeholder text for the ui5-file-uploader
FILEUPLOADER_DEFAULT_PLACEHOLDER=Browse or drop a file
#XACT: Default placeholder text for the multiple ui5-file-uploader
FILEUPLOADER_DEFAULT_MULTIPLE_PLACEHOLDER=Browse or drop multiple files
#XTOL: Default tooltip text for the ui5-file-uploader's input field
FILEUPLOADER_INPUT_TOOLTIP=All files will be replaced on each upload
#XTOL: Default tooltip text for the ui5-file-uploader's value help icon
FILEUPLOADER_VALUE_HELP_TOOLTIP=Browse and replace all files
#XTOL: Default tooltip text for the ui5-file-uploader's clear icon
FILEUPLOADER_CLEAR_ICON_TOOLTIP=Remove all files
FILEUPLOAER_VALUE_MISSING=Select or drag and drop a file to upload.
GROUP_HEADER_TEXT=Group Header
#XACT: ARIA announcement for the Select`s roledescription attribute
SELECT_ROLE_DESCRIPTION=Listbox
#XTXT: MultiComboBox and ComboBox icon accessible name
SELECT_OPTIONS=Select Options
#XTXT: MultiComboBox show selected items button accessible name
SHOW_SELECTED_BUTTON=Show Selected Items Only
#XBUT: A link that can be clicked to display more/all items
INPUT_SUGGESTIONS=Suggestions available
#XCKL: Select all checkbox label
MCB_SELECTED_ITEMS=Select All ({0} of {1})
#XTIT: Default title text for mobile
INPUT_SUGGESTIONS_TITLE=All Items
#XACT: ARIA announcement for the Input suggestion result if one hit
INPUT_SUGGESTIONS_ONE_HIT=1 result available
#XACT: ARIA announcement for the Input suggestion result if more than one hit ({0} is the number of hits)
INPUT_SUGGESTIONS_MORE_HITS={0} results are available
#XACT: ARIA announcement for the Input suggestion result if no hit
INPUT_SUGGESTIONS_NO_HIT=No results
#XACT: ARIA label for the Input clear icon
INPUT_CLEAR_ICON_ACC_NAME=Clear
#XBUT: Input's Dialog OK button on mobile devices
INPUT_SUGGESTIONS_OK_BUTTON=OK
#XBUT: Input's Dialog Cancel button on mobile devices
INPUT_SUGGESTIONS_CANCEL_BUTTON=Cancel
#XFLD: Subtle link description label
LINK_SUBTLE=Subtle
#XFLD: Emphasized link description label
LINK_EMPHASIZED=Emphasized
#XACT: ARIA announcement for the interactive nature of the list
LIST_ROLE_DESCRIPTION=List with interactive items. To move to the content press F2.
#XACT: ARIA announcement for the position of the list items in an entire list
LIST_ITEM_POSITION=List item {0} of {1}
#XACT: ARIA announcement for the list item selection.
LIST_ITEM_SELECTED=Selected
#XACT: ARIA announcement for the list item selected=false state
LIST_ITEM_NOT_SELECTED=Not Selected
#XACT: ARIA announcement for the list item selected=false state
LIST_ITEM_GROUP_HEADER=Group Header
#XACT: ARIA announcement for grouping with role=list
LIST_ROLE_LIST_GROUP_DESCRIPTION=contains {0} sub groups with {1} items
#XACT: ARIA announcement for grouping with role=listbox
LIST_ROLE_LISTBOX_GROUP_DESCRIPTION=contains {0} sub groups
#XBUT: List Multi Selection Mode Checkbox aria-label text
ARIA_LABEL_LIST_ITEM_CHECKBOX = Multiple Selection mode.
#XBUT: List Single Selection Mode RadioButton aria-label text
ARIA_LABEL_LIST_ITEM_RADIO_BUTTON=Item Selection.
#XACT: ARIA announcement for the list which allows single selections
ARIA_LABEL_LIST_SELECTABLE=Contains Selectable Items
#XACT: ARIA announcement for the list which allows multiple selections
ARIA_LABEL_LIST_MULTISELECTABLE=Contains Multi-Selectable Items
#XACT: ARIA announcement for the list which has deletable items
ARIA_LABEL_LIST_DELETABLE=Contains Deletable Items
#XTOL: Tooltip of information message strip close button
MESSAGE_STRIP_CLOSE_BUTTON_INFORMATION=Information Message Strip Close
#XTOL: Tooltip of positive message strip close button
MESSAGE_STRIP_CLOSE_BUTTON_POSITIVE=Positive Message Strip Close
#XTOL: Tooltip of negative message strip close button
MESSAGE_STRIP_CLOSE_BUTTON_NEGATIVE=Negative Message Strip Close
#XTOL: Tooltip of critical message strip close button
MESSAGE_STRIP_CLOSE_BUTTON_CRITICAL=Critical Message Strip Close
#XTOL: Tooltip of custom message strip close button
MESSAGE_STRIP_CLOSE_BUTTON_CUSTOM=Custom Message Strip Close
#XACT: ARIA announcement for the MessageStrip's closable state
MESSAGE_STRIP_CLOSABLE=Closable
#XACT: ARIA announcement for the MessageStrip's "Error" state
MESSAGE_STRIP_ERROR=Error Message Strip
#XACT: ARIA announcement for the MessageStrip's "Warning" state
MESSAGE_STRIP_WARNING=Warning Message Strip
#XACT: ARIA announcement for the MessageStrip's "Success" state
MESSAGE_STRIP_SUCCESS=Success Message Strip
#XACT: ARIA announcement for the MessageStrip's "Information" state
MESSAGE_STRIP_INFORMATION=Message Strip
#XACT: ARIA announcement for the MessageStrip's "Custom" state
MESSAGE_STRIP_CUSTOM=Custom Message Strip
#XFLD: MultiComboBox OK dialog button
MULTICOMBOBOX_DIALOG_OK_BUTTON=OK
#XFLD: MultiComboBox Cancel dialog button
MULTICOMBOBOX_DIALOG_CANCEL_BUTTON=Cancel
#XACT: ARIA announcement for Combo Box and Multi Combo Box available options
COMBOBOX_AVAILABLE_OPTIONS=Available Options
#XBUT: Combobox Dialog OK button on mobile devices
COMBOBOX_DIALOG_OK_BUTTON=OK
#XBUT: Combobox Dialog Cancel button on mobile devices
COMBOBOX_DIALOG_CANCEL_BUTTON=Cancel
#XACT: ARIA announcement for suggestions popup
INPUT_AVALIABLE_VALUES=Available Values
#XMSG: Text used for value state error message when an item is already selected
VALUE_STATE_ERROR_ALREADY_SELECTED=This value is already selected.
#XBUT: MultiInput aria-roledescription text
MULTIINPUT_ROLEDESCRIPTION_TEXT=Multi Value Input
#XFLD: Token number indicator which is used to show more tokens
MULTIINPUT_SHOW_MORE_TOKENS={0} more
#XACT: ARIA announcement for value help icon
MULTIINPUT_VALUE_HELP_LABEL=Show Value Help
#XACT: ARIA announcement for value help
MULTIINPUT_VALUE_HELP=Value help available
#XACT: ARIA announcement for value help
MULTIINPUT_FILTER_BUTTON_LABEL=Show selected tokens
#XTOL: Tooltip for panel expand title
PANEL_ICON=Expand/Collapse
#XACT: ARIA description for range slider progress
RANGE_SLIDER_ARIA_DESCRIPTION=Range
#XACT: ARIA description for range slider start handle
RANGE_SLIDER_START_HANDLE_DESCRIPTION=Left handle
#XACT: ARIA description for range slider end handle
RANGE_SLIDER_END_HANDLE_DESCRIPTION=Right handle
#XBUT: Rating indicator tooltip text
RATING_INDICATOR_TOOLTIP_TEXT=Rating
#XBUT: Rating indicator aria-roledescription text
RATING_INDICATOR_TEXT=Rating Indicator
#XACT: Rating indicator ARIA description
RATING_INDICATOR_ARIA_DESCRIPTION=Required
#XFLD: ResponsivePopover's button's text which closes the dialog
RESPONSIVE_POPOVER_CLOSE_DIALOG_BUTTON=Decline
#XACT: ARIA description for the segmented button
SEGMENTEDBUTTON_ARIA_DESCRIPTION=Segmented button group
#XACT: ARIA described by for the segmented button
SEGMENTEDBUTTON_ARIA_DESCRIBEDBY=Press SPACE or ENTER to select an item
#XACT: ARIA description for the segmented button item
SEGMENTEDBUTTONITEM_ARIA_DESCRIPTION=Segmented button
#XACT: ARIA description for slider handle
SLIDER_ARIA_DESCRIPTION=Slider handle
#XTXT Table and List "load more" row's text.
LOAD_MORE_TEXT=More
#XTXT Table's header row text.
TABLE_HEADER_ROW_INFORMATION=Header Row 1 of {0}
#XACT Table row's position
TABLE_ROW_POSITION={0} of {1}
#XACT Table group row's aria label
TABLE_GROUP_ROW_ARIA_LABEL=Group header row.
#XACT ARIA label for selection checkbox
ARIA_LABEL_ROW_SELECTION=Item selection
#XACT ARIA label for select all checkbox in a multiselect mode table
ARIA_LABEL_SELECT_ALL_CHECKBOX=Select All Rows
#XACT ARIA label for table cell without content
ARIA_LABEL_EMPTY_CELL=Empty
#XACT: ARIA announcement for the positive design
TAB_ARIA_DESIGN_POSITIVE=Positive
#XACT: ARIA announcement for the negative design
TAB_ARIA_DESIGN_NEGATIVE=Negative
#XACT: ARIA announcement for the critical design
TAB_ARIA_DESIGN_CRITICAL=Critical
#XACT: ARIA announcement for the neutral design
TAB_ARIA_DESIGN_NEUTRAL=Neutral
#XACT: ARIA role description for Tab with subitems
TAB_SPLIT_ROLE_DESCRIPTION=Tab with subitems
#XACT: ACC next icon name in tab container
TABCONTAINER_NEXT_ICON_ACC_NAME=Next
#XACT: ACC previous icon name in tab container
TABCONTAINER_PREVIOUS_ICON_ACC_NAME=Previous
#XACT: ACC overflow menu title in tab container
TABCONTAINER_OVERFLOW_MENU_TITLE=Overflow Menu
#XTXT Text for end overflow button in tab container
TABCONTAINER_END_OVERFLOW=More
#XBUT Text for cancel button, which closes the popover on mobile devices
TABCONTAINER_POPOVER_CANCEL_BUTTON=Cancel
#XACT: ARIA description for TabContainer tablist when there are tabs with subitems
TABCONTAINER_SUBTABS_DESCRIPTION=Press down arrow key to open subitems menu
#XTXT: Text for characters left
TEXTAREA_CHARACTERS_LEFT={0} characters remaining
#XTXT: Text for characters over
TEXTAREA_CHARACTERS_EXCEEDED={0} characters over limit
#XTXT: Text for characters over in form
TEXTAREA_EXCEEDS_MAXLENGTH =Value too long by {0} characters.
#XFLD: Timepicker slider header
TIMEPICKER_HOURS_LABEL=Hours
#XFLD: Timepicker slider header
TIMEPICKER_MINUTES_LABEL=Minutes
#XFLD: Timepicker slider header
TIMEPICKER_SECONDS_LABEL=Seconds
#XFLD: Timepicker popover button
TIMEPICKER_SUBMIT_BUTTON=OK
#XFLD: Timepicker popover button
TIMEPICKER_CANCEL_BUTTON=Cancel
#XACT: Aria information for the Time Picker
TIMEPICKER_INPUT_DESCRIPTION=Time Input
#XACT: Aria information for the Time Picker popover
TIMEPICKER_POPOVER_ACCESSIBLE_NAME=Choose Time for {0}
#XACT: Aria information for the Time Picker Clock Dial
TIMEPICKER_CLOCK_DIAL_LABEL=Clock Dial
#XACT: Time Picker Inputs tooltip/aria-label for Hours input
TIMEPICKER_INPUTS_ENTER_HOURS=Please enter hours
#XACT: Time Picker Inputs tooltip/aria-label for Minutes input
TIMEPICKER_INPUTS_ENTER_MINUTES=Please enter minutes
#XACT: Time Picker Inputs tooltip/aria-label for Seconds input
TIMEPICKER_INPUTS_ENTER_SECONDS=Please enter seconds
#XACT: Time Picker 'Open Picker' icon title
TIMEPICKER_OPEN_ICON_TITLE=Open Picker
#XACT: Time Picker 'Open Picker' icon title when the picker is opened
TIMEPICKER_OPEN_ICON_TITLE_OPENED=Close Picker
TIMEPICKER_VALUE_MISSING=Fill in the time value in the format: {0}.
TIMEPICKER_PATTERN_MISSMATCH=This format is not supported. Fill in the time value in the format: {0}.
#XACT: Aria information for the Duration Picker
DURATION_INPUT_DESCRIPTION=Duration Input
#XFLD: DateTimePicker popover button
DATETIME_PICKER_DATE_BUTTON=Date
#XFLD: DateTimePicker popover button
DATETIME_PICKER_TIME_BUTTON=Time
#XACT: ARIA announcement for token deletable
TOKEN_ARIA_DELETABLE=Deletable
#XACT: ARIA announcement for token removal
TOKEN_ARIA_DELETE=Delete
#XACT: ARIA announcement for token label
TOKEN_ARIA_LABEL=Token
#XACT: ARIA announcement for custom list item type
LISTITEMCUSTOM_TYPE_TEXT=List Item
#XACT: ARIA announcement for tokens
TOKENIZER_ARIA_CONTAIN_TOKEN=No Tokens
#XACT: ARIA announcement for tokenizer with 1 token
TOKENIZER_ARIA_CONTAIN_ONE_TOKEN=Contains 1 token
#XACT: ARIA announcement for tokenizer with n tokens
TOKENIZER_ARIA_CONTAIN_SEVERAL_TOKENS=Contains {0} tokens
#XACT: ARIA announcement for tokenizer label
TOKENIZER_ARIA_LABEL=Tokenizer
#XFLD: Token number indicator which is used to show all tokens in Tokenizer when all of the tokens are hidden
TOKENIZER_SHOW_ALL_ITEMS={0} Items
#XFLD: Clear All link text in Tokenizer
TOKENIZER_CLEAR_ALL=Clear All
#XBUT: Tokenizer's Dialog Cancel button on mobile devices
TOKENIZER_DIALOG_CANCEL_BUTTON=Cancel
#XBUT: Tokenizer's Dialog OK button on mobile devices
TOKENIZER_DIALOG_OK_BUTTON=OK
#XACT: Label text for TreeListItem
TREE_ITEM_ARIA_LABEL=Tree Item
#XTOL: tooltip for expand icon in a tree item
TREE_ITEM_EXPAND_NODE=Expand Node
#XACT: tooltip for collapse icon in a tree item
TREE_ITEM_COLLAPSE_NODE=Collapse Node
#XACT: the value state type that is preppended to value state error message text
VALUE_STATE_TYPE_ERROR=Value State Error
#XACT: the value state type that is preppended to value state warning message text
VALUE_STATE_TYPE_WARNING=Value State Warning
#XACT: the value state type that is preppended to value state success message text
VALUE_STATE_TYPE_SUCCESS=Value State Success
#XACT: the value state type that is preppended to value state information message text
VALUE_STATE_TYPE_INFORMATION=Value State Information
#XTOL: text that is appended to the tooltips of input fields etc. which are marked to have an error
VALUE_STATE_ERROR=Invalid entry
#XTOL: text that is appended to the tooltips of input fields etc. which are marked to have a warning
VALUE_STATE_WARNING=Warning issued
#XTOL: text that is appended to the tooltips of input fields etc. which are marked to be informative
VALUE_STATE_INFORMATION=Informative entry
#XTOL: text that is appended to the tooltips of input fields etc. which are marked to be in success state
VALUE_STATE_SUCCESS=Entry successfully validated
#XACT: ARIA announcement for keyboard shortcut to value state link
VALUE_STATE_LINK=To move the focus to the link, press Ctrl+Alt+F8
#XACT: ARIA announcement for keyboard shortcut to value state link on Mac
VALUE_STATE_LINK_MAC=To move the focus to the link, press Cmd+Option+F8
#XACT: ARIA announcement for keyboard shortcut to value state multiple links
VALUE_STATE_LINKS=To go to the first link, press Ctrl+Alt+F8. To move to the next link, use Tab
#XACT: ARIA announcement for keyboard shortcut to value state multiple links on Mac
VALUE_STATE_LINKS_MAC=To go to the first link, press Cmd+Option+F8. To move to the next link, use Tab
#XACT: ARIA label for month button in the Calendar Header
CALENDAR_HEADER_MONTH_BUTTON = Month {0}
#XACT: ARIA label for year button in the Calendar Header
CALENDAR_HEADER_YEAR_BUTTON = Year {0}
#XACT: ARIA label for year range button in the Calendar Header
CALENDAR_HEADER_YEAR_RANGE_BUTTON = Year range from {0} to {1}
#XACT: Keyboard shortcut for month button in the Calendar Header
CALENDAR_HEADER_MONTH_BUTTON_SHORTCUT = F4
#XACT: Keyboard shortcut for year button in the Calendar Header
CALENDAR_HEADER_YEAR_BUTTON_SHORTCUT = Shift + F4
#XACT: Keyboard shortcut for year range button in the Calendar Header
CALENDAR_HEADER_YEAR_RANGE_BUTTON_SHORTCUT = Shift + F4
#XACT: Title for month next button in the Calendar Header
CALENDAR_HEADER_MONTH_NEXT_BUTTON_TITLE = Next Month
#XACT: Title for year next button in the Calendar Header
CALENDAR_HEADER_YEAR_NEXT_BUTTON_TITLE = Next Year
#XACT: Title for year range next button in the Calendar Header
CALENDAR_HEADER_YEAR_RANGE_NEXT_BUTTON_TITLE = Next Year Range
#XACT: Keyboard shortcut for month next button in the Calendar Header
CALENDAR_HEADER_MONTH_NEXT_BUTTON_SHORTCUT = Pageup
#XACT: Title for month previous button in the Calendar Header
CALENDAR_HEADER_MONTH_PREVIOUS_BUTTON_TITLE = Previous Month
#XACT: Title for year previous button in the Calendar Header
CALENDAR_HEADER_YEAR_PREVIOUS_BUTTON_TITLE = Previous Year
#XACT: Title for year range previous button in the Calendar Header
CALENDAR_HEADER_YEAR_RANGE_PREVIOUS_BUTTON_TITLE = Previous Year Range
#XACT: Keyboard shortcut for month previous button in the Calendar Header
CALENDAR_HEADER_MONTH_PREVIOUS_BUTTON_SHORTCUT = Pagedown
#XACT: ARIA label for day picker selected range start
DAY_PICKER_SELECTED_RANGE_START = {0} First date of range
#XACT: ARIA label for day picker selected range between dates
DAY_PICKER_SELECTED_RANGE_BETWEEN = {0} in a selected range
#XACT: ARIA label for day picker selected range end
DAY_PICKER_SELECTED_RANGE_END = {0} Last date of range
#XBUT: Text for 'Week number' in the DayPicker
DAY_PICKER_WEEK_NUMBER_TEXT = Week number
#XBUT: Text for 'Non-Working Day' in the DayPicker
DAY_PICKER_NON_WORKING_DAY = Non-Working Day
#XBUT: Text for 'Today' in the DayPicker
DAY_PICKER_TODAY = Today
#XACT: ARIA description for month picker
MONTH_PICKER_DESCRIPTION = Month Picker
#XACT: ARIA description for year picker
YEAR_PICKER_DESCRIPTION = Year Picker
#XACT: ARIA description for year picker
YEAR_RANGE_PICKER_DESCRIPTION = Year Range Picker
#XACT: ARIA description for slider tooltip input
SLIDER_TOOLTIP_INPUT_DESCRIPTION = Press F2 to enter a value
#XACT: ARIA label for slider tooltip input
SLIDER_TOOLTIP_INPUT_LABEL = Current Value
#XTOL: tooltip for decrease button of the StepInput
STEPINPUT_DEC_ICON_TITLE=Decrease
#XTOL: tooltip for increase button of the StepInput
STEPINPUT_INC_ICON_TITLE=Increase
STEPINPUT_PATTER_MISSMATCH=This format is not supported. Fill in a number with {0} decimal places.
STEPINPUT_RANGEOVERFLOW=Fill in a number that is lower than the set max. value of {0}.
STEPINPUT_RANGEUNDERFLOW=Fill in a number that is higher than the set min. value of {0}.
#XACT: Aria information for the Split Button
SPLIT_BUTTON_DESCRIPTION=Split Button
#XACT: Aria hint for the keyboard handling support of the Split Button
SPLIT_BUTTON_KEYBOARD_HINT=Press Space or Enter to trigger default action and Alt + Arrow Down or F4 to trigger arrow action
#XBUT: Tooltip text for 'Arrow' button
SPLIT_BUTTON_ARROW_BUTTON_TOOLTIP=Open Menu
#XACT: ARIA announcement for the Menu Back button aria-label attribute
MENU_BACK_BUTTON_ARIA_LABEL=Back
#XBUT: Menu Cancel button on mobile devices
MENU_CANCEL_BUTTON_TEXT=Cancel
#XACT: ARIA information for the Menu popover
MENU_POPOVER_ACCESSIBLE_NAME=Select an option from the menu
#XACT: ARIA information for the Menu Item Group with itemSelectionMode "None"
MENU_ITEM_GROUP_NONE_ACCESSIBLE_NAME=Contains Non-Selectable Items
#XACT: ARIA information for the Menu Item Group with itemSelectionMode "SingleSelect"
MENU_ITEM_GROUP_SINGLE_ACCESSIBLE_NAME=Contains Selectable Items
#XACT: ARIA information for the Menu Item Group with itemSelectionMode "MultiSelect"
MENU_ITEM_GROUP_MULTI_ACCESSIBLE_NAME=Contains Multi-Selectable Items
#XACT: ARIA information for the Menu Item end content slot
MENU_ITEM_END_CONTENT_ACCESSIBLE_NAME=Additional Actions
#XACT: ARIA information for the Menu Item loading state
MENU_ITEM_LOADING=Loading
#XACT: ARIA announcement for roldesecription attribute of Dialog header
DIALOG_HEADER_ARIA_ROLE_DESCRIPTION=Interactive Header
#XACT: ARIA announcement for describedby attribute of resizable Dialog header
DIALOG_HEADER_ARIA_DESCRIBEDBY_RESIZABLE=Use Shift+Arrow keys to resize
#XACT: ARIA announcement for describedby attribute of draggable Dialog header
DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE=Use Arrow keys to move
#XACT: ARIA announcement for describedby attribute of draggable and resizable Dialog header
DIALOG_HEADER_ARIA_DESCRIBEDBY_DRAGGABLE_RESIZABLE=Use Arrow keys to move, Shift+Arrow keys to resize
#XFLD: A colon to separate the "label" from an input. In some languages there might be a different symbol used for such a colon
LABEL_COLON=:
#XACT: ARIA announcement for the input field of the TimePicker
TOOLBAR_OVERFLOW_BUTTON_ARIA_LABEL=Additional Options
#XACT: ARIA announcement for Toolbar's popup
TOOLBAR_POPOVER_AVAILABLE_VALUES=Available Values
#XACT: ARIA announcement for the Form aria-label attribute
FORM_ACCESSIBLE_NAME=Form
#XACT: ARIA announcement for the Form group aria-label attribute
FORM_GROUP_ACCESSIBLE_NAME=Group {0}
#XMSG: Text used for reporting that a radio button group requires one of the radio buttons to be checked
FORM_CHECKABLE_REQUIRED=Please tick this box if you want to proceed.
FORM_MIXED_TEXTFIELD_REQUIRED=Please fill in this field or select an item in the list.
FORM_SELECTABLE_REQUIRED=Please select an item in the list.
FORM_SELECTABLE_REQUIRED2=Please select one of these options.
FORM_TEXTFIELD_REQUIRED=Please fill in this field.
#XACT: ARIA description for the column header with selection
TABLE_SELECTION=Selection
#XACT: ARIA description for the selection component of the row
TABLE_ROW_SELECTOR=Row Selector
#XACT: ARIA description for the navigated indicator of the row
TABLE_ROW_NAVIGATED=Navigated
#XMSG: Message text to be displayed when there are no rows in the grid
TABLE_NO_DATA=No Data
#XACT: ARIA announcement for the table that allows single selections
TABLE_SINGLE_SELECTABLE=Single Selection Table
#XACT: ARIA announcement for the table that allows multi selection
TABLE_MULTI_SELECTABLE=Multi Selection Table
#XACT: ARIA description for the selection column header when select all checkbox is shown
TABLE_COLUMNHEADER_SELECTALL_DESCRIPTION=Select All Checkbox
#XACT: ARIA description for the selection column header when clear all button is shown
TABLE_COLUMNHEADER_CLEARALL_DESCRIPTION=Clear All Button
#XACT: ARIA announcement of a table row
TABLE_ROW=Row
#XACT: Description for the popin containing column header
TABLE_ROW_POPIN=Row Popin
#XACT: ARIA announcement for the position of a row among all table rows
TABLE_ROW_INDEX={0} of {1}
#XACT: ARIA announcement for the selected table row
TABLE_ROW_SELECTED=Selected
#XACT: ARIA announcement for the active clickable table rows
TABLE_ROW_ACTIVE=Is Active
#XACT: ARIA announcement for the navigable table rows
TABLE_ROW_NAVIGABLE=Has Details
#XACT: ARIA description for the column header row of the table
TABLE_COLUMN_HEADER_ROW=Column Header Row
#XTXT: Text for the growing button
TABLE_MORE=More
#XACT: ARIA description for the growing button
TABLE_MORE_DESCRIPTION=To load more rows, press Enter or Space
#XACT: ARIA description for the row action of the header cell
TABLE_ROW_ACTIONS=Row Actions
#XACT: Screenreader announcement when a single action is available
TABLE_ROW_SINGLE_ACTION=1 row action available
#XACT: Screenreader announcement when several actions are available
TABLE_ROW_MULTIPLE_ACTIONS={0} row actions available
#XACT: ARIA description for the row action navigation
TABLE_NAVIGATION=Navigation
#XTOL: Tooltip for the AI button in the column header to indicate that the column is generated by AI
TABLE_GENERATED_BY_AI=Generated by AI
#XTOL: Tooltip of the header row checkbox to select all rows in the table
TABLE_SELECT_ALL_ROWS=Select All Rows
#XTOL: Tooltip of the header row checkbox to deselect all rows in the table
TABLE_DESELECT_ALL_ROWS=Deselect All Rows
#XFLD: Text for the "Yesterday" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_YESTERDAY_TEXT=Yesterday
#XFLD: Text for the "Today" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_TODAY_TEXT=Today
#XFLD: Text for the "Tomorrow" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_TOMORROW_TEXT=Tomorrow
#XFLD: Text for the "Date" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_DATE_TEXT=Date
#XFLD: Text for the "Date Range" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_DATERANGE_TEXT=From / To
#XFLD: Text for the "From" input field in the From (Date Time) option of the DynamicDateRange component.
DYNAMIC_DATE_RANGE_FROM_INPUT_TEXT=From
#XFLD: Text for the "To" input field in the To (Date Time) option of the DynamicDateRange component.
DYNAMIC_DATE_RANGE_TO_INPUT_TEXT=To
#XFLD: Text for the "From" From (Date Time) option of the DynamicDateRange component.
DYNAMIC_DATE_RANGE_FROM_TEXT=From (Date Time)
#XFLD: Text for the "To" To (Date Time) option of the DynamicDateRange component.
DYNAMIC_DATE_RANGE_TO_TEXT=To (Date Time)
#XFLD: Text for the selected date in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_SELECTED_TEXT=Selected
DYNAMIC_DATE_TIME_RANGE_TEXT=From / To (Date and Time)
DYNAMIC_DATE_TIME_RANGE_TEXT_TO_LABEL=To
DYNAMIC_DATE_TIME_RANGE_TEXT_FROM_LABEL=From
#FLD: Text for the selected date section when there's no value in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_EMPTY_SELECTED_TEXT=Choose Dates
#XACT: Accessible name for the DynamicDateRange popover dialog.
DYNAMIC_DATE_RANGE_POPOVER_ACCESSIBLE_NAME=Dynamic Date Range
#XFLD: Text for icon that navigates back to the previous page in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_NAVIGATION_ICON_TOOLTIP=Navigate back
#XFLD: Text for the "Last Days" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_LAST_DAYS_TEXT=Last X Days
#XFLD: Text for the "Next Days" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_NEXT_DAYS_TEXT=Next X Days
#XFLD: Text for the "Last Weeks" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_LAST_WEEKS_TEXT=Last X Weeks
#XFLD: Text for the "Next Weeks" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_NEXT_WEEKS_TEXT=Next X Weeks
#XFLD: Text for the "Last Months" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_LAST_MONTHS_TEXT=Last X Months
#XFLD: Text for the "Next Months" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_NEXT_MONTHS_TEXT=Next X Months
#XFLD: Text for the "Last Quarters" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_LAST_QUARTERS_TEXT=Last X Quarters
#XFLD: Text for the "Next Quarters" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_NEXT_QUARTERS_TEXT=Next X Quarters
#XFLD: Text for the "Last Years" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_LAST_YEARS_TEXT=Last X Years
#XFLD: Text for the "Next Years" option in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_NEXT_YEARS_TEXT=Next X Years
#XACT: Text for checkbox state - checked
CHECKBOX_CHECKED=Checked
#XACT: Text for checkbox state - not checked
CHECKBOX_NOT_CHECKED=Not checked
#XACT: ARIA type for checkbox
CHECKBOX_ARIA_TYPE=Checkbox
#XFLD: Label for the value input field in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_VALUE_LABEL_TEXT=Value for X
#XFLD: Label for the unit of time selection in the DynamicDateRange component.
DYNAMIC_DATE_RANGE_UNIT_OF_TIME_LABEL_TEXT=Unit of Time
#XFLD: Unit name for days in DynamicDateRange options.
DYNAMIC_DATE_RANGE_DAYS_UNIT_TEXT=Days
#XFLD: Unit name for weeks in DynamicDateRange options.
DYNAMIC_DATE_RANGE_WEEKS_UNIT_TEXT=Weeks
#XFLD: Unit name for months in DynamicDateRange options.
DYNAMIC_DATE_RANGE_MONTHS_UNIT_TEXT=Months