versacall-core-library-react 2.0.70 → 2.0.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/CoreAlert/CoreAlert.js +85 -0
- package/dist/components/CoreAlert/index.js +13 -0
- package/dist/components/CoreAlert/readme.md +21 -0
- package/dist/components/CoreAppBar/CoreAppBar.js +364 -0
- package/dist/components/CoreAppBar/CoreAppBarDrawer.js +134 -0
- package/dist/components/CoreAppBar/README.md +27 -0
- package/dist/components/CoreAppBar/index.js +13 -0
- package/dist/components/CoreAppBar/screenshot.png +0 -0
- package/dist/components/CoreAppSelector/AppLink.js +101 -0
- package/dist/components/CoreAppSelector/CoreAppSelector.js +155 -0
- package/dist/components/CoreAppSelector/index.js +13 -0
- package/dist/components/CoreDialogueToolBar/CoreDialogueToolBar.js +123 -0
- package/dist/components/CoreDialogueToolBar/index.js +13 -0
- package/dist/components/CoreDrawer/CoreDrawer.js +236 -0
- package/dist/components/CoreDrawer/README.md +36 -0
- package/dist/components/CoreDrawer/index.js +13 -0
- package/dist/components/CoreDrawer/screenshot_collapsed.png +0 -0
- package/dist/components/CoreDrawer/screenshot_expanded.png +0 -0
- package/dist/components/CoreDropDownTextfield/CoreDropDownTextfield.js +85 -0
- package/dist/components/CoreDropDownTextfield/index.js +13 -0
- package/dist/components/CoreElapsedTime/CoreElapsedTime.js +57 -0
- package/dist/components/CoreElapsedTime/index.js +13 -0
- package/dist/components/CoreFrame/CoreFrame.js +64 -0
- package/dist/components/CoreFrame/index.js +13 -0
- package/dist/components/CoreImportDialog/CoreImportDialog.js +350 -0
- package/dist/components/CoreImportDialog/index.js +13 -0
- package/dist/components/CoreImportResultsDialog/CoreImportResultsDialog.js +103 -0
- package/dist/components/CoreImportResultsDialog/index.js +13 -0
- package/dist/components/CoreImporting/CoreImporting.js +60 -0
- package/dist/components/CoreImporting/index.js +13 -0
- package/dist/components/CorePlugin/CorePlugin.js +134 -0
- package/dist/components/CorePlugin/OldCorePlugin.js +124 -0
- package/dist/components/CorePlugin/index.js +13 -0
- package/dist/components/CoreSaveChangesDialog/CoreSaveChangesDialog.js +62 -0
- package/dist/components/CoreSaveChangesDialog/index.js +13 -0
- package/dist/components/CoreShiftTagFilter/CoreShiftTagFilter.js +350 -0
- package/dist/components/CoreShiftTagFilter/OldCoreShiftTagFilter.js +208 -0
- package/dist/components/CoreShiftTagFilter/index.js +13 -0
- package/dist/components/CoreSideBar/CoreSideBar.js +737 -0
- package/dist/components/CoreSideBar/CoreSideBarDrawer.js +172 -0
- package/dist/components/CoreSideBar/index.js +13 -0
- package/dist/components/CoreSnackBar/CoreSnackBar.js +116 -0
- package/dist/components/CoreSnackBar/index.js +13 -0
- package/dist/components/CoreSnackBar/readme.md +23 -0
- package/dist/components/CoreTable/CoreTable.js +315 -0
- package/dist/components/CoreTable/CoreTableChips.js +50 -0
- package/dist/components/CoreTable/CoreTableHead.js +175 -0
- package/dist/components/CoreTable/CoreTableToolbar.js +108 -0
- package/dist/components/CoreTable/index.js +13 -0
- package/dist/components/CoreTable/readMe.md +79 -0
- package/dist/components/CoreTagFilter/CoreTagFilter.js +275 -0
- package/dist/components/CoreTagFilter/OldCoreTagFilter.js +341 -0
- package/dist/components/CoreTagFilter/OldTagChip.js +44 -0
- package/dist/components/CoreTagFilter/OldTagFilterSelector.js +105 -0
- package/dist/components/CoreTagFilter/OldTagOption.js +53 -0
- package/dist/components/CoreTagFilter/TagFilterBuilder.js +487 -0
- package/dist/components/CoreTagFilter/index.js +13 -0
- package/dist/components/CoreTextField/CoreTextField.js +109 -0
- package/dist/components/CoreTextField/index.js +13 -0
- package/dist/components/CoreTheme/CoreTheme.css +9 -0
- package/dist/components/CoreTheme/CoreTheme.js +51 -0
- package/dist/components/CoreTheme/README.md +3 -0
- package/dist/components/CoreTheme/index.js +13 -0
- package/dist/components/CoreTile/CoreTile.js +62 -0
- package/dist/components/CoreTile/CoreTileToolbar.js +62 -0
- package/dist/components/CoreTile/index.js +13 -0
- package/dist/components/CoreTimerInput/CoreTimerInput.js +203 -0
- package/dist/components/CoreTimerInput/CoreTimerInputOld.js +146 -0
- package/dist/components/CoreTimerInput/index.js +13 -0
- package/dist/components/CoreToolbar/CoreToolbar.js +205 -0
- package/dist/components/CoreToolbar/index.js +13 -0
- package/dist/components/CoreTracker/CoreTracker.js +52 -0
- package/dist/components/CoreTracker/index.js +13 -0
- package/dist/components/CoreTranslate/CoreTranslate.js +62 -0
- package/dist/components/CoreTranslate/README.md +5 -0
- package/dist/components/CoreTranslate/index.js +13 -0
- package/dist/components/CoreTranslate/translations/en.json +451 -0
- package/dist/components/CoreTranslate/translations/es.json +433 -0
- package/dist/components/CoreTranslateWrapper/CoreTranslateWrapper.js +36 -0
- package/dist/components/CoreTranslateWrapper/index.js +13 -0
- package/dist/components/CoreWidget/CoreWidget.js +120 -0
- package/dist/components/CoreWidget/index.js +13 -0
- package/dist/components/CoreWrapper/CoreWrapper.js +51 -0
- package/dist/components/CoreWrapper/README.md +41 -0
- package/dist/components/CoreWrapper/index.js +13 -0
- package/dist/components/index.js +202 -0
- package/dist/constants/index.js +20 -0
- package/dist/constants/testOrganization.js +31 -0
- package/dist/constants/testToken.js +33 -0
- package/dist/context/Authentication/AuthenticationContext.js +10 -0
- package/dist/context/Authentication/AuthenticationProvider.js +225 -0
- package/dist/context/Authentication/README.md +47 -0
- package/dist/context/Authentication/index.js +27 -0
- package/dist/context/Authentication/withAuthentication.js +15 -0
- package/dist/context/Channels/ChannelsConsumer.js +42 -0
- package/dist/context/Channels/ChannelsContext.js +10 -0
- package/dist/context/Channels/ChannelsProvider.js +258 -0
- package/dist/context/Channels/DataChannel.js +68 -0
- package/dist/context/Channels/EntityChannel.js +69 -0
- package/dist/context/Channels/EveryoneChannel.js +55 -0
- package/dist/context/Channels/OrganizationChannel.js +69 -0
- package/dist/context/Channels/README.md +52 -0
- package/dist/context/Channels/UserChannel.js +60 -0
- package/dist/context/Channels/index.js +69 -0
- package/dist/context/Channels/withChannels.js +15 -0
- package/dist/context/Core/CoreContext.js +10 -0
- package/dist/context/Core/CoreProvider.js +107 -0
- package/dist/context/Core/README.md +43 -0
- package/dist/context/Core/index.js +27 -0
- package/dist/context/Core/withCore.js +15 -0
- package/dist/context/Organization/OrganizationContext.js +10 -0
- package/dist/context/Organization/OrganizationProvider.js +108 -0
- package/dist/context/Organization/README.md +82 -0
- package/dist/context/Organization/index.js +27 -0
- package/dist/context/Organization/withOrganization.js +15 -0
- package/dist/context/Plugin/PluginContext.js +10 -0
- package/dist/context/Plugin/PluginProvider.js +78 -0
- package/dist/context/Plugin/index.js +27 -0
- package/dist/context/Plugin/withPlugin.js +15 -0
- package/dist/context/index.js +60 -0
- package/dist/css/index.js +20 -0
- package/dist/css/junk.module.css +3 -0
- package/dist/css/scrollbar.css +35 -0
- package/dist/css/scrollbar.module.css +37 -0
- package/dist/functions/TagEvaluator.js +165 -0
- package/dist/functions/compareObjects.js +27 -0
- package/dist/functions/formatElapsedTime.js +18 -0
- package/dist/functions/formatNameFileSafe.js +16 -0
- package/dist/functions/getIconUrl.js +15 -0
- package/dist/functions/getParameterByName.js +34 -0
- package/dist/functions/getProperty.js +17 -0
- package/dist/functions/getUrl.js +15 -0
- package/dist/functions/index.js +62 -0
- package/dist/icons/CopyIcon.js +42 -0
- package/dist/icons/DeleteIcon.js +42 -0
- package/dist/icons/DuplicateIcon.js +42 -0
- package/dist/icons/EditIcon.js +42 -0
- package/dist/icons/FabAddIcon.js +78 -0
- package/dist/icons/PasteIcon.js +42 -0
- package/dist/icons/index.js +48 -0
- package/dist/index.js +71 -0
- package/package.json +2 -2
|
@@ -0,0 +1,451 @@
|
|
|
1
|
+
{
|
|
2
|
+
"__acknowledge": "Acknowledge",
|
|
3
|
+
"__action": "Action",
|
|
4
|
+
"__actions": "Actions",
|
|
5
|
+
"__active_only": "Active Only",
|
|
6
|
+
"__add": "Add",
|
|
7
|
+
"__added": "Added",
|
|
8
|
+
"__add_action": "Add Action",
|
|
9
|
+
"__add_column": "Add Column",
|
|
10
|
+
"__add_condition": "Add Condition",
|
|
11
|
+
"__add_custom": "Add Custom",
|
|
12
|
+
"__add_module_filter": "Add Module Filter",
|
|
13
|
+
"__add_monitoring_points_filter": "Add Monitoring Points Filter",
|
|
14
|
+
"__add_row": "Add Row",
|
|
15
|
+
"__add_shift_filter": "Add Shift Filter",
|
|
16
|
+
"__add_variable": "Add Variable",
|
|
17
|
+
"__advanced": "Advanced",
|
|
18
|
+
"__advanced_mode": "Advanced Mode",
|
|
19
|
+
"__all": "All",
|
|
20
|
+
"__allow_overlap": "Allow Overlap",
|
|
21
|
+
"__applications": "Applications",
|
|
22
|
+
"__arial": "Arial",
|
|
23
|
+
"__aspect_ratio": "Aspect Ratio",
|
|
24
|
+
"__available": "Available",
|
|
25
|
+
"__background": "Background",
|
|
26
|
+
"__background_color": "Background Color",
|
|
27
|
+
"__background_color_fade": "Fade Background Color",
|
|
28
|
+
"__basic": "Basic",
|
|
29
|
+
"__basic_condition": "Basic Condition",
|
|
30
|
+
"__bold": "Bold",
|
|
31
|
+
"__border_color": "Border Color",
|
|
32
|
+
"__border_radius": "Border Radius",
|
|
33
|
+
"__border_style": "Border Style",
|
|
34
|
+
"__border_width": "Border Width",
|
|
35
|
+
"__bottom": "Bottom",
|
|
36
|
+
"__bottom_flex_start": "Bottom (flex-end)",
|
|
37
|
+
"__cancel": "Cancel",
|
|
38
|
+
"__cell": "Cell",
|
|
39
|
+
"__cell_content": "Cell Content",
|
|
40
|
+
"__cells": "Cells",
|
|
41
|
+
"__center": "Center",
|
|
42
|
+
"__clear": "Clear",
|
|
43
|
+
"__clear_all": "Clear All",
|
|
44
|
+
"__click_to_add_tags": "Click To Add Tags",
|
|
45
|
+
"__click_to_favorite": "Click to Favorite",
|
|
46
|
+
"__close": "Close",
|
|
47
|
+
"__column": "Column",
|
|
48
|
+
"__column_c": "C",
|
|
49
|
+
"__command": "Command",
|
|
50
|
+
"__commands": "Commands",
|
|
51
|
+
"__component": "Component",
|
|
52
|
+
"__condition": "Condition",
|
|
53
|
+
"__condition_advanced": "Advanced Condition",
|
|
54
|
+
"__condition_basic": "Basic Condition",
|
|
55
|
+
"__conditions": "Conditions",
|
|
56
|
+
"__conditions_editor": "Conditions Editor",
|
|
57
|
+
"__conditions_selected": "Conditions Selected",
|
|
58
|
+
"__configure": "Configure",
|
|
59
|
+
"__confirm": "Confirm",
|
|
60
|
+
"__conflict": "Conflict",
|
|
61
|
+
"__conflict_resolution_method": "Conflict Resolution",
|
|
62
|
+
"__consideration_method": "Consideration Method",
|
|
63
|
+
"__constant": "Constant",
|
|
64
|
+
"__constant_needs_value_requirement": "Constant Variable Is Missing Value",
|
|
65
|
+
"__contacts": "Contacts",
|
|
66
|
+
"__contain": "Contain",
|
|
67
|
+
"__content": "Content",
|
|
68
|
+
"__content_condition": "Content Condition",
|
|
69
|
+
"__content_conditions": "Content Conditions",
|
|
70
|
+
"__content_editor": "Content Editor",
|
|
71
|
+
"__content_preview": "Content Preview",
|
|
72
|
+
"__copy": "Copy",
|
|
73
|
+
"__copy_condition": "Copy Condition",
|
|
74
|
+
"__copy_variable": "Copy Variable",
|
|
75
|
+
"__count": "Count",
|
|
76
|
+
"__cover": "Cover",
|
|
77
|
+
"__created": "Created",
|
|
78
|
+
"__current_date": "Current Date",
|
|
79
|
+
"__current_day": "Current Day",
|
|
80
|
+
"__current_month": "Current Month",
|
|
81
|
+
"__current_shift": "Current Shift",
|
|
82
|
+
"__current_week": "Current Week",
|
|
83
|
+
"__custom": "Custom",
|
|
84
|
+
"__custom_tag": "Custom Tag",
|
|
85
|
+
"__dashboard": "Dashboard",
|
|
86
|
+
"__dashboard_styles": "Dashboard Styles",
|
|
87
|
+
"__dashboards": "Dashboards",
|
|
88
|
+
"__dashed": "Dashed",
|
|
89
|
+
"__data_field": "Data Field",
|
|
90
|
+
"__data_field_conflict_resolution_method": "Conflict Resolution Method (Data Fields)",
|
|
91
|
+
"__data_filter": "Data Filter",
|
|
92
|
+
"__date_end_off_set": "End date Offset",
|
|
93
|
+
"__date_option": "Date Option",
|
|
94
|
+
"__date_span": "Date Span",
|
|
95
|
+
"__date_start_off_set": "Start date Offset",
|
|
96
|
+
"__date_time_filter_settings": "Date Time Filter Setings",
|
|
97
|
+
"__date_time_options": "Date/Time Options",
|
|
98
|
+
"__decimal_places": "Decimal Places",
|
|
99
|
+
"__default_active_style": "Default Active Style",
|
|
100
|
+
"__delay": "Delay",
|
|
101
|
+
"__delete": "Delete",
|
|
102
|
+
"__delete_col": "Delete Column",
|
|
103
|
+
"__delete_condition": "Delete Condition",
|
|
104
|
+
"__delete_row": "Delete Row",
|
|
105
|
+
"__delete_selected_items": "Delete Selected Items",
|
|
106
|
+
"__delete_variable": "Delete Variable",
|
|
107
|
+
"__deleted": "Deleted",
|
|
108
|
+
"__description": "Description",
|
|
109
|
+
"__details": "Details",
|
|
110
|
+
"__different": "Different",
|
|
111
|
+
"__dotted": "Dotted",
|
|
112
|
+
"__double": "Double",
|
|
113
|
+
"__down": "Down",
|
|
114
|
+
"__duplicate": "Duplicate",
|
|
115
|
+
"__duplicate_condition": "Duplicate Condition",
|
|
116
|
+
"__duplicate_content_condition": "Duplicate Content Condition",
|
|
117
|
+
"__duplicate_stylet_condition": "Duplicate Style Condition",
|
|
118
|
+
"__duplicate_variable": "Duplicate Variable",
|
|
119
|
+
"__duration": "Duration",
|
|
120
|
+
"__duration_option": "Duration Option",
|
|
121
|
+
"__edit": "Edit",
|
|
122
|
+
"__edit_col": "Edit Column",
|
|
123
|
+
"__edit_condition": "Edit Condition",
|
|
124
|
+
"__edit_row": "Edit Row",
|
|
125
|
+
"__edit_table": "Layout",
|
|
126
|
+
"__edit_user": "Edit User",
|
|
127
|
+
"__edit_variable": "Edit Variable",
|
|
128
|
+
"__edit_variables": "Variables",
|
|
129
|
+
"__editor": "Editor",
|
|
130
|
+
"__editors": "Editors",
|
|
131
|
+
"__elapsed_time": "Elapsed Time",
|
|
132
|
+
"__email_address": "Email Address",
|
|
133
|
+
"__empty_content_condition": "Empty Content Condition",
|
|
134
|
+
"__empty_filter": "Clear Filter",
|
|
135
|
+
"__empty_style_condition": "Empty Style Condition",
|
|
136
|
+
"__end": "End",
|
|
137
|
+
"__entire_day": "Entire Day",
|
|
138
|
+
"__entities": "Entities",
|
|
139
|
+
"__error": "Error",
|
|
140
|
+
"__error_delete": "Error: Delete",
|
|
141
|
+
"__error_get": "Error: Get",
|
|
142
|
+
"__error_getting_tags": "Error getting tags",
|
|
143
|
+
"__error_save": "Error: Save",
|
|
144
|
+
"__error_saving": "Error: Saving",
|
|
145
|
+
"__error_update": "Error: Update",
|
|
146
|
+
"__event_conflict_resolution_method": "Event Conflict Resolution",
|
|
147
|
+
"__execute_task": "Execute Task",
|
|
148
|
+
"__export": "Export",
|
|
149
|
+
"__f": "F",
|
|
150
|
+
"__favorite": "Favorite",
|
|
151
|
+
"__favorites": "Favorites",
|
|
152
|
+
"__fill": "Fill",
|
|
153
|
+
"__filter": "Filter",
|
|
154
|
+
"__filter_type": "Filter type",
|
|
155
|
+
"__filtering": "Filtering",
|
|
156
|
+
"__find": "Find",
|
|
157
|
+
"__find_and_replace": "Find & Replace",
|
|
158
|
+
"__find_instances": "Find Instances",
|
|
159
|
+
"__first": "First",
|
|
160
|
+
"__font_color": "Font Color",
|
|
161
|
+
"__font_color_fade": "Fade Font Color",
|
|
162
|
+
"__font_family": "Font Family",
|
|
163
|
+
"__font_name": "Name",
|
|
164
|
+
"__font_size": "Font Size",
|
|
165
|
+
"__font_style": "Font Style",
|
|
166
|
+
"__font_weight": "Font Weight",
|
|
167
|
+
"__footer": "Footer",
|
|
168
|
+
"__foreground": "Foreground",
|
|
169
|
+
"__format": "Format",
|
|
170
|
+
"__formula": "Formula",
|
|
171
|
+
"__formula_needs_value_requirement": "Formula Variable Is Missing Value",
|
|
172
|
+
"__freehand_dashboard": "Freehand Dashboard",
|
|
173
|
+
"__freehand_dashboard_editor": "Freehand Dashboard Editor",
|
|
174
|
+
"__friday": "Friday",
|
|
175
|
+
"__global_styles": "Global Styles",
|
|
176
|
+
"__grid": "Grid",
|
|
177
|
+
"__height": "Height",
|
|
178
|
+
"__hello_world": "Hello, World!",
|
|
179
|
+
"__hide": "Hide",
|
|
180
|
+
"__hide_advanced": "Hide Advanced",
|
|
181
|
+
"__hide_module_location_filters": "Hide Module Location Filters",
|
|
182
|
+
"__hide_module_tag_filters": "Hide Module Tag Filters",
|
|
183
|
+
"__hide_monitoring_point_tag_filters": "Hide Monitoring Point Tag Filters",
|
|
184
|
+
"__hide_monitoring_point_type_filters": "Hide Monitoring Type Filters",
|
|
185
|
+
"__horizontal_align": "Horizontal Align",
|
|
186
|
+
"__horizontal_alignment": "Horizontal Alignment",
|
|
187
|
+
"__hours": "Hours",
|
|
188
|
+
"__ignore": "Ignore",
|
|
189
|
+
"__image": "Image",
|
|
190
|
+
"__image_fit": "Image Fit",
|
|
191
|
+
"__import": "Import",
|
|
192
|
+
"__importing": "Importing",
|
|
193
|
+
"__import_results": "Import Results",
|
|
194
|
+
"__included": "Included",
|
|
195
|
+
"__increment_weight": "Change size",
|
|
196
|
+
"__insert_col": "Insert Column",
|
|
197
|
+
"__insert_row": "Insert Row",
|
|
198
|
+
"__instances_replaced": "Instances Replaced",
|
|
199
|
+
"__italic": "Italic",
|
|
200
|
+
"__items": "Items",
|
|
201
|
+
"__language": "Language",
|
|
202
|
+
"__last": "Last",
|
|
203
|
+
"__last_name": "Last Name",
|
|
204
|
+
"__layout": "Layout",
|
|
205
|
+
"__left": "Left",
|
|
206
|
+
"__left_flex_start": "Left (flex-start)",
|
|
207
|
+
"__loading": "Loading",
|
|
208
|
+
"__location": "Location",
|
|
209
|
+
"__locations": "Locations",
|
|
210
|
+
"__lock": "Lock",
|
|
211
|
+
"__log_out": "Log Out",
|
|
212
|
+
"__lookup": "Lookup",
|
|
213
|
+
"__m": "M",
|
|
214
|
+
"__manage": "Manage",
|
|
215
|
+
"__mark_favorite": "Mark as favorite",
|
|
216
|
+
"__merge_cell": "Merge Cell",
|
|
217
|
+
"__merge_not_allowed": "This merge is not allowed",
|
|
218
|
+
"__merged_cell": "Merged Cell",
|
|
219
|
+
"__message": "Message",
|
|
220
|
+
"__messages_per_display": "Messages Per Page",
|
|
221
|
+
"__messaging_dashboard": "Messaging Dashboard",
|
|
222
|
+
"__messaging_dashboards_editor": "Messaging Dashboards Editor",
|
|
223
|
+
"__messaging_null": "Messaging",
|
|
224
|
+
"__messaging_widget": "Messaging Widget",
|
|
225
|
+
"__messaging_widgets": "Messaging Widgets",
|
|
226
|
+
"__middle": "Middle",
|
|
227
|
+
"__minutes": "Minutes",
|
|
228
|
+
"__modify_output": "Modify Output",
|
|
229
|
+
"__module": "Module",
|
|
230
|
+
"__modules": "Modules",
|
|
231
|
+
"__monday": "Monday",
|
|
232
|
+
"__monitoring_points": "Monitoring Points",
|
|
233
|
+
"__monthly": "Monthly",
|
|
234
|
+
"__move_cell": "Move Cell",
|
|
235
|
+
"__move_col": "Move Column",
|
|
236
|
+
"__move_down": "Move Down",
|
|
237
|
+
"__move_left": "Move Left",
|
|
238
|
+
"__move_not_allowed": "This move is not allowed",
|
|
239
|
+
"__move_right": "Move Right",
|
|
240
|
+
"__move_row": "Move Row",
|
|
241
|
+
"__move_up": "Move Up",
|
|
242
|
+
"__multi_select": "Multi Select",
|
|
243
|
+
"__multiple": "Multiple",
|
|
244
|
+
"__multiple_cells_selected": "Multiple Cells Selected",
|
|
245
|
+
"__multiple_cols_selected": "Multiple Columns Selected",
|
|
246
|
+
"__multiple_rows_selected": "Multiple Rows Selected",
|
|
247
|
+
"__must_have_date_offset": "Date Offset Must Be Set",
|
|
248
|
+
"__must_have_time_offset": "Time Offset Must Be Set",
|
|
249
|
+
"__must_select_schedule": "Schedule Needs To Be Selected",
|
|
250
|
+
"__must_select_shift": "Shift Needs To Be Selected",
|
|
251
|
+
"__my_profile": "My Profile",
|
|
252
|
+
"__name": "Name",
|
|
253
|
+
"__new": "New",
|
|
254
|
+
"__new_user": "New User",
|
|
255
|
+
"__no": "No",
|
|
256
|
+
"__no_active_alerts_message": "No Active Alerts Message",
|
|
257
|
+
"__no_overlap": "No Overlap",
|
|
258
|
+
"__no_overlap_per_location": "No Overlap Per Location",
|
|
259
|
+
"__none": "None",
|
|
260
|
+
"__normal": "Normal",
|
|
261
|
+
"__nothing_active": "Nothing Active",
|
|
262
|
+
"__nothing_active_style": "Nothing Active Style",
|
|
263
|
+
"__num_of_incidents": "Number Of Incidents",
|
|
264
|
+
"__number": "Number",
|
|
265
|
+
"__number_actions": "Number of Actions",
|
|
266
|
+
"__number_of_incidents": "Number of Incidents",
|
|
267
|
+
"__ok": "Ok",
|
|
268
|
+
"__opacity": "Opacity",
|
|
269
|
+
"__options": "Options",
|
|
270
|
+
"__output": "Output",
|
|
271
|
+
"__overlap_option": "Overlap Option",
|
|
272
|
+
"__overline": "Overline",
|
|
273
|
+
"__padding": "Padding",
|
|
274
|
+
"__padding_horizontal": "Horizontal Padding",
|
|
275
|
+
"__padding_vertical": "Vertical Padding",
|
|
276
|
+
"__page_interval": "Page Interval",
|
|
277
|
+
"__parameter_cant_be_variable": "Variable can't have parameters refrence itself",
|
|
278
|
+
"__parameters": "Parameters",
|
|
279
|
+
"__parameters:": "Parameters:",
|
|
280
|
+
"__password": "Password",
|
|
281
|
+
"__paste": "Paste",
|
|
282
|
+
"__paste_condition": "Paste Conditions",
|
|
283
|
+
"__poll_interval": "Polling Interval (s)",
|
|
284
|
+
"__polled": "Polled",
|
|
285
|
+
"__polling_interval": "Polling Interval (s)",
|
|
286
|
+
"__prefer_acknowldeged": "Prefer Acknowldeged",
|
|
287
|
+
"__prefer_responded": "Prefer Responded",
|
|
288
|
+
"__prefer_set": "Prefer Set",
|
|
289
|
+
"__prefer_started": "Prefer Started",
|
|
290
|
+
"__preview": "Preview",
|
|
291
|
+
"__print": "Print",
|
|
292
|
+
"__properties": "Properties",
|
|
293
|
+
"__ratio": "Ratio",
|
|
294
|
+
"__redo": "Redo",
|
|
295
|
+
"__repeat_actions": "Repeat Actions",
|
|
296
|
+
"__replace": "Replace",
|
|
297
|
+
"__replace_instances": "Replace Instances",
|
|
298
|
+
"__report": "Report",
|
|
299
|
+
"__required": "Required",
|
|
300
|
+
"__reset_custom_styles": "Reset Custom Styles",
|
|
301
|
+
"__responded": "Responded",
|
|
302
|
+
"__result_format:": "Result Format:",
|
|
303
|
+
"__result_type": "Result",
|
|
304
|
+
"__right": "Right",
|
|
305
|
+
"__right_flex_end": "Right (flex-end)",
|
|
306
|
+
"__roles": "Roles",
|
|
307
|
+
"__roll": "Roll",
|
|
308
|
+
"__roll_text": "Text will roll in place",
|
|
309
|
+
"__rotate": "Rotate",
|
|
310
|
+
"__rotate_text": "Text will rotate left to right across the screen",
|
|
311
|
+
"__row": "Row",
|
|
312
|
+
"__row_r": "R",
|
|
313
|
+
"__sa": "Sa",
|
|
314
|
+
"__saturday": "Saturday",
|
|
315
|
+
"__save": "Save",
|
|
316
|
+
"__schedule": "Schedule",
|
|
317
|
+
"__search": "Search",
|
|
318
|
+
"__search_tags": "Search Tags",
|
|
319
|
+
"__seconds": "Seconds",
|
|
320
|
+
"__select": "Select",
|
|
321
|
+
"__select_a_variable": "Select a Variable",
|
|
322
|
+
"__select_all": "Select All",
|
|
323
|
+
"__select_column": "Select Column",
|
|
324
|
+
"__select_row": "Select Row",
|
|
325
|
+
"__select_styles": "Select Styles",
|
|
326
|
+
"__selecte_an_image": "Select An image",
|
|
327
|
+
"__selected": "Selected",
|
|
328
|
+
"__selected_image": "Selected Image",
|
|
329
|
+
"__send_communications": "Send Communications",
|
|
330
|
+
"__set": "Set",
|
|
331
|
+
"__settings": "Settings",
|
|
332
|
+
"__shift": "Shift",
|
|
333
|
+
"__shift_filter": "Shift Filter",
|
|
334
|
+
"__shift_filter_builder": "Shift Filter Builder",
|
|
335
|
+
"__shift_no_break": "Shift, No Break",
|
|
336
|
+
"__shifts": "Shifts",
|
|
337
|
+
"__show": "Show",
|
|
338
|
+
"__show_elapsed_time": "Show Elapsed Time",
|
|
339
|
+
"__show_footer": "Show Footer",
|
|
340
|
+
"__single_value_lookup": "Single Value Lookup",
|
|
341
|
+
"__slot": "Slot",
|
|
342
|
+
"__slots": "Slots",
|
|
343
|
+
"__solid": "Solid",
|
|
344
|
+
"__specific_shift": "Specific Shift",
|
|
345
|
+
"__start": "Start",
|
|
346
|
+
"__started": "Started",
|
|
347
|
+
"__state": "State",
|
|
348
|
+
"__state_change_text": "State Change: Choose a specific style to be applied when the state of an alarm changes (e.g. 'Started' or 'Responded').",
|
|
349
|
+
"__states": "States",
|
|
350
|
+
"__status": "Status",
|
|
351
|
+
"__stretch": "Stretch",
|
|
352
|
+
"__style": "Style",
|
|
353
|
+
"__style_condition": "Style Condition",
|
|
354
|
+
"__style_conditions": "Style Conditions",
|
|
355
|
+
"__style_preview": "Style Preview",
|
|
356
|
+
"__styles": "Styles",
|
|
357
|
+
"__styles_editor": "Styles Editor",
|
|
358
|
+
"__su": "Su",
|
|
359
|
+
"__subscription": "Subscription",
|
|
360
|
+
"__success_delete": "Success: Delete",
|
|
361
|
+
"__success_get": "Success: Get",
|
|
362
|
+
"__success_save": "Success: Save",
|
|
363
|
+
"__success_update": "Success: Update",
|
|
364
|
+
"__summary_messaging_dashboards": "Summary Messaging Dashboard",
|
|
365
|
+
"__sunday": "Sunday",
|
|
366
|
+
"__t": "T",
|
|
367
|
+
"__table": "Table",
|
|
368
|
+
"__table_dashboard": "Table Dashboard",
|
|
369
|
+
"__table_dashboard_editor": "Table Dashboard Editor",
|
|
370
|
+
"__table_name_requirement": "Table Name Does Not Meet Length Requirement",
|
|
371
|
+
"__table_null": "Table",
|
|
372
|
+
"__table_properties": "Properties",
|
|
373
|
+
"__table_saved": "Table Saved",
|
|
374
|
+
"__table_selected": "Table Selected",
|
|
375
|
+
"__table_widget": "Table Widget",
|
|
376
|
+
"__tag": "Tag",
|
|
377
|
+
"__tag_filter": "Tag Filter",
|
|
378
|
+
"__tag_filter_settings": "Tag Filter Settings",
|
|
379
|
+
"__tag_text": "Tag: Enter a tag and only Alerts with that tag will show on the display (e.g. 'maintenance').",
|
|
380
|
+
"__tags": "Tags",
|
|
381
|
+
"__task": "Task",
|
|
382
|
+
"__test": "Test",
|
|
383
|
+
"__text": "Text",
|
|
384
|
+
"__text_alignment": "Text Aligment",
|
|
385
|
+
"__text_animation": "Text Animation",
|
|
386
|
+
"__text_decoration": "Text Decoration",
|
|
387
|
+
"__th": "Th",
|
|
388
|
+
"__this_action": "This action can not be undone",
|
|
389
|
+
"__thursday": "Thursday",
|
|
390
|
+
"__time": "Time",
|
|
391
|
+
"__time_end_off_set": "End Time Offset",
|
|
392
|
+
"__time_format": "Time Format",
|
|
393
|
+
"__time_option": "Time Option",
|
|
394
|
+
"__time_option_none_requirement": "Formula Variable Is Missing Value",
|
|
395
|
+
"__time_slots": "Time Slots",
|
|
396
|
+
"__time_span": "Time Span",
|
|
397
|
+
"__time_start_off_set": "Start Time Offset",
|
|
398
|
+
"__time_threshold_text": "Time Threshold: Choose a specific style to be applied after a specified amount of time transpires (e.g. '5 minutes after activation').",
|
|
399
|
+
"__time_thresholds": "Time Thresholds",
|
|
400
|
+
"__times_new_roman": "Times New Roman",
|
|
401
|
+
"__timespan": "Time Span",
|
|
402
|
+
"__to": "To",
|
|
403
|
+
"__top": "Top",
|
|
404
|
+
"__top_flex_start": "Top (flex-start)",
|
|
405
|
+
"__total_time": "Total Time",
|
|
406
|
+
"__touch": "Touch",
|
|
407
|
+
"__trigger": "Trigger",
|
|
408
|
+
"__triggers": "Triggers",
|
|
409
|
+
"__tuesday": "Tuesday",
|
|
410
|
+
"__type": "Type",
|
|
411
|
+
"__type_tags": "Type Tags",
|
|
412
|
+
"__types": "Types",
|
|
413
|
+
"__un_merge_cell": "UnMerge Cell",
|
|
414
|
+
"__underline": "Underline",
|
|
415
|
+
"__undo": "Undo",
|
|
416
|
+
"__unlock": "Unlock",
|
|
417
|
+
"__unmark_favorite": "Unmark as favorite",
|
|
418
|
+
"__unsaved_message": "Want to save your changes?",
|
|
419
|
+
"__unsaved_title": "Unsaved Changes",
|
|
420
|
+
"__up": "Up",
|
|
421
|
+
"__update": "Update",
|
|
422
|
+
"__updated": "Updated",
|
|
423
|
+
"__url": "URL",
|
|
424
|
+
"__use_linked_schedule": "Use Linked Schedule",
|
|
425
|
+
"__user": "User",
|
|
426
|
+
"__users": "Users",
|
|
427
|
+
"__value": "Value",
|
|
428
|
+
"__variable": "Variable",
|
|
429
|
+
"__variable_name": "Variable Name",
|
|
430
|
+
"__variable_name_duplicate_requirement": "Variable Names Must Be Unique",
|
|
431
|
+
"__variable_name_length_requirement": "Variable Name Does Not Meet Length Requirement",
|
|
432
|
+
"__variable_type": "Type",
|
|
433
|
+
"__variables": "Variables",
|
|
434
|
+
"__variables_selected": "Variables Selected",
|
|
435
|
+
"__variation": "Variation",
|
|
436
|
+
"__vertical_align": "Vertical Align",
|
|
437
|
+
"__vertical_alignment": "Vertical Alignment",
|
|
438
|
+
"__viewers": "Viewers",
|
|
439
|
+
"__visibility": "Visibility",
|
|
440
|
+
"__w": "W",
|
|
441
|
+
"__warning": "Warning",
|
|
442
|
+
"__warning_name_empty": "The Contact name cannot be empty",
|
|
443
|
+
"__warning_name_exist": "The Item name already exists, please use a different name",
|
|
444
|
+
"__wednesday": "Wednesday",
|
|
445
|
+
"__weekly": "Weekly",
|
|
446
|
+
"__widget": "Widget",
|
|
447
|
+
"__widgets": "Widgets",
|
|
448
|
+
"__width": "Width",
|
|
449
|
+
"__yes": "Yes",
|
|
450
|
+
"__you_sure": "Are you sure you want to delete?"
|
|
451
|
+
}
|