@ms-atlas-module/datastudio-datafactory 0.1.36

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of @ms-atlas-module/datastudio-datafactory might be problematic. Click here for more details.

Files changed (111) hide show
  1. package/_generated/ClientResources.js +1549 -0
  2. package/_generated/Framework.js +97 -0
  3. package/_generated/Svg.js +201 -0
  4. package/bootstrapper/BreadcrumbsKnockoutBinding.js +25 -0
  5. package/bootstrapper/CSS/Callout.css +43 -0
  6. package/bootstrapper/CSS/Common.css +22 -0
  7. package/bootstrapper/CSS/FormFields.css +133 -0
  8. package/bootstrapper/CSS/InlineBlock.css +34 -0
  9. package/bootstrapper/CSS/ParameterGroups.css +77 -0
  10. package/bootstrapper/CSS/Pivot.css +25 -0
  11. package/bootstrapper/CSS/Wizard.css +197 -0
  12. package/bootstrapper/CalloutBinding.js +52 -0
  13. package/bootstrapper/CollapsibleKnockoutBinding.js +70 -0
  14. package/bootstrapper/CopyBinding.js +150 -0
  15. package/bootstrapper/FilterFlyoutKnockoutBinding.js +114 -0
  16. package/bootstrapper/FormFields.js +397 -0
  17. package/bootstrapper/InlineBlockBinding.js +69 -0
  18. package/bootstrapper/JQueryUIBindings.js +152 -0
  19. package/bootstrapper/KnockoutBindings.js +635 -0
  20. package/bootstrapper/LoadingBinding.js +54 -0
  21. package/bootstrapper/MonacoEditorKnockoutBinding.js +67 -0
  22. package/bootstrapper/ParameterGroupsBinding.js +289 -0
  23. package/bootstrapper/PivotKnockoutBinding.js +61 -0
  24. package/bootstrapper/StatusCalendarFlyoutKnockoutBinding.js +398 -0
  25. package/bootstrapper/StatusCalendarKnockoutBinding.js +107 -0
  26. package/bootstrapper/TelemetryKnockoutBinding.js +68 -0
  27. package/bootstrapper/WinJSButtonKnockoutBinding.js +72 -0
  28. package/bootstrapper/WinJSKnockoutBindings.js +49 -0
  29. package/bootstrapper/WizardBinding.js +611 -0
  30. package/bootstrapper/startup.js +29 -0
  31. package/libs/VivaGraphControl/Content/CSS/Graph.css +157 -0
  32. package/libs/VivaGraphControl/Content/CSS/LightTheme.css +699 -0
  33. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Base/Base.TriggerableLifetimeManager.js +190 -0
  34. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/Base.js +647 -0
  35. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/Image.js +113 -0
  36. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/KnockoutExtensions.js +1064 -0
  37. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/DockedBalloon.js +18 -0
  38. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Animation.js +192 -0
  39. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Commands/MoveNodes.js +83 -0
  40. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Geometry.js +167 -0
  41. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphEntityViewModel.js +260 -0
  42. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphViewModel.js +338 -0
  43. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphWidget.Constants.js +178 -0
  44. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphWidget.js +5190 -0
  45. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/MouseCapture.js +148 -0
  46. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/SvgUtils.js +164 -0
  47. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Detection.js +658 -0
  48. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Resize.js +241 -0
  49. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Util.Private.js +236 -0
  50. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Util.js +905 -0
  51. package/libs/WinJS/WinJs.min.js +61909 -0
  52. package/libs/WinJS/ui-light.css +8500 -0
  53. package/package.json +15 -0
  54. package/scripts/AppContext.js +262 -0
  55. package/scripts/ExposureControl.js +11 -0
  56. package/scripts/Framework/Model/ActivityWindowCache.js +390 -0
  57. package/scripts/Framework/Model/ArmDataFactoryCache.js +77 -0
  58. package/scripts/Framework/Model/Contracts/Activity.js +83 -0
  59. package/scripts/Framework/Model/Contracts/ActivityWindow.js +185 -0
  60. package/scripts/Framework/Model/Contracts/BaseEncodable.js +106 -0
  61. package/scripts/Framework/Model/Contracts/Common.js +19 -0
  62. package/scripts/Framework/Model/Contracts/DataArtifact.js +100 -0
  63. package/scripts/Framework/Model/Contracts/Diagram.js +9 -0
  64. package/scripts/Framework/Model/Contracts/Encodable.js +113 -0
  65. package/scripts/Framework/Model/Contracts/Gateway.js +98 -0
  66. package/scripts/Framework/Model/Contracts/LinkedService.js +200 -0
  67. package/scripts/Framework/Model/Contracts/Pipeline.js +197 -0
  68. package/scripts/Framework/Model/DataCache.js +105 -0
  69. package/scripts/Framework/Model/DataFactoryCache.js +24 -0
  70. package/scripts/Framework/Model/Filter.js +186 -0
  71. package/scripts/Framework/Model/Helpers/ActivityWindowHelper.js +185 -0
  72. package/scripts/Framework/Model/MonitoringView.js +40 -0
  73. package/scripts/Framework/Shared/Constants.js +27 -0
  74. package/scripts/Framework/Shared/DataConstants.js +61 -0
  75. package/scripts/Framework/Shared/Disposable.js +53 -0
  76. package/scripts/Framework/Shared/IconResources.js +59 -0
  77. package/scripts/Framework/Shared/Resources/IbizaSvgs.js +241 -0
  78. package/scripts/Framework/Shared/TypeDeclarations.js +4 -0
  79. package/scripts/Framework/Telemetry/Telemetry.js +78 -0
  80. package/scripts/Framework/UI/Breadcrumbs.js +84 -0
  81. package/scripts/Framework/UI/Command.js +231 -0
  82. package/scripts/Framework/UI/ContextMenu.js +80 -0
  83. package/scripts/Framework/UI/Loader.js +11 -0
  84. package/scripts/Framework/UI/Menu.js +65 -0
  85. package/scripts/Framework/UI/PanelMessage.js +25 -0
  86. package/scripts/Framework/UI/Refresh.js +70 -0
  87. package/scripts/Framework/UI/Spinner.js +61 -0
  88. package/scripts/Framework/UI/StatusCalendar.js +1070 -0
  89. package/scripts/Framework/UI/Toolbar.js +84 -0
  90. package/scripts/Framework/Util/Datetime.js +258 -0
  91. package/scripts/Framework/Util/Log.js +10 -0
  92. package/scripts/Framework/Util/ResourceIdUtil.js +56 -0
  93. package/scripts/Framework/Util/Security.js +73 -0
  94. package/scripts/Framework/Util/Util.js +332 -0
  95. package/scripts/Framework/Views/HoverFlyout.js +92 -0
  96. package/scripts/Handlers/ErrorHandler.js +176 -0
  97. package/scripts/Handlers/MessageHandler.js +115 -0
  98. package/scripts/Handlers/MonitoringViewHandler.js +199 -0
  99. package/scripts/Handlers/RoutingHandler.js +364 -0
  100. package/scripts/Handlers/WinJSHandlers.js +265 -0
  101. package/scripts/MonitoringViewContext.js +75 -0
  102. package/scripts/Services/AzureInsightsService.js +162 -0
  103. package/scripts/Services/AzureResourceManagerService.js +869 -0
  104. package/scripts/Services/BaseService.js +232 -0
  105. package/scripts/Services/DataFactoryService.js +204 -0
  106. package/scripts/Services/HDInsightArmService.js +59 -0
  107. package/scripts/ViewContext.js +9 -0
  108. package/stylesheets/main.css +1042 -0
  109. package/views/Edit/DateTimeFilterViewModel.js +211 -0
  110. package/views/Edit/FilterViewModel.js +131 -0
  111. package/views/Shared/ProvisioningState.js +11 -0
@@ -0,0 +1,1549 @@
1
+ var ClientResources = {
2
+ createFactoryBladeTitle: "New data factory",
3
+ createFactoryMenuItemDescription:
4
+ "Create a data factory that holds datasets, pipelines, etc.",
5
+ createFactoryMenuItemText: "Create a data factory",
6
+ createFactoryPartTitle: "Create a data factory",
7
+ createFactoryProvisioningPartDescription: "Creates a new data factory",
8
+ dataArtifactPropertiesNameLabel: "Table",
9
+ dataArtifactsTitle: "Datasets",
10
+ dataSlicesTitle: "Data slices",
11
+ factoryInformationWizardStepBladeName: "Data factory information",
12
+ factoryInformationWizardStepTitle: "Data factory information",
13
+ factoryListLensTitle: "Existing data factories",
14
+ factoryLocationHeading: "Location",
15
+ factoryNameFieldLabel: "Data factory name",
16
+ factoryNameGridHeading: "Data factory",
17
+ factoriesBladeTitle: "Data factories",
18
+ factorySubscriptionHeading: "Subscription",
19
+ factorySubtitle: "Data factory",
20
+ factoryTypeHeading: "Type",
21
+ mdpExtensionDescription:
22
+ "The starting point for all your Azure Data Factory needs.",
23
+ mdpExtensionTitle: "MDW extension",
24
+ sliceEndTime: "Slice end time",
25
+ slicesList: "List of slices",
26
+ sliceStartTime: "Slice start time",
27
+ sliceStatus: "Status",
28
+ statusFailed: "Failed",
29
+ statusInProgress: "In progress",
30
+ statusNotSpecified: "Not specified",
31
+ statusOnHold: "On hold",
32
+ statusPendingExecution: "Pending execution",
33
+ statusReady: "Ready",
34
+ statusRetry: "Retry",
35
+ statusSkip: "Skip",
36
+ statusTimedOut: "Timed out",
37
+ statusWaiting: "Waiting...",
38
+ factoryAssetText: "Data factory",
39
+ factoryPropertiesTitle: "Data Factory",
40
+ linkedServiceAssetText: "Linked Service",
41
+ summaryLensTitle: "Summary",
42
+ learnMoreTitle: "Learn more",
43
+ propertiesTitle: "Properties",
44
+ quickStartTitle: "Quick start",
45
+ consumedByTitle: "Consumed by",
46
+ producedByTitle: "Produced by",
47
+ dataArtifactDetailsTitle: "Table",
48
+ activityWindowTitle: "Activity Window Explorer",
49
+ activityWindowPropertiesTitle: "Activity Window",
50
+ dataSliceTitle: "Data slice",
51
+ todayWithTime: "Today {0}",
52
+ tomorrowWithTime: "Tomorrow {0}",
53
+ yesterdayWithTime: "Yesterday {0}",
54
+ sliceRetryCount: "Retry count",
55
+ runsTitle: "Activity windows",
56
+ artifactNameAndSliceDate: "{0}, {1}",
57
+ runActivityTitle: "Activity",
58
+ runCompletedTitle: "Run completed at",
59
+ runDurationTitle: "Duration",
60
+ runPipelineTitle: "Pipeline",
61
+ runStartedTitle: "Run started at",
62
+ runStateTitle: "Status",
63
+ runDetailsSubtitle: "Activity window details",
64
+ daysWithValue: "{0} days",
65
+ hoursWithValue: "{0} hours",
66
+ minutesWithValue: "{0} minutes",
67
+ secondsWithValue: "{0} seconds",
68
+ createFactoryFailed: "Data factory creation failed.",
69
+ createFactorySucceeded: "Data factory has been created successfully!",
70
+ addNewInputCommandLabel: "Add new input",
71
+ addNewOutputCommandLabel: "Add new output",
72
+ deleteCommandText: "Delete",
73
+ commentCommandText: "Comment",
74
+ pinCommandText: "Pin",
75
+ deleteConfirmation: "Are you sure you want to delete the data factory(s)?",
76
+ deletePrompt: "Delete it?",
77
+ factoryDeleteCommandFailure: "Delete factory command on {0} failed.",
78
+ all: "All",
79
+ errorOccurred: "An error has occurred.",
80
+ nextButtonText: "Next",
81
+ previousButtonText: "Previous",
82
+ refreshButtonText: "Refresh",
83
+ rerunCommandText: "Run",
84
+ statusAllocatingResources: "Allocating resources",
85
+ statusCanceled: "Canceled",
86
+ statusConfiguring: "Configuring",
87
+ statusFailedExecution: "Failed execution",
88
+ statusFailedResourceAllocation: "Failed resource allocation",
89
+ statusRunning: "Running",
90
+ statusStarting: "Starting",
91
+ statusSucceeded: "Succeeded",
92
+ timestampProperty: "Timestamp",
93
+ batchTimeProperty: "Slice batch time",
94
+ continuationTokenProperty: "Continuation Token",
95
+ dataSliceEndTimeProperty: "Data slice end time",
96
+ dataSliceStartTimeProperty: "Data slice start time",
97
+ percentCompleteProperty: "Percent complete",
98
+ resumptionTokenProperty: "Resumption token",
99
+ retryAttemptCountProperty: "Retry attempts",
100
+ pipelinesListLensTitle: "Pipelines",
101
+ pipelineEndGridHeading: "End",
102
+ pipelineIsPausedGridHeading: "Paused",
103
+ pipelineNameGridHeading: "Pipeline",
104
+ pipelineStartGridHeading: "Start",
105
+ runLogsTitle: "Log files",
106
+ blobDate: "Last modified",
107
+ blobName: "Name",
108
+ blobDownload: "Download",
109
+ blobSize: "Size",
110
+ unitBytesFull: "{0} bytes",
111
+ unitGigabytesShort: "{0} GB",
112
+ unitKilobytesShort: "{0} KB",
113
+ unitMegabytesShort: "{0} MB",
114
+ unitPetabytesShort: "{0} PB",
115
+ unitTerabytesShort: "{0} TB",
116
+ factoryDeletionErrorLabel: "Deletion failed",
117
+ factoryDeletionErrorMessage:
118
+ "There was an error while deleting the data factory. {message} {code}",
119
+ unknownText: "Unknown",
120
+ pipelineArtifactsConsumedShortTitle: "Consumed",
121
+ pipelineArtifactsConsumedTitle: "Consumed datasets",
122
+ pipelineArtifactsProducedShortTitle: "Produced",
123
+ pipelineArtifactsProducedTitle: "Produced datasets",
124
+ pipelineBladeTitle: "Pipeline",
125
+ pipelineDeploymentDate: "Deployment time",
126
+ pipelineProperties: "Properties",
127
+ pipelinePropertiesDeployedDate: "Deployed",
128
+ pipelinePropertiesEndDate: "End date",
129
+ pipelinePropertiesIsPaused: "Paused",
130
+ pipelinePropertiesProvisioningState: "Provisioning State",
131
+ pipelinePropertiesStartDate: "Start date",
132
+ gridLoadingMessage: "Loading...",
133
+ noRunLogsGridMessage: "No log files for this activity run.",
134
+ noDataArtifactsMessage: "No datasets in this data factory.",
135
+ noDataSlicesInTimeRangeMessage:
136
+ "No data slices between {0} and {1} matching the status filter.",
137
+ noDataFactoriesMessage: "No data factories.",
138
+ noPipelinesMessage: "No pipelines in this data factory.",
139
+ retryAttemptNumberProperty: "Retry attempt",
140
+ runProperties: "Properties",
141
+ emptyFieldPlaceholder: "--",
142
+ activityRunDetailsEmptyMessage:
143
+ "Please select a single Activity Window to display.",
144
+ errorMessageTitle: "Error message",
145
+ statusFailedValidation: "Failed validation",
146
+ statusPendingValidation: "Pending validation",
147
+ statusRetryValidation: "Retry validation",
148
+ azureStorageLinkedService: "Azure storage",
149
+ noRunsGridMessage: "No runs for this data slice.",
150
+ tableCreationHeader: "Created",
151
+ frequencyTitle: "Frequency",
152
+ intervalTitle: "Interval",
153
+ monitoringLensTitle: "Monitoring",
154
+ dataFactory: "Data factory",
155
+ enterName: "Enter name",
156
+ enterDescription: "Enter description here",
157
+ enterNameDataFactory: "Enter name for data factory",
158
+ regexFactoryNameValidationMessage:
159
+ "The name can contain only letters, numbers and hyphens. The first and last characters must be a letter or number. Spaces are not allowed.",
160
+ selectSubscription: "Select subscription",
161
+ subscriptionName: "Subscription name",
162
+ subscriptionIdValidationMessage: "Subscription id must be selected.",
163
+ resourceGroupName: "Resource group name",
164
+ resourceGroupNameProperty: "Resource Group Name",
165
+ selectResourceGroup: "Select resource group",
166
+ floorplanBladeTitle: "Diagram",
167
+ floorplanPartTitle: "Diagram",
168
+ noTablesWithErrorMessage: "No datasets have slices fail execution since {0}.",
169
+ pipelinesSummaryCollectionTitle: "Pipelines",
170
+ tablesWithErrorShortTitle: "With errors",
171
+ tablesWithErrorLongTitle: "Datasets with errors",
172
+ statusValidationInProgress: "Validation in progress",
173
+ noRecentDataSlicesMessage:
174
+ "No data slices since {0}. Click here to see and filter for other slices.",
175
+ dataSlicesBySliceTimeTitle: "Data slices (by slice time)",
176
+ emptyFactoryNameValidationMessage: "Factory name is required.",
177
+ resourceGroupValidationMessage: "Resource group must be selected.",
178
+ resourceGroupNotInSubscription:
179
+ "This resource group is not in the selected subscription.",
180
+ noProblemDataSlicesMessage:
181
+ "No data slices with problems since {0}. Click here to see and filter for other slices.",
182
+ problemSlicesTitle: "Problem slices",
183
+ maxNameLengthValidationMessage:
184
+ "The name must be fewer than 64 characters long.",
185
+ emptyLocationValidationMessage: "Location cannot be empty.",
186
+ clipboardFallbackMessage: "Press 'Ctrl+C, Enter' to copy to clipboard",
187
+ enterRegion: "Enter region",
188
+ regionName: "Region name",
189
+ westus: "West US",
190
+ resourceGroupTitle: "Resource group",
191
+ factoryIsEmpty: "This factory contains no pipelines or datasets.",
192
+ factoryQuickStartText: "Click here to get started.",
193
+ datasetNameGridHeading: "Dataset",
194
+ datasetWithErrorNameGridHeading:
195
+ "Failed datasets generated with execution time after {0}",
196
+ factoryNameLabel: "Name",
197
+ availability: "Availability",
198
+ availabilityEveryDay: "Every day",
199
+ availabilityEveryDayMultiple: "Every {0} days",
200
+ availabilityEveryHour: "Every hour",
201
+ availabilityEveryHourMultiple: "Every {0} hours",
202
+ availabilityEveryMinute: "Every minute",
203
+ availabilityEveryMinuteMultiple: "Every {0} minutes",
204
+ availabilityEveryMonth: "Every month",
205
+ availabilityEveryMonthMultiple: "Every {0} months",
206
+ availabilityEveryWeek: "Every week",
207
+ availabilityEveryWeekMultiple: "Every {0} weeks",
208
+ sliceAvailabilityLabel: "Slice availability",
209
+ filterSlicesCommandTitle: "Filter",
210
+ filterBySliceStartDateTimeSectionLabel:
211
+ "Show data slices with start time between the times (in UTC):",
212
+ filterBySliceStatusSectionLabel: "Slice status",
213
+ filterEndTimeFieldLabel: "To",
214
+ filterStartTimeFieldLabel: "From",
215
+ statusLongRetry: "Long retry",
216
+ pipelinePropertiesNameLabel: "Pipeline",
217
+ accessLensTitle: "Access",
218
+ dataFactoryMetricsTitle: "Data factory metrics",
219
+ failedRunsMetricTitle: "Failed runs",
220
+ successfulRunsMetricTitle: "Successful runs",
221
+ operationsLensTitle: "Operations",
222
+ tableSource: "Table source",
223
+ pipelineSource: "Pipeline source",
224
+ statusAllFailed: "All failed",
225
+ statusAllInProgress: "All in progress",
226
+ statusAllPending: "All pending",
227
+ noDataArtifactsConsumedMessage: "No datasets consumed by this pipeline.",
228
+ noDataArtifactsProducedMessage: "No datasets produced by this pipeline.",
229
+ noActivitiesMessage: "No activities in this pipeline.",
230
+ activityHeader: "Activity",
231
+ linkedServiceType: "Type",
232
+ activityConsumedDatasetsShortTitle: "Consumed",
233
+ activityConsumedDatasetsTitle: "Consumed datasets",
234
+ activityProducedDatasetsShortTitle: "Produced",
235
+ activityProducedDatasetsTitle: "Produced datasets",
236
+ noActivityConsumedDatasetsMessage: "No consumed datasets for this activity.",
237
+ noActivityProducedDatasetsMessage: "No produced datasets for this activity.",
238
+ noPropertiesMessage: "Could not load properties. Please try again later.",
239
+ factoryPropertiesNameLabel: "Data factory",
240
+ activityDetailsTitle: "Activity",
241
+ activitiesListLensTitle: "Details",
242
+ tableSchema: "Table schema",
243
+ tableSchemaNameGridHeading: "Column Name",
244
+ tableSchemaTypeGridHeading: "Type",
245
+ noTableSchemaMessage: "No schema for this table.",
246
+ tableSchemaLengthGridHeading: "Length",
247
+ tableSchemaNullableGridHeading: "Nullable",
248
+ nullableFalse: "No",
249
+ nullableTrue: "Yes",
250
+ azureBlobTable: "Azure blob table",
251
+ azureSqlDatabaseTable: "Azure SQL database table",
252
+ azureStorageTable: "Azure storage table",
253
+ sqlDatabaseTable: "SQL database table",
254
+ activityPropertiesConcurrency: "Concurrency",
255
+ activityPropertiesDelay: "Delay",
256
+ activityPropertiesDescription: "Description",
257
+ activityPropertiesExecutesOnFailure: "Executes on failure",
258
+ activityPropertiesExecutionPriorityOrder: "Execution priority order",
259
+ activityPropertiesLinkedServiceName: "Linked service",
260
+ activityPropertiesLongRetry: "Long retry",
261
+ activityPropertiesLongRetryInterval: "Long retry interval",
262
+ activityPropertiesName: "Activity",
263
+ activityPropertiesRequiresHotStandby: "Requires hot standby",
264
+ activityPropertiesRetry: "Retry",
265
+ activityPropertiesStyle: "Style",
266
+ activityPropertiesTimeout: "Timeout",
267
+ activityPropertiesType: "Type",
268
+ activitiesListTitle: "Pipeline activities",
269
+ activityScript: "Activity script",
270
+ copyActivity: "Copy activity",
271
+ dotNet: "Custom .NET",
272
+ dotNetActivity: "Custom .NET activity",
273
+ hDInsightActivity: "HDInsight activity",
274
+ storedProcedure: "Stored procedure",
275
+ storedProcedureActivity: "Stored procedure activity",
276
+ mapReduce: "Map reduce",
277
+ mapReduceActivity: "Map reduce activity",
278
+ activityPropertiesTransformationType: "Transformation type",
279
+ scriptLinkedService: "Script linked service: ",
280
+ scriptPath: "Script path: ",
281
+ typeSeparator: " - ",
282
+ hDInsightActivityWithType: "{0} - {1}",
283
+ noActivityScript: "No script in this activity.",
284
+ statusFailedDescription:
285
+ "Execution of the run that produces the slice failed.",
286
+ statusFailedValidationDescription: "Validation of the slice failed.",
287
+ statusInProgressDescription: "Data processing is in-progress.",
288
+ statusLongRetryDescription:
289
+ "A slice will be in this status if LongRetry is specified in the table JSON, and regular retries for the slice have failed.",
290
+ statusPendingExecutionDescription: "Data processing has not started yet.",
291
+ statusPendingValidationDescription:
292
+ "Data slice is waiting for validation against validation policies before being processed.",
293
+ statusReadyDescription:
294
+ "Data processing has completed and the data slice is ready.",
295
+ statusRetryDescription: "Retrying the run that produces the slice.",
296
+ statusRetryValidationDescription: "Retrying the validation of the slice.",
297
+ statusSkipDescription: "Skip processing of the slice.",
298
+ statusTimedOutDescription: "Data processing of the slice has timed out.",
299
+ statusValidationInProgressDescription:
300
+ "Validation of the slice (based on the policies defined in the table JSON) is being performed.",
301
+ breadcrumbBackTooltip: "Back",
302
+ selectionModeTooltip: "Selection mode",
303
+ zoomInTooltip: "Zoom in",
304
+ zoomOneHundredPercentTooltip: "Zoom to 100%",
305
+ zoomOutTooltip: "Zoom out",
306
+ zoomToFitTooltip: "Zoom to fit",
307
+ getStartedTitle: "Get started",
308
+ documentation: "Documentation",
309
+ forums: "Forums",
310
+ installDotNET: "Install the .NET SDK",
311
+ installPowerShell: "Install the PowerShell SDK",
312
+ overviewVideo: "Overview video",
313
+ pricing: "Pricing",
314
+ samples: "Samples",
315
+ toolsTitle: "Get the tools",
316
+ tutorialGuide: "Tutorial guide",
317
+ tutorialVideo: "Tutorial video",
318
+ nextTimePeriodTooltip: "Next {0}",
319
+ previousTimePeriodTooltip: "Previous {0}",
320
+ timePeriodDay: "day",
321
+ timePeriodDayMultiple: "{0} days",
322
+ timePeriodHour: "hour",
323
+ timePeriodHourMultiple: "{0} hours",
324
+ timePeriodMonth: "month",
325
+ timePeriodMonthMultiple: "{0} months",
326
+ timePeriodWeek: "week",
327
+ timePeriodWeekMultiple: "{0} weeks",
328
+ timePeriodYear: "year",
329
+ timePeriodYearMultiple: "{0} years",
330
+ activityAssetText: "Activity",
331
+ sliceAssetText: "Slice",
332
+ tableAssetText: "Table",
333
+ pipelineAssetText: "Pipeline",
334
+ linkedServiceAzureBlobLocation: "Azure Blob Storage",
335
+ linkedServiceAzureSqlTableLocation: "Azure SQL database",
336
+ linkedServiceAzureTableLocation: "Azure table storage",
337
+ linkedServiceCustomLocation: "Data factory custom location",
338
+ linkedServiceOnPremisesSqlServerTableLocation: "On-premises SQL database",
339
+ linkedServiceTypeLongLabel: "Linked service type",
340
+ factoryNameAvailabilityMessage: 'Data factory name "{0}" is not available.',
341
+ statusNone: "None",
342
+ statusNoneDescription:
343
+ "A slice that used to exist with a different status, but has been reset.",
344
+ rerunCommandErrorMessage:
345
+ "Could not set data slice to be run. {message} {code}",
346
+ rerunCommandErrorTitle: "Data slice could not be run.",
347
+ runTypeCopy: "Copy",
348
+ runTypeCustom: "Custom",
349
+ runTypeScript: "Script",
350
+ runTypeUnknown: "Unknown",
351
+ runTypeValidation: "Validation",
352
+ runTypeTitle: "Type",
353
+ invalidSubscription:
354
+ "The selected subscription is not valid, please choose a different one.",
355
+ jarFilePath: "JAR file path: {0}",
356
+ jarLinkedService: "JAR linked service: {0}",
357
+ displayTextForLargeLogFile:
358
+ "Loaded only first portion of the file due to size. To get the entire file, download it.",
359
+ factoryProvisioningFailedActionBarText:
360
+ "Provisioning this factory failed. See properties for details.",
361
+ pipelineProvisioningFailedActionBarText:
362
+ "Provisioning this pipeline failed. See properties for details.",
363
+ tableProvisioningFailedActionBarText:
364
+ "Provisioning this table failed. See properties for details.",
365
+ provisioningStateTitle: "Provisioning state",
366
+ azureML: "AzureML",
367
+ azureMLActivity: "AzureML activity",
368
+ azureMLLinkedService: "Azure ML Batch scoring",
369
+ azureSqlLinkedService: "Azure SQL database",
370
+ hDInsightBYOCLinkedService: "HDInsight cluster (bring your own cluster)",
371
+ hDInsightOnDemandLinkedService: "HDInsight cluster (on-demand)",
372
+ onPremisesSqlLinkedService: "SQL Server",
373
+ localWithDateTime: "{0} local",
374
+ runListCompletedTitle: "Completed",
375
+ runListStartedTitle: "Started",
376
+ hDInsightLinkedService: "HDInsight cluster",
377
+ activityPropertiesClassName: "Class name",
378
+ activityPropertiesJarFilePath: "JAR file path",
379
+ activityPropertiesJarLinkedService: "JAR linked service",
380
+ activityPropertiesScript: "Script",
381
+ activityPropertiesScriptLinkedService: "Script linked service",
382
+ activityPropertiesScriptPath: "Script path",
383
+ linkedServiceNameGridHeading: "Linked service",
384
+ resetFilterButtonLabel: "Reset",
385
+ revalidateCommandErrorMessage:
386
+ "Could not set data slice to be validated. {message} {code}",
387
+ revalidateCommandErrorTitle: "Data slice could not be validated.",
388
+ revalidateCommandText: "Validate",
389
+ azureDataFactoryExtension: "Azure Data Factory Extension",
390
+ blobFetchFailedWithReason: "Blob retrieval failed with reason: {0}",
391
+ emptyBlobString: "No content.",
392
+ layoutSavedMessage: "Last edited by {0} {1}.",
393
+ unknownUser: "Unknown",
394
+ nameFormat: "{0} {1}",
395
+ lineageDisplayTooltip:
396
+ "Show lineage. Highlights upstream and downstream items of selected items.",
397
+ azureBlobLocationFileNameTitle: "Azure blob file name",
398
+ azureBlobLocationFolderPathTitle: "Azure blob folder path",
399
+ azureSqlTableLocationTableNameTitle: "Azure SQL database table name",
400
+ azureTableLocationTableNameTitle: "Azure table name",
401
+ onPremisesSqlServerTableLocationTableNameTitle:
402
+ "On-premises SQL Server database table name",
403
+ linkedServiceNameLongLabel: "Linked service name",
404
+ linkedServiceNameProperty: "Linked Service Name",
405
+ connectionStringProperty: "Connection String",
406
+ tableTypeLabel: "Type",
407
+ clusterLocationLabel: "Cluster location",
408
+ clusterSizeLabel: "Cluster size",
409
+ clusterUriLabel: "Cluster URI",
410
+ connectionStringLabel: "Connection string",
411
+ gatewayLocationLabel: "Gateway location",
412
+ gatewayNameLabel: "Gateway name",
413
+ jobsContainerLabel: "Jobs container",
414
+ linkedServiceBlobStoreLabel: "Blob store",
415
+ timeToLiveLabel: "Time to live",
416
+ versionLabel: "Version",
417
+ runIdLabel: "Run ID",
418
+ autolayoutTooltip: "Automatically position pipelines and tables.",
419
+ diagramLockedNoAccessTooltip:
420
+ "Layout locked. Cannot edit layout because you do not have owner or contributer permissions.",
421
+ lockDiagramTooltip:
422
+ "Lock layout. When enabled, prevents you from accidentally moving tables and pipelines.",
423
+ addActivity: "Add activity",
424
+ computeTemplates: "New compute",
425
+ createEntityMessage: "{message}",
426
+ createEntityTitle: "Deploying data factory entity...",
427
+ dataStoreTemplates: "New data store",
428
+ pipelineTemplate: "New pipeline",
429
+ submit: "Deploy",
430
+ tableTemplates: "New dataset",
431
+ editor: "Editor",
432
+ linkedServices: "Linked services",
433
+ noLinkedServiceMessage: "No linked services found in this data factory.",
434
+ pipelines: "Pipelines",
435
+ tables: "Datasets",
436
+ azureSql: "Azure SQL",
437
+ azureStorage: "Azure storage",
438
+ blobTable: "Azure Blob storage",
439
+ byoc: "HDInsight cluster",
440
+ notAPipeline:
441
+ "Editor JSON content is not a pipeline - properties.activities field could not be found.",
442
+ notValidJson:
443
+ "The submitted JSON is not valid. Check the syntax and try again.",
444
+ onDemand: "On demand HDInsight cluster",
445
+ sqlTable: "Azure SQL",
446
+ unknownEntityType:
447
+ 'Cannot deploy "{0}". Entity type is unknown. Supported object types are Linked services, Tables and Pipelines.Check the type of the JSON that you are deploying and ensure it is one of the supported types.',
448
+ clone: "Clone",
449
+ drafts: "Drafts",
450
+ discard: "Discard",
451
+ factoryContent: "Contents",
452
+ alreadyExistsMessage:
453
+ 'The {0} "{1}" already exists. Change the name and try again.',
454
+ authorDeploy: "Author and deploy",
455
+ deleting: "Deleting...",
456
+ confirmation: "Confirmation",
457
+ deleteEntityConfirmationMessage: 'Are you sure you want to delete {0}: "{1}"',
458
+ deploying: "Deploying {0}...",
459
+ deploySuccess: "{0} deployed successfully.",
460
+ draft: "Draft",
461
+ draftsLossMessage:
462
+ "Draft could not be recovered. In most cases this is caused by changing the machine and/or browser in which work is being done. If you want to recover drafts please close this browser window and go back to machine and/or browser that was used to create\\r\\n draft.\\r\\n ",
463
+ error: "Error",
464
+ entityTypeChangeNotAllowedMessage:
465
+ 'Cannot deploy {0} "{1}". Entity type cannot be changed. If you want to create entity, use clone and try again.',
466
+ templateParametersNotReplacedMessage:
467
+ 'Cannot deploy {0}: "{1}". Some parameters in the template are not replaced with actual values: {2}',
468
+ useCloneMessage:
469
+ "Cannot deploy {0} \"{1}\". Name cannot be changed. If you want to create new {0}, use 'Clone' and try again",
470
+ linkedService: "Linked service",
471
+ pipeline: "Pipeline",
472
+ table: "Table",
473
+ deleteUserError:
474
+ "Entity could not be deleted, make sure that there are no other dependent entities",
475
+ hive: "Hive",
476
+ hiveActivity: "Hive activity",
477
+ onPremisesTable: "SQL Server table",
478
+ pig: "Pig",
479
+ pigActivity: "Pig activity",
480
+ sprocActivity: "SPROC Activity",
481
+ recentlyUpdatedSlicesTitle: "Recently updated slices",
482
+ lastUpdatedTimeHeading: "Last update time",
483
+ recentlyFailedSlicesTitle: "Recently failed slices",
484
+ noDataSlicesMessage: "No data slices in this table.",
485
+ noFailedDataSlicesMessage: "No data slices with problems in this table.",
486
+ noDataSlicesBeforeTime:
487
+ "No data slices updated before {0} matching the status filter.",
488
+ filterUntilTimeFieldLabel: "Until",
489
+ dataSlicesByUpdateTimeTitle: "Data slices (by update time)",
490
+ filterBySliceUpdateDateTimeSectionLabel:
491
+ "Show last 200 slices updated before (in UTC):",
492
+ recentSlicesTitle: "Recent slices",
493
+ autolayoutConfirmationMessage:
494
+ "This will discard all previous positioning. You may click in the factory diagram and hit control-Z to undo this action.",
495
+ autolayoutConfirmationTitle: "Are you sure?",
496
+ autolayoutLockedTooltip: "Cannot autolayout because the diagram is locked.",
497
+ gettingLocationMessage: "Getting location...",
498
+ australiaEast: "Australia East",
499
+ australiaSoutheast: "Australia Southeast",
500
+ brazilSouth: "Brazil South",
501
+ centralus: "Central US",
502
+ eastAsia: "East Asia",
503
+ eastus: "East US",
504
+ eastus2: "East US 2",
505
+ japanEast: "Japan East",
506
+ japanWest: "Japan West",
507
+ northCentralus: "North Central US",
508
+ northEurope: "North Europe",
509
+ southCentralus: "South Central US",
510
+ southeastAsia: "Southeast Asia",
511
+ westEurope: "West Europe",
512
+ lowerActivityAssetText: "activity",
513
+ lowerFactoryAssetText: "data factory",
514
+ lowerPipelineAssetText: "pipeline",
515
+ lowerPluralActivityAssetText: "activities",
516
+ lowerPluralFactoryAssetText: "data factories",
517
+ lowerPluralPipelineAssetText: "pipelines",
518
+ lowerPluralSliceAssetText: "slices",
519
+ lowerPluralTableAssetText: "tables",
520
+ lowerSliceAssetText: "slice",
521
+ lowerTableAssetText: "table",
522
+ pluralActivityAssetText: "Activities",
523
+ pluralFactoryAssetText: "Data factories",
524
+ pluralPipelineAssetText: "Pipelines",
525
+ pluralSliceAssetText: "Slices",
526
+ pluralTableAssetText: "Tables",
527
+ messageTitle: "Message",
528
+ upstreamSlicesOfInterestTitle: "Upstream slices that are not ready",
529
+ noUpstreamSlicesOfInterestMessage: "No upstream slices that are not ready.",
530
+ impactingUpstreamStatus: "Upstream",
531
+ DataStoreDescriptionTextBoxPlaceholder: "(Optional)",
532
+ DataStoreDescriptionTextBoxTitle: "Description",
533
+ DataStoreNameTextBoxTitle: "Name",
534
+ DataStoreNameTitle: "Data store name",
535
+ DataStoresLensTitle: "Data stores",
536
+ DataStoreTypeSelectorTitle: "Type",
537
+ HtmlTitle: "Azure Data Factory",
538
+ NewDataStoreBladeTitle: "New data store",
539
+ NewDataStoreCommandTitle: "New",
540
+ SampleDataWarehouseTitle: "Data Warehouses",
541
+ DataStoreTypeBladeFormTitle: "AVAILABLE TYPES",
542
+ DataStoreTypeBladeTitle: "Data store type",
543
+ DataStoreTypeSqlAzure: "Azure SQL Database",
544
+ DataStoreTypeSqlServer: "SQL Server",
545
+ DataStoreTypeStorageAccount: "Azure Storage",
546
+ GatewaySelectorTitle: "Data gateway",
547
+ GatewayCreateTitle: "Create new data gateway",
548
+ PickerGatewayListTitle: "Use existing gateway",
549
+ PickerNoRowDoneMessage: "No existing available.",
550
+ Loading: "Loading...",
551
+ ValidationSettingsRequired: "Settings required",
552
+ StorageAccountNameTextBoxTitle: "Account Name",
553
+ StorageAccountUseHttpsCheckBoxTitle: "Protocol",
554
+ SqlAzureDatabaseTextBoxTitle: "Database",
555
+ SqlAzurePasswordPasswordBoxTitle: "Password",
556
+ SqlAzureServerNameTextBoxTitle: "Server",
557
+ SqlAzureUsernameTextBoxTitle: "User name",
558
+ StorageAccountProtocolHttp: "HTTP",
559
+ StorageAccountProtocolHttps: "HTTPS",
560
+ GatewayCreateInfoStepTitle: "Create",
561
+ GatewayCreateRegStepTitle: "Configure",
562
+ GatewayCreateWizardTitle: "New data gateway",
563
+ GatewayDownloadTitle: "Download and install data gateway",
564
+ GatewayExpressInstallTitle: "Express setup",
565
+ GatewayExpressInstallDescription: "Install directly on this computer",
566
+ GatewayExpressHelpText:
567
+ "Requires Internet Explorer or a Microsoft ClickOnce compatible web browser.",
568
+ GatewayExpressInstallDone: "Succeeded",
569
+ GatewayExpressDownloading: "In progress",
570
+ GatewayExpressError: "Failed",
571
+ GatewayExpressInstalling: "In progress",
572
+ GatewayExpressRegistering: "In progress",
573
+ GatewayExpressInstallDisconnectedLabel: "Express setup disconnected",
574
+ GatewayExpressInstallDisconnectedMessage:
575
+ "Express setup could be still in progress. Refer to data gateway event log for express setup status.",
576
+ GatewayExpressInstallFailedLabel: "Failed to complete express setup",
577
+ GatewayExpressInstallFailedMessage:
578
+ "Express setup for the gateway '{gatewayName}' failed. Error message : {errorMessage}",
579
+ GatewayExpressInstallProgressLabel: "Express setup in progress",
580
+ GatewayExpressInstallProgressMessage:
581
+ "Step {currentStep} / {totalSteps} steps: {stepName}...",
582
+ GatewayExpressInstallSucceededLabel: "Express setup succeeded",
583
+ GatewayExpressInstallSucceededMessage:
584
+ "Express setup for '{gatewayName}' succeeded.",
585
+ GatewayManualInstallTitle: "Manual setup",
586
+ GatewayManualInstallLinkTitle64bit: "Download and install manually (64-bit)",
587
+ GatewayKeyTitle: "Register with key",
588
+ GatewayNameTitle: "Data gateway name",
589
+ GatewayPickerTitle: "Select data gateway",
590
+ GatewayTitle: "Data gateway",
591
+ GatewayNoDataMessage: "Data gateway does not exist",
592
+ Operations: "Operations",
593
+ Summary: "Summary",
594
+ Properties: "Properties",
595
+ GatewayRegisterHelpText:
596
+ "You will use this key to register the data gateway installed on your on-premises computer.",
597
+ DataStoreCredentialDescription: "set credentials",
598
+ DataStoreCredentialsHelpText: "Click here to set credentials",
599
+ DataStoreCredentialsTitle: "Credentials",
600
+ ValidationFieldLengthViolation:
601
+ "This field should be between 1 and 150 characters long.",
602
+ ValidationFieldIsRequired: "This field is required.",
603
+ DeleteCommand: "Delete",
604
+ EditCommand: "Edit",
605
+ ViewCommand: "View",
606
+ DatabaseTitle: "Database",
607
+ Description: "Description",
608
+ ServerTitle: "Server",
609
+ Status: "Status",
610
+ Connectivity: "Connectivity",
611
+ RegisterKey: "Registration Key",
612
+ DeleteDataStoreConfirmation:
613
+ "Are you sure you want to delete this data store?",
614
+ Logs: "Logs",
615
+ Tags: "Tags",
616
+ Good: "Good",
617
+ DataStoreCredentialsBladeTitle: "Credentials",
618
+ ClickOnceLoadingFailedMessage: "Sorry, something went wrong",
619
+ MultipleInstances: "{0} instances",
620
+ NoInstance: "There is no instance",
621
+ NoGatewayError: "There is no gateway.",
622
+ AccountName: "Account name",
623
+ ConfigurationTitle: "Configuration",
624
+ SettingsTitle: "Settings",
625
+ SubscriptionId: "Subscription ID",
626
+ CredentialsNotSet: "Credentials not set",
627
+ CredentialsSet: "Credentials set successfully",
628
+ CredentialsSetFailed: "Failed to set credentials",
629
+ SkipCredentialsTitle: "Skip entering credentials for now.",
630
+ SkipCredentialsNo: "No",
631
+ SkipCredentialsYes: "Yes",
632
+ SkipCredentialsValidationMessage: "Set credentials",
633
+ ErrorString: "Error",
634
+ Warning: "Warning",
635
+ CreateLinkedServiceDescription:
636
+ "To add this data store, you need to install, configure and register a gateway on an on-premises computer.",
637
+ CredentialSettingsHelpInfo:
638
+ "Credentials are locally encrypted for your security consideration.",
639
+ GatewayExpiredMessage:
640
+ "The data gateway has expired. Click Download and install data gateway button to download and install the latest version of data gateway.",
641
+ GatewayExpiringMessage:
642
+ "The data gateway is about to expire. We recommend that you download and install the latest version of data gateway by clicking Download and install data gateway button.",
643
+ GatewayNeedRegistrationMessage:
644
+ "The data gateway needs to be registered with the Data Factory service. Click Download and install data gateway button to download and install data gateway on a machine within your enterprise. Then, launch Data Management Gateway Configuration Manager\\r\\n on the gateway machine and register the gateway using the key from the Configure blade on the portal.",
645
+ GatewayOfflineMessage:
646
+ 'The data gateway is offline. Launch Data Management Gateway Configuration Manager on the gateway machine and confirm that the "Service status" is "Started", "Gateway key status" is "Registered", and the status bar shows "Connected to Data Management Gateway\\r\\n Cloud Service". If not, check Windows Event Log on the gateway machine for detailed information.',
647
+ GatewaySelectorHelpInfo:
648
+ "Data gateway is a client agent installed in your corporate environment that provides Azure Data Factory the access to on-premises data stores.",
649
+ InstallGateway: "Install and register the data gateway",
650
+ InstallGatewayDescription:
651
+ "Download, install, configure and register the gateway on a Windows computer in your corporate environment.",
652
+ CreateNewDataGateway: "Create a new data gateway",
653
+ LinkedServiceCreatingLabel: "Creating the data store",
654
+ LinkedServiceCreatingMessage:
655
+ "Please wait a moment for creating data store '{0}'.",
656
+ LinkedServiceCreatedFailedLabel: "Failed to create data store",
657
+ LinkedServiceCreatedFailedMessage:
658
+ "Could not create a new data store '{0}'. Try again or contact Microsoft support.",
659
+ LinkedServiceCreatedSuccessLabel: "Created a new data store successfully",
660
+ LinkedServiceCreatedSuccessMessage:
661
+ "The new data store '{0}' has been created successfully.",
662
+ GatewayCreatedFailedLabel: "Failed to create data gateway",
663
+ GatewayCreatedFailedMessage:
664
+ "Could not create a new data gateway '{0}'. Try again or contact Microsoft support.",
665
+ GatewayCreatedSuccessLabel: "Created a new data gateway successfully",
666
+ GatewayCreatedSuccessMessage:
667
+ "The new data gateway '{0}' has been created successfully.",
668
+ LinkedServiceModifiedFailedLabel: "Failed to modify data store",
669
+ LinkedServiceModifiedFailedMessage:
670
+ "Could not modify the data store '{0}'. Try again or contact Microsoft support.",
671
+ LinkedServiceModifiedSuccessLabel: "Modified the data store successfully",
672
+ LinkedServiceModifiedSuccessMessage:
673
+ "The data store '{0}' has been modified successfully.",
674
+ LinkedServiceModifyingLabel: "Data store is being modified",
675
+ LinkedServiceModifyingMessage:
676
+ "Please wait a moment for updating data store '{0}'.",
677
+ GatewayDeletedSuccessLabel: "Deleted data gateway successfully",
678
+ GatewayDeletedSuccessMessage:
679
+ "The data gateway '{0}' has been deleted successfully.",
680
+ LinkedServiceDeletedSuccessLabel: "Deleted data store successfully",
681
+ LinkedServiceDeletedSuccessMessage:
682
+ "The data store '{0}' has been deleted successfully.",
683
+ DescriptionPlaceholder: "(Optional)",
684
+ GatewayModifiedFailedLabel: "Failed to modify data gateway",
685
+ GatewayModifiedFailedMessage:
686
+ "Could not modify the data gateway '{0}'. Try again or contact Microsoft support.",
687
+ GatewayModifiedSuccessLabel: "Modified the data gateway successfully",
688
+ GatewayModifiedSuccessMessage:
689
+ "The data gateway '{0}' has been modified successfully.",
690
+ GatewayModifyingLabel: "Modifying the data gateway",
691
+ GatewayModifyingMessage:
692
+ "Please wait a moment for updating data gateway '{0}'.",
693
+ DeleteGatewayConfirmation:
694
+ "Are you sure you want to delete this data gateway?",
695
+ ManageKeys: "Manage Key",
696
+ Keys: "Keys",
697
+ KeyRegenerationMessage:
698
+ "This will make the data gateway non-functional immediately until the data gateway is newly registered with the regenerated key.",
699
+ KeyRegenerationTitle: "Recreate key",
700
+ RegenerateTitle: "Regenerate",
701
+ GatewayExpiredTitle: "Error: Data gateway has expired",
702
+ GatewayOfflineTitle: "Error: Data gateway is offline",
703
+ ErrorMessage: "Error Message",
704
+ GatewayExpiringTitle: "Warning: Data gateway is expiring",
705
+ Unknown: "Unknown",
706
+ KeyTitle: "Key",
707
+ Cancel: "Cancel",
708
+ No: "No",
709
+ Yes: "Yes",
710
+ regeneratingMessage: "Regenerating key...",
711
+ RegionEastUS: "East US",
712
+ RegionNorthEurope: "North Europe",
713
+ RegionSouthEastAsia: "Southeast Asia",
714
+ RegionWestEurope: "West Europe",
715
+ RegionWestUS: "West US",
716
+ Name: "Name",
717
+ Empty: "Empty",
718
+ GatewayDeleteFailedByLinkedServices:
719
+ "This data gateway cannot be deleted because there are {0} data stores associated with it.",
720
+ LinkedServicesPartTitle: "Linked Services",
721
+ Location: "Location",
722
+ TypeTitle: "Type",
723
+ SearchTitle: "Search to filter resources...",
724
+ DataStore: "Data store",
725
+ DataStores: "Data Stores",
726
+ Gateways: "Data Gateways",
727
+ GatewayNeedRegistrationTitle: "Warning: Data gateway needs registration",
728
+ DataStoresAssociated: "Associated Data Stores",
729
+ DataStoreType: "Data store type",
730
+ HostName: "Host Name",
731
+ DataManagementKey: "Data Management Key",
732
+ DataStoreAddCommandTitle: "New data store",
733
+ GatewayAddCommandTitle: "New data gateway",
734
+ StorageAccountKeyPasswordBoxTitle: "Account Key",
735
+ LinkedServicesCollectionSummaryPartDescriptionError:
736
+ "You have a problem with one of your data gateways",
737
+ ValidationFieldGatewayNameRegex:
738
+ "This field can contain letters, numbers, dashes and underscores.",
739
+ GatewayNameAlreadyTaken: "A gateway with the name already exists.",
740
+ UnableToCheckGatewayName:
741
+ "Sorry, we are unable to validate gateway name at this time.",
742
+ SetupLensTitle: "Setup",
743
+ DataStoreTypeHDInsight: "Azure HDInsight cluster",
744
+ Compute: "Compute",
745
+ ValidationLinkedServiceLength:
746
+ "This field should be between 1 and 260 characters long.",
747
+ ValidationLinkedServicesNameAlreadyTaken:
748
+ "A linked service with the name already exists.",
749
+ ValidationLinkedServicesRegex:
750
+ "Names must start with a letter, number or underscore (_) and following characters are not allowed: <,>,*,%,&,:,\\\\, +, ?, /",
751
+ ValidationUnableToValidateLinkedServiceName:
752
+ "Sorry, we are unable to validate linked service name at this time.",
753
+ OnPremDataStoreGatewayNeedRegistrationMessage:
754
+ "The data gateway '{gatewayName}' associated with the data store needs to be registered with the Data Factory service. Click Data Gateway button and follow instructions to register the data gateway.",
755
+ GatewayManualInstallLinkTitle32bit: "Download and install manually (32-bit)",
756
+ LinkedServiceCreatedFailedMessageInvalidSqlAzureDatabase:
757
+ "The Azure SQL Database for the data store '{0}' cannot be reached. Check connection settings for the data store.",
758
+ LinkedServiceCreatedFailedMessageInvalidStorageAccount:
759
+ "The Storage Account for the data store '{0}' cannot be reached. Check settings for the data store.",
760
+ GatewayCreateWizardDescription:
761
+ "Set up a data gateway to connect to an on-premises data store in your corporate environment.",
762
+ NewDataStoreBladeDescription:
763
+ "Create a data store to connect your data to the data factory.",
764
+ LinkedServiceCreateValidatedFailedLabel: "Failed to connect to a data store",
765
+ linkedServiceCreateValidatedFailedMessage:
766
+ "The data store '{0}' cannot be reached. Check settings for the data store.",
767
+ LinkedServiceCreateValidatingLabel: "Connecting to the data store",
768
+ DataStoreTypeFileSystem: "File System",
769
+ FileDataStoreHostTitle: "Host",
770
+ NewGateWayVersionAvailable: "New Data Gateway Version Available",
771
+ Version: "Version",
772
+ VersionStatus: "Version Status",
773
+ NewVersionAvailable: "Update Available",
774
+ UpToDate: "Up to date",
775
+ Available: "Available",
776
+ Update: "Update",
777
+ GatewayUpdateTitle: "Update to the latest version",
778
+ DataStoreTypeAzureML: "Azure ML",
779
+ ValidationInvalidCharacters: "This field contains invalid characters.",
780
+ DataFactoryPlaceHolderPartTitle: "Data Factories (Mocked)",
781
+ NoDataFactoriesTitle: "You don't have any data factories.",
782
+ ResourceGroup: "Resource Group",
783
+ Subscription: "Subscription",
784
+ NeedRegistration: "Unregistered",
785
+ Offline: "Offline",
786
+ Online: "Online",
787
+ CredentialsHelpText:
788
+ "Requires Internet Explorer or a Microsoft ClickOnce compatible web browser.",
789
+ SuggestDataStoreTypeLinkText: "Request a new data store type",
790
+ DataStoreErrorMessageGatewayOffline:
791
+ 'Credentials cannot be set using an offline data gateway. Launch Data Management Gateway Configuration Manager on the gateway machine and confirm that the "Service status" is "Started", "Gateway key status" is "Registered", and the status bar shows "Connected\\r\\n to Data Management Gateway Cloud Service". If not, check Windows Event Log on the gateway machine for detailed information. Reopen CREDENTIALS blade to set credentials when the data gateway is online.',
792
+ DataStoreErrorMessageGatewayUnregistered:
793
+ "Credentials cannot be set using an unregistered data gateway. The data gateway '{gatewayName}' associated with the data store needs to be registered with the Data Factory service. Click Data Gateway button and follow instructions to register the data\\r\\n gateway. Reopen CREDENTIALS blade to set credentials when the data gateway is online.",
794
+ DataStoreErrorMessageSegmentGatewayOffline:
795
+ "Credentials cannot be set using an offline data gateway. Select an online data gateway in DATA GATEWAY field and reopen CREDENTIALS blade to set your data store credentials.",
796
+ DataStoreErrorMessageSegmentGatewayRequired:
797
+ "No data gateway is selected. Select an online data gateway in DATA GATEWAY field and reopen CREDENTIALS blade to set your data store credentials.",
798
+ DataStoreErrorMessageSegmentGatewayUnregistered:
799
+ "Credentials cannot be set using an unregistered data gateway. Select an online data gateway in DATA GATEWAY field and reopen CREDENTIALS blade to set your data store credentials.",
800
+ DataStoreErrorMessageSegmentServerDatabaseRequired:
801
+ "The Server and Database fields are required.",
802
+ GatewayStatusDeleting: "Deleting",
803
+ DataStoreErrorMessageSegmentFileHostRequired: "The Host field is required.",
804
+ DataStoreTypeOracle: "Oracle Database",
805
+ DataStoreTypeDynamicsAX: "Dynamics AX",
806
+ DataStoreTypeSalesforce: "Salesforce",
807
+ DataStoreTypeAzureSearchIndex: "Azure Search Index",
808
+ DataStoreTypeCustom: "Custom",
809
+ DataStoreTypeMds: "MDS",
810
+ DataStoreTypeServiceBus: "Service Bus",
811
+ OracleConnectDescriptorTitle: "Connect Descriptor",
812
+ FileSystemHostHintText: "UNC path e.g. \\\\\\\\host name",
813
+ DataStoreStaleErrorMessage:
814
+ "Data store is stale. The associated data gateway '{gatewayName}' does not exist. Delete the data store '{dataStoreName}' manually. To recover datasets and pipelines related to this linked service, recreate a new data store with the same name '{dataStoreName}'.",
815
+ DataStoreStaleMessage: "Data store is stale",
816
+ DataStoreStaleTitle: "ERROR: DATA STORE IS STALE",
817
+ RecreateKeyHintText: 'Click "Recreate key" to create a new key',
818
+ RecreateKeyLabel: "New key",
819
+ DataStoreErrorMessageSegmentOracleFieldRequired:
820
+ "The Connect Descriptor field is required.",
821
+ OracleConnectDescriptorHintText:
822
+ "Example: (DESCRIPTION=   (ADDRESS=(PROTOCOL=tcp)(HOST=sales-server)(PORT=1521))   (CONNECT_DATA=     (SERVICE_NAME=sales.us.example.com)))\\r\\n ",
823
+ minNameLengthValidationMessage:
824
+ "The name must be at least 3 characters long.",
825
+ onPremisesFileSystemLinkedService: "File system",
826
+ onPremisesFile: "On-premises file",
827
+ onPremisesOracleLinkedService: "Oracle",
828
+ onPremisesOracleTable: "Oracle table",
829
+ samplePipelinesTitle: "Sample pipelines",
830
+ samplesTitle: "Samples",
831
+ sampleCustomerProfilingTitle: "Customer profiling",
832
+ samplePipelineTitle: "Sample pipeline",
833
+ createButtonLabel: "Create",
834
+ validatingMessage: "Validating...",
835
+ azureSqlDatabaseNameLabel: "Azure SQL Database name",
836
+ passwordLabel: "Password",
837
+ azureSqlServerNameLabel: "Azure SQL server name",
838
+ azureStorageAccountLabel: "Azure Storage account",
839
+ usernameLabel: "User name",
840
+ suggestSampleTitle: "Suggest a sample",
841
+ sqlServerFirewallRuleErrorMessage:
842
+ "Firewall rules for the selected SQL server do not allow connection to server from Azure services. Change the server settings or select a different server.",
843
+ sqlServerLoginConnectionFailedErrorMessage:
844
+ "Database connection test failed, check user name and password.",
845
+ databaseListRequiresServerMessage: "A server needs to be selected.",
846
+ fieldLoadingMessage: "Loading...",
847
+ passwordRequiredMessage: "Password is required",
848
+ storageAccountRequiredMessage: "Storage account is required",
849
+ usernameRequiredMessage: "User name is required",
850
+ insufficientPermissionMessage:
851
+ "You don't have sufficient permissions on this storage account to use it for sample deployment. You need to be an owner or contributor on the selected storage account.",
852
+ unexpectedErrorMessage: "Unexpected error has occurred",
853
+ unauthorizedMessage: "Unauthorized",
854
+ loadingResourcesMessage: "Loading resources. Please wait...",
855
+ copyErrorMessage:
856
+ "An unexpected error has occured when trying to copy sample data and scripts to storage account: ",
857
+ createSqlEntitiesErrorMessage:
858
+ "An error occured when creating SQL objects that are needed to run the sample. This could be because the login provided does not have sufficent permissions to create tables, types and stored procedures. Please check permissions and try again. Message:\\r\\n ",
859
+ createNewDatabaseText: "Create new database",
860
+ createNewStorageAccountText: "Create new storage account",
861
+ deployingMessage: "Deploying...",
862
+ deploymentFailedMessage: "Deployment failed",
863
+ deploymentSucceededMessage: "Deployment succeeded",
864
+ preparingMessage: "Preparing... Please keep blade open.",
865
+ sampleCustomerProfilingDescriptionTextHtml:
866
+ '<p>Contoso is a gaming company that creates games for multiple platforms: game consoles, hand held devices, and personal computers (PCs). These games produce a lot of logs and Contoso’s goal is to collect and analyze these logs to gain insights\\r\\n into customer preferences, demographics, usage behavior etc. to identify up-sell and cross-sell opportunities, develop new compelling features to drive business growth and provide a better experience to customers.</p> <p>This sample specifically\\r\\n evaluates the effectiveness of a marketing campaign that Contoso has recently launched by collecting sample logs, processing and enriching them with reference data, and transforming the data. It has the following three pipelines:</p> <ol>\\r\\n <li>The <b>PartitionGameLogsPipeline</b> reads the raw game events from blob storage and creates partitions based on year, month, and day.</li> <li>The <b>EnrichGameLogsPipeline</b> joins partitioned game events\\r\\n with geo code reference data and enriches the data by mapping IP addresses to the corresponding geo-locations.</li> <li>The <b>AnalyzeMarketingCampaignPipeline</b> pipeline leverages the enriched data and processes it with the\\r\\n advertising data to create the final output that contains marketing campaign effectiveness.</li> </ol> <p>The sample showcases how you can use the Azure Data Factory service to compose data integration workflows to copy/move data using\\r\\n the Copy Activity and process data using Pig or Hive scripts on an Azure HDInsight cluster using the HDInsight Activity.</p> <p>To deploy the sample:</p> <ul> <li>Select the <b>storage account</b> from the drop-down\\r\\n list that you want to use with the sample.</li> <li>Select the <b>database server</b> and <b>database</b> that you want to use with the sample.</li> <li>Enter <b>username</b> and <b>password</b>\\r\\n to access the database</li> <li>Click the <b>Create</b> button.</li> </ul> <p>The deployment process does the following:</p> <ul> <li>Uploads sample data to your Azure storage</li> <li>Creates\\r\\n a table in the Azure SQL database</li> <li>Deploys linked services, tables, and pipelines to run the sample.</li> </ul> <p>An on-demand HDInsight linked service is used in this sample, which creates a one-node on-demand\\r\\n HDInsight cluster to run Pig and Hive scripts and is deleted after the processing is completed.</p> <p>After the deployment is complete, you can monitor end-to-end data integration workflow using the diagram view and use the monitoring features\\r\\n of the Microsoft Azure Portal to monitor datasets and pipelines.</p> <p>NOTE: there are costs associated with <a href="http://go.microsoft.com/fwlink/?LinkId=534048" target="_blank">transferring the data</a> and processing the\\r\\n data with an on-demand <a href="http://go.microsoft.com/fwlink/?LinkId=534049" target="_blank">HDInsight</a> Cluster. See <a href="http://go.microsoft.com/fwlink/?LinkId=534049" target="_blank">HDInsight Pricing</a> and <a\\r\\n href="http://go.microsoft.com/fwlink/?LinkId=534048" target="_blank">Data Transfer Pricing</a> for details.</p> <p>For more details about this sample, see <a href="http://go.microsoft.com/fwlink/?LinkId=534874" target="_blank">this\\r\\n tutorial</a> on Azure.com.</p>',
867
+ couldNotListDatabasesMessage: "Could not list databases for server: ",
868
+ failedToGetResourcesForSubscriptionMessage:
869
+ "Failed to get resources of type '{0}' for subscription '{1}'.",
870
+ testSqlConnectionButtonText: "Test SQL connection",
871
+ resourceGroupPermissionMessage: "No permission to resource group: {0}",
872
+ azureBatchByoc: "Azure Batch",
873
+ linkedServiceAzureSqlDwTableLocation: "Azure SQL DW",
874
+ openPipelineCommandText: "Open pipeline",
875
+ onPremisesDb2LinkedService: "DB2",
876
+ onPremisesMySqlLinkedService: "MySQL",
877
+ onPremisesPostgreSqlLinkedService: "PostgreSQL",
878
+ onPremisesRelationalTableLocation: "Database table",
879
+ onPremisesSybaseLinkedService: "Sybase",
880
+ onPremisesTeradataLinkedService: "Teradata",
881
+ provisioning: "Provisioning...",
882
+ provisioningFailed: "Entity provisioning failed: {0}",
883
+ entityloadFailed: "Unable to load entity source from the service, error: {0}",
884
+ onPremDbSchemaTitle: "Schema",
885
+ defaultDialogPrimaryCommandText: "Yes",
886
+ defaultDialogSecondaryCommandText: "No",
887
+ cancelPipelineTooltip: "Pause and terminate activities",
888
+ rerunDownstreamLabel: "Rerun with downstream",
889
+ rerunDownstreamTooltip:
890
+ "Rerun selected items and their downstream dependencies.",
891
+ rerunFactoryDialogContent: "This will recreate all of your existing slices.",
892
+ rerunFactoryDialogTitle: "Are you sure you want to rerun the entire factory?",
893
+ rerunFactoryLabel: "Rerun entire factory",
894
+ rerunFactoryTooltip: "Rerun this entire factory",
895
+ rerunMenuTooltip: "Choose to run with upstream or downstream dependencies.",
896
+ rerunTableTooltip: "Rerun all slices selected tables",
897
+ rerunTooltip: "Reruns the selected activity windows.",
898
+ rerunUpstreamLabel: "Rerun with upstream in pipeline",
899
+ rerunUpstreamTooltip: "Rerun selected items and their upstream dependencies.",
900
+ resumePipelineTooltip: "Resume selected pipelines",
901
+ pausePipelineTooltip: "Pause selected pipelines",
902
+ rerunEntitiesLabel: "Rerun",
903
+ rerunEntitiesTooltip: "Rerun all selected entities.",
904
+ cancelSingletonPipelineTooltip:
905
+ "Pause this pipeline and terminate existing activities",
906
+ resumeSingletonPipelineTooltip: "Resume this pipeline",
907
+ pauseSingletonPipelineTooltip: "Pause this pipeline",
908
+ cancelPipelineLabel: "Pause and terminate activities",
909
+ pausePipelineLabel: "Pause",
910
+ activePipelineStatusText: "Active",
911
+ pipelineSubheader: "PIPELINE",
912
+ pausedPipelineStatusText: "Paused",
913
+ failedProvisioningStatusText: "Failed",
914
+ activityRunListActivityNameTitle: "Activity",
915
+ activityRunListActivityTypeTitle: "Type",
916
+ activityRunListAttemptsTitle: "Retry Attempts",
917
+ activityRunListDurationTitle: "Duration",
918
+ activityRunListPercentageCompleteTitle: "Complete (%)",
919
+ activityRunListPipelineTitle: "Pipeline",
920
+ activityRunListLastRunEndTitle: "Last Attempt End",
921
+ activityRunListLastRunStartTitle: "Last Attempt Start",
922
+ activityRunListWindowStartTitle: "Window Start",
923
+ activityRunListStateTitle: "Status",
924
+ markReadyDownstreamLabel: "Mark as ready with downstream",
925
+ changeStateLabel: "Change State",
926
+ readyLabel: "Ready",
927
+ rerunLabel: "Rerun",
928
+ changeStateTooltip: "Change the state of the activity window.",
929
+ datetimeInUTCLabel: "Date/time in UTC",
930
+ errorMessageCollapse: "Less",
931
+ errorMessageExpand: "More",
932
+ hideDashboardTooltip: "Hide dashboard",
933
+ showDashboardTooltip: "Show dashboard",
934
+ activityWindowsListEmptyMessage:
935
+ "There are currently no activity windows to display.",
936
+ activityRunsListLoadingMessage: "Loading...",
937
+ activityRunsListRefreshTooltip:
938
+ "Refresh this list of activity windows. Note: newly created activity windows may take a few minutes to appear in this list.",
939
+ percentageCompleteInBracketText: "({0}% complete)",
940
+ informationTitle: "Information",
941
+ missingActivityWindowText: "Activity window is missing.",
942
+ failedToFetchActivityWindowText: "Failed to fetch activity window.",
943
+ activityRunDetailsRefreshTooltip: "Refresh this panel.",
944
+ accessDenied: "Access Denied",
945
+ activityWindowsResource: "Activity windows.",
946
+ noFactoryErrorText:
947
+ "The URL to access this factory must include a data factory name, resource group, and subscription. Please access via the URL in the email you received.",
948
+ ok: "OK",
949
+ permissionDenied: "Permission Denied",
950
+ resourcePermissionFaliedMessageText:
951
+ "You do not have access to the following factory: {0}. Please contact the administrator. If you recently acquired permissions for this subscription, then please logout and login again.",
952
+ resourceNotFound: "Resource Not Found",
953
+ resourceNotFoundMessageText:
954
+ "The following resource was not found: {0}. Please contact the administrator of the {1} data factory.",
955
+ resourceUnknownErrorMessageText:
956
+ "An unknown error occured for the following resource: {0}. Please contact the administrator of the {1} data factory.",
957
+ subscriptionNotFound: "Subscription Not Found",
958
+ subscriptionNotFoundErrorMessageText:
959
+ "The subscription {0} could not be found. Please use the URL in the email you received.",
960
+ unknownError: "Unknown Error",
961
+ frequencyAndIntervalText: "Frequency: {0}, Interval: {1}",
962
+ frequencyAndIntervalLineBreakText: "Freq: {0}<br />Intvl: {1}",
963
+ activityWindowListTitle: "Activity Windows",
964
+ activityRunDetailsTitle: "Attempts",
965
+ activityRunDetailsInputsTitle: "Input Datasets",
966
+ activityRunDetailsOutputsTitle: "Output Datasets",
967
+ refreshGraphTooltip: "Refresh the data in the graph",
968
+ activityRunsListFooterStatus: "Loading more items...",
969
+ endTimeUTCLabel: "End time (UTC):",
970
+ startEndPickerText: "Update start and end time.",
971
+ startTimeUTCLabel: "Start time (UTC):",
972
+ pausePipelinesTitle: "Pause pipelines",
973
+ resumePipelinesTitle: "Resume pipelines",
974
+ cancelPipelinesTitle: "Pause and terminate pipelines",
975
+ pausePipelineTitle: "Pause pipeline",
976
+ resumePipelineTitle: "Resume pipeline",
977
+ cancelPipelineTitle: "Pause and terminate pipeline",
978
+ pauseSelectedPipelinesQuestion: "Pause selected pipelines?",
979
+ resumeSelectedPipelinesQuestion: "Resume selected pipelines?",
980
+ cancelSelectedPipelinesQuestion:
981
+ "Pause selected pipelines and terminate all their currently running activities?",
982
+ pausePipelineQuestionTemplate: "Pause {0} pipeline?",
983
+ resumePipelineQuestionTemplate: "Resume {0} pipeline?",
984
+ cancelPipelineQuestionTemplate:
985
+ "Pause {0} pipeline and terminate its currently running activities?",
986
+ pipelineNameCopyLabel: "Copy pipeline name",
987
+ activityNameCopyLabel: "Copy activity name",
988
+ statusCopyLabel: "Copy status",
989
+ typeCopyLabel: "Copy type",
990
+ attemptsCopyLabel: "Copy attempts",
991
+ attemptStartCopyLabel: "Copy attempt start",
992
+ attemptEndCopyLabel: "Copy attempt end",
993
+ windowStartCopyLabel: "Copy window start",
994
+ durationCopyLabel: "Copy duration",
995
+ percentCompleteCopyLabel: "Copy percent complete",
996
+ entireRowCopyLabel: "Copy entire row",
997
+ copySuccessful: "Copy successful",
998
+ errorOccurredTitle: "Error Occurred",
999
+ copy: "Copy",
1000
+ copyThroughputLabelAndValueTemplate: "Throughput: {0}",
1001
+ sortAscending: "Sort ascending",
1002
+ sortDescending: "Sort descending",
1003
+ cancelFilterLabel: "Cancel",
1004
+ okFilterLabel: "OK",
1005
+ operationNameRunFinished: "Activity Run Finished",
1006
+ operationNameRunStarted: "Activity Run Started",
1007
+ statusStarted: "Started",
1008
+ operationNameOnDemandClusterCreateStarted:
1009
+ "On-Demand HDI Cluster Create Started",
1010
+ operationNameOnDemandClusterCreateSuccessful:
1011
+ "On-Demand HDI Cluster Created Successfully",
1012
+ operationNameOnDemandClusterDeleted: "On-Demand HDI Cluster Deleted",
1013
+ substatusStarting: "Starting",
1014
+ substatusFailedResourceAllocation: "Failed Resource Allocation",
1015
+ substatusSucceeded: "Succeeded",
1016
+ substatusFailedExecution: "Failed Execution",
1017
+ substatusTimedOut: "Timed Out",
1018
+ substatusFailedValidation: "Failed Validation",
1019
+ substatusAbandoned: "Abandoned",
1020
+ createAlertTooltip: "Create a new alert",
1021
+ createAlertButtonText: "+ Add Alert",
1022
+ deleteAlertQuestion: "Are you sure you want to delete this alert rule?",
1023
+ deleteAlertTitle: "Delete alert",
1024
+ deleteAlertTooltip: "Delete",
1025
+ disableAlertTooltip: "Disable",
1026
+ enableAlertTooltip: "Enable",
1027
+ editAlertTooltip: "Edit",
1028
+ wizardFinish: "Finish",
1029
+ wizardNext: "Next",
1030
+ wizardPrevious: "Previous",
1031
+ alertStepHeader: "Create Alert / ",
1032
+ alertStepOneTitle: "Details",
1033
+ alertStepTwoTitle: "Filters",
1034
+ alertStepThreeTitle: "Recipients",
1035
+ alertDescriptionPlaceholder: "Enter your description here",
1036
+ alertDescriptionTitle: "Description (optional)",
1037
+ alertNameTitle: "Name",
1038
+ alertEventTitle: "Event",
1039
+ sendToServiceOwnersText: "Email subscription admins",
1040
+ additionalAdminEmailText: "Additional administrator emails",
1041
+ alertStatusTitle: "Status",
1042
+ alertSubstatusTitle: "Substatus (optional)",
1043
+ alertAggregationTitle: "Aggregate events",
1044
+ alertConditionTitle: "Single alert if count is",
1045
+ alertTimeTitle: "in the last",
1046
+ alertEmptyAlertsListMessage:
1047
+ "You don't have any alerts. Create your first one now!",
1048
+ createAlertText: "Create alert",
1049
+ alertPermissionMissing:
1050
+ "You have insufficient permissions to view alert rules. Please check with your data factory administrator.",
1051
+ alertWizardStepOne: "Details",
1052
+ alertWizardStepThree: "Recipients",
1053
+ alertWizardStepTwo: "Filters",
1054
+ activityWindowsClearFilterTooltip:
1055
+ "Clear all filters from the activity windows list.",
1056
+ windowEndCopyLabel: "Copy window end",
1057
+ activityRunListWindowEndTitle: "Window End",
1058
+ ActivityResumeDescription:
1059
+ "Activity is paused and cannot run the activity windows until it is resumed.",
1060
+ ActivityResumeDisplayName: "Activity resume",
1061
+ CanceledDescription: "Canceled by user action.",
1062
+ CanceledDisplayName: "Canceled",
1063
+ ComputeResourcesDescription: "The compute resources are not available.",
1064
+ ComputeResourcesDisplayName: "Compute resources",
1065
+ ConcurrencyLimitDescription:
1066
+ "All the activity instances are busy running other activity windows.",
1067
+ ConcurrencyLimitDisplayName: "Concurrency limit",
1068
+ DatasetDependenciesDescription: "The upstream dependencies are not ready.",
1069
+ DatasetDependenciesDisplayName: "Dataset dependencies",
1070
+ FailedDescription: "Failed to generate and/or validate the activity window.",
1071
+ FailedDisplayName: "Failed",
1072
+ FailedValidationDescription: "Validation has failed.",
1073
+ InProgressDescription: "The activity window is being processed.",
1074
+ InProgressDisplayName: "In progress",
1075
+ NoneDescription:
1076
+ "An activity window that used to exist with a different status, but has been reset.",
1077
+ NoneDisplayName: "None",
1078
+ ReadyDescription: "The activity window is ready for consumption.",
1079
+ RetryDescription: "Activity execution will be retried.",
1080
+ RetryDisplayName: "Retry",
1081
+ ScheduledTimeDescription:
1082
+ "The time has not come for the activity window to run.",
1083
+ ScheduledTimeDisplayName: "Scheduled time",
1084
+ SkippedDescription: "The activity window is not processed.",
1085
+ SkippedDisplayName: "Skipped",
1086
+ TimedOutDescription:
1087
+ "Execution took longer than allowed by the activity's TimeOut setting.",
1088
+ TimedOutDisplayName: "Timed out",
1089
+ ValidatingDescription: "Validation in progress.",
1090
+ ValidatingDisplayName: "Validating",
1091
+ ValidationDisplayName: "Validation",
1092
+ ValidationRetryDescription: "Waiting for the validation to be retried.",
1093
+ ValidationRetryDisplayName: "Validation retry",
1094
+ WaitingValidationDescription: "Validation has not started yet.",
1095
+ ReadyDisplayName: "Ready",
1096
+ WaitingDisplayName: "Waiting",
1097
+ activityWindowDetailsTitle: "Activity Window",
1098
+ startAndEndTitle: "Start & End Time",
1099
+ statusCalendarBoxTooltip: "{0} - {1} - {2}",
1100
+ activityWindowListActivityNameTooltip:
1101
+ "Name of the activity creating the activity window.",
1102
+ activityWindowListActivityTypeTooltip: "Type of activity.",
1103
+ activityWindowListAttemptsTooltip:
1104
+ "Number of attempts to generate the activity window.",
1105
+ activityWindowListDurationTooltip: "Duration of the most recent attempt.",
1106
+ activityWindowListLastRunEndTooltip: "End time of the most recent attempt.",
1107
+ activityWindowListLastRunStartTooltip:
1108
+ "Start time of the most recent attempt.",
1109
+ activityWindowListPipelineTooltip: "Name of the pipeline.",
1110
+ activityWindowListStateTooltip: "Status of the activity window.",
1111
+ activityWindowListWindowEndTooltip: "End time of the activity window in UTC.",
1112
+ activityWindowListWindowStartTooltip:
1113
+ "Start time of the activity window in UTC.",
1114
+ idlePipelineStatusText: "Idle",
1115
+ failedToLoadPipelineView: "Failed to load pipeline view.",
1116
+ pipelineNotFound: "Pipeline not found. Please re-load the app.",
1117
+ applyText: "Apply",
1118
+ requiredPropertyLabel: "(Required)",
1119
+ addRowPropertyLabel: "+ Add",
1120
+ addRowPropertyTooltip: "Add new row",
1121
+ deleteRowPropertyTooltip: "Delete row",
1122
+ gatewayPropertiesCreateTime: "Create Time",
1123
+ gatewayPropertiesDescription: "Description",
1124
+ gatewayPropertiesLastConnectTime: "Last Connect Time",
1125
+ gatewayPropertiesLocation: "Location",
1126
+ gatewayPropertiesProvisioningState: "Provisioning State",
1127
+ gatewayPropertiesRegisterTime: "Register Time",
1128
+ gatewayPropertiesStatus: "Status",
1129
+ gatewayPropertiesVersion: "Version",
1130
+ gatewayPropertiesHostServiceUri: "Host Service URI",
1131
+ gatewayAssetText: "GATEWAY",
1132
+ gatewayPropertiesErrorMessage: "Error Message",
1133
+ gatewayPropertiesAutoUpdate: "Auto Update",
1134
+ gatewayPropertiesAutoUpdateOff: "Automatic update is off",
1135
+ gatewayPropertiesLastEndUpgradeTime: "Last Update Time",
1136
+ gatewayPropertiesLastUpdateResult: "Last Update Result",
1137
+ gatewayPropertiesScheduledUpgradeStartTime: "Next Scheduled Update Time",
1138
+ GatewayUpdatingMessage: "Gateway is updating...",
1139
+ upstreamDependenciesTitle: "Upstream Dependencies",
1140
+ activityWindowExplorerTabTitle: "Activity window explorer",
1141
+ alertsTabTitle: "Alerts",
1142
+ dataFactoryTitle: "Data factory",
1143
+ monitoringViewsTabTitle: "Monitoring views",
1144
+ propertiesTabTitle: "Properties",
1145
+ resourceExplorerTabTitle: "Resource explorer",
1146
+ toolboxTabTitle: "Toolbox",
1147
+ oneTimeListTitle: "One time",
1148
+ nextScheduledRunText: "Next scheduled run at {0}.",
1149
+ noScheduledRunText: "No scheduled runs for this pipeline.",
1150
+ emptyFactoryText: "This factory has no pipeline or dataset to display.",
1151
+ emptyPipelineText: "This pipeline has no content to display.",
1152
+ createAlertStepThreeErrorMessage:
1153
+ "Enable Email subscription admins or add a Additional Enable Email subscription admins or add a Additional administrator email.",
1154
+ jsonViewerTabTitle: "Script",
1155
+ jsonViewerActivityTitle: "Activity: {0}",
1156
+ jsonViewerDatasetTitle: "Dataset: {0}",
1157
+ jsonViewerLinkedServiceTitle: "LinkedService: {0}",
1158
+ jsonViewerNoSelectionText:
1159
+ "Please select a single linked service/pipeline/dataset/activity from the resource explorer or diagram to view its script.",
1160
+ jsonViewerNoSuchActivityInPipelineText:
1161
+ "There is no activity {0} in pipeline {1}.",
1162
+ jsonViewerPipelineTitle: "Pipeline: {0}",
1163
+ additionalAdminEmailTooltip: "Multiple emails are comma separated",
1164
+ alertEventTooltip: "Event that will trigger the alert",
1165
+ alertStatusTooltip: "Status condition to trigger alert",
1166
+ alertSubstatusTooltip: "Substatus condition to trigger alert",
1167
+ alertAggregationTooltip:
1168
+ "Leave unchecked to trigger one alert for every event",
1169
+ runInputPropertiesText: "Run input properties",
1170
+ genericActivityWizardSubtitle:
1171
+ "Enter name and description for the activity and specify how often you want to run it.",
1172
+ pctFromExistingDatasetTabTitle: "From existing dataset",
1173
+ pctExistingDatasetNotSelectedErrorMessage:
1174
+ "Please select at least one dataset from the list.",
1175
+ propertiesStepSubtitle:
1176
+ "Enter name and description for the {0} and specify how often you want to run the activity.",
1177
+ oneTimeCopySubheaderText: "One time copy",
1178
+ recurringCopySubheaderText: "Recurring copy",
1179
+ existingDatasetNameLabel: "Existing dataset name",
1180
+ filterByNameLabel: "Filter by name",
1181
+ filterByTypeLabel: "Filter by type",
1182
+ linkedServiceAzureDataLakeStore: "Azure Data Lake Store",
1183
+ pipelineActivePeriodLabel: "Active period",
1184
+ pipelineDescriptionLabel: "Pipeline description",
1185
+ pipelineNameLabel: "Pipeline name",
1186
+ everyXText: "Every {0}",
1187
+ noDescriptionPlaceholder: "<no description has been provided>",
1188
+ recurringPatternText: "Recurring pattern",
1189
+ noFilterCountText: "No filter applied.",
1190
+ singleFilterCountText: "1 filter applied.",
1191
+ multipleFilterCountText: "{0} filters applied.",
1192
+ oneTimePipelineModeLabel: "One time",
1193
+ scheduledPipelineModeLabel: "Scheduled",
1194
+ datasetNameLabel: "Dataset name",
1195
+ azureBlobStorageText: "Azure blob storage",
1196
+ existingDatasetTabTitle: "Existing dataset",
1197
+ nameFilterPlaceholder: "Search...",
1198
+ newDatasetTabTitle: "New dataset",
1199
+ fileOrFolderText: "File or folder",
1200
+ folderPathText: "Folder path",
1201
+ newLinkedServiceText: "New linked service",
1202
+ selectLinkedServiceText: "Select linked service",
1203
+ datasetPropertiesCollapsibleTitle: "Dataset properties",
1204
+ nameText: "Name",
1205
+ advancedSettingsText: "Advanced settings",
1206
+ datasetText: "Dataset",
1207
+ chooseText: "Choose",
1208
+ selectLinkedServiceForStorageMessage:
1209
+ "Please select/configure a linked service from above.",
1210
+ chooseInputFileFolderText: "Choose input file or folder",
1211
+ updateInputFileFolderText: "Update input file or folder",
1212
+ addNewColumnText: "Add new column",
1213
+ browseBlobText: "Browse blob",
1214
+ columnDescriptionOptionalText: "Column description (optional)",
1215
+ columnNameText: "Column name",
1216
+ filenameText: "Filename",
1217
+ previewTitle: "Preview",
1218
+ schemaTitle: "Schema",
1219
+ deployLabel: "Deploy",
1220
+ runTotalCopyDurationTitle: "Total copy duration",
1221
+ tableSliceOutOfRange: "Table Slice Out Of Range",
1222
+ paramNameHeading: "Name",
1223
+ paramValueHeading: "Value",
1224
+ pageNotFound: "Page not found.",
1225
+ useOriginalUrlMessage:
1226
+ 'Please click on the "Monitor & Manage" link for your Data Factory in the <a href="http://portal.azure.com">Azure Portal</a>.',
1227
+ azureSqlDataWarehouseLabel: "Azure SQL Data Warehouse",
1228
+ hDInsightLabel: "HDInsight",
1229
+ onDemandHDInsightLabel: "On-Demand HDInsight",
1230
+ onPremisesSqlServerLabel: "On-Premises SQL Server",
1231
+ selectSqlServerLabel: "Select SQL Server",
1232
+ selectStoredProcedureLabel: "Select Stored Procedure",
1233
+ selectJarFileLabel: "Select MapReduce JAR",
1234
+ copyWizardTitle: "Copy data",
1235
+ wizards: "Wizards",
1236
+ activityName: "Activity name",
1237
+ activityNameTooltip: "The name of the activity.",
1238
+ concurrencyTooltip:
1239
+ "Number of activity windows that can run in parallel for backfilling data scenarios.",
1240
+ delayTooltip:
1241
+ "Specify the delay before data processing of the activity starts. The execution of the activity is started after the delay is past the expected execution time. Example: 00:10:00 results in a delay of 10 minutes.",
1242
+ hdInsightDefaultSubtitle:
1243
+ "Specify the settings for the HDInsight cluster. You can use an existing HDInsight linked service (or) specify a new HDInsight cluster.",
1244
+ hdInsightByocTooltip: "Bring your own HDInsight cluster",
1245
+ longRetryIntervalTooltip: "The delay between long retry attempts.",
1246
+ longRetryTooltip:
1247
+ "Number of long retry attempts before the activity window execution fails.",
1248
+ priorityOrderTooltip:
1249
+ "Determines the ordering of activity windows that are being processed for backfilling data scenarios.",
1250
+ retryTooltip: "Number of times the activity will try before giving up.",
1251
+ timeoutTooltip: "Wait time for the activity to complete before it times out.",
1252
+ dataToolboxItemsTitle: "Data",
1253
+ datasetsToolboxItemTitle: "Dataset",
1254
+ clusterUriTooltip:
1255
+ "Enter the cluster URI manually, or select an existing cluster from your subscription.",
1256
+ clusterUriFormatTooltip:
1257
+ "The format of the URI should be similar to https://clusterName.azurehdinsight.net",
1258
+ addText: "Add",
1259
+ jsonFormatDisplayText: "JSON format",
1260
+ avroFormatDisplayText: "Avro format",
1261
+ textFormatDisplayText: "Text format",
1262
+ orcFormatDisplayText: "ORC format",
1263
+ setOfObjectsDisplayText: "Set of objects",
1264
+ arrayOfObjectsDisplayText: "Array of objects",
1265
+ filePatternLabel: "File pattern",
1266
+ filePatternInfo: "The pattern of data stored in each JSON file",
1267
+ nestingSeparatorLabel: "Nesting separator",
1268
+ nestingSeparatorInfo:
1269
+ "Character that is used to separate nesting levels. The default value is . (dot)",
1270
+ previewLoadingMessage: "Loading preview",
1271
+ tableDataEmptyMessage: "There is no data to preview",
1272
+ selectTableForPreviewMessage: "Select a table to see its preview.",
1273
+ schemaLoadingMessage: "Loading schema",
1274
+ noSchemaMessage: "There is no schema to show",
1275
+ selectTableForSchemaMessage: "Select a table to see its schema.",
1276
+ existingTitle: "Existing",
1277
+ newTitle: "New",
1278
+ authoringActivitySelectScript: "Select Script",
1279
+ isExternalDatasetPropertyTitle: "External",
1280
+ azureMLActivityDefaultName: "Azure ML activity settings",
1281
+ batchExecutionUriLabel: "Batch Execution URI",
1282
+ batchExecutionUriInfoBalloon:
1283
+ "Request URI for the Batch Execution API. You can find the Request URI by clicking on the BATCH EXECUTION link in the Azure ML web services page.",
1284
+ batchExecutionKeyLabel: "API Key",
1285
+ batchExecutionKeyInfoBalloon:
1286
+ "API key for the published Azure Machine Learning web service. You can find the API key by clicking on the web service that you have published.",
1287
+ azureMlLsNameInfoBalloon:
1288
+ "Name for ADF's linked service which manages connection information to your AzureML endpoint.",
1289
+ mlEndpointSelectHeader: "Select AzureML Endpoint",
1290
+ mlEndpointPropertiesHeader: "AzureML Endpoint Properties",
1291
+ mlLinkedServiceDescription: "Connection to AzureML experiment for {0}.",
1292
+ invalidMLEndpointHelpMessage: "Please provide a valid Batch Execution URI",
1293
+ missingMLEndpointHelpMessage:
1294
+ "Please provide a Batch Execution URI or select an existing Azure ML Linked Service",
1295
+ mlMissingInputHelpMessage:
1296
+ "ADF's Azure ML connector needs an Azure blob dataset connected as an input. Please connect and try again.",
1297
+ mlMissingOutputsHelpMessage:
1298
+ "Your Azure ML experiment expects more web output(s). Please adjust your outputs and try again.",
1299
+ swagFetchFailureHelpMessage:
1300
+ "We had trouble fetching your experiment's information. The error was: {0}",
1301
+ mlEndpointSelectionHeaderText:
1302
+ "Specify the settings for the AzureML endpoint. You can use an existing AzureML linked service (or) specify a new AzureML linked service.",
1303
+ mlEndpointPropertiesHeaderText: "Specify your endpoint configurations.",
1304
+ mlWebInput: "Web Inputs",
1305
+ mlWebOuputs: "Web Outputs",
1306
+ mlGlobalParams: "Global Parameters",
1307
+ mlBatchExecutionUriDefaultText:
1308
+ "Please provide a Management URI so we may populate this",
1309
+ authoringDeleteConfirmationText:
1310
+ "Are you sure you want to permanently delete this item from the canvas?",
1311
+ showDeploymentStatusTooltip: "Show deployment status",
1312
+ hideDeploymentStatusTooltip: "Hide deployment status",
1313
+ mapReduceActivitySetting: "Map reduce activity settings",
1314
+ consistencyLevelLabel: "Consistency Level",
1315
+ consistencyLevelToolTip:
1316
+ "Set copy consistency level if the copy source is Cassandra",
1317
+ ConsistencyLevelALL: "ALL",
1318
+ ConsistencyLevelANY: "ANY",
1319
+ ConsistencyLevelEACHQUORUM: "EACH_QUORUM",
1320
+ ConsistencyLevelLOCALONE: "LOCAL_ONE",
1321
+ ConsistencyLevelLOCALQUORUM: "LOCAL_QUORUM",
1322
+ ConsistencyLevelONE: "ONE",
1323
+ ConsistencyLevelQUORUM: "QUORUM",
1324
+ ConsistencyLevelTHREE: "THREE",
1325
+ ConsistencyLevelTWO: "TWO",
1326
+ unableToDeployDeploymentMessage: "Unable to deploy entity",
1327
+ deploymentCompleteDeploymentMessage: "Deployment complete",
1328
+ waitingOnDependenciesDeploymentMessage: "Waiting on dependencies",
1329
+ dependenciesFailedDeploymentMessage:
1330
+ "Dependencies failed to deploy. Please correct those errors and try again.",
1331
+ clusterSizeTooltip:
1332
+ "Number of worker/data nodes in the cluster. The HDInsight cluster is created with two head nodes along with the number of worker nodes you specify for this property. The nodes are of size Standard_D3 which have four cores. Hence, a four worker node cluster will comprise of twenty four cores (4*4 for the worker nodes + 2*4 for the head nodes).",
1333
+ timeToLiveTooltip:
1334
+ "The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster will stay alive after completion of an activity run if there are no other active jobs in the cluster. For example, if an activity run takes 6 minutes and Time To Live is set to 5 minutes, the cluster stays alive for 5 minutes after the 6 minutes of processing the activity run. If another activity run is executed with the 6 minutes window, it is processed by the same cluster.",
1335
+ onDemandHDInsightClusterGroupsTooltip:
1336
+ "You can choose different groups/properties and enter the corresponding configurations of this HDInsight cluster.",
1337
+ datasetPreviewNoFileSelectedMessage: "Please select a file to preview.",
1338
+ datasetPreviewNoDataAvailableMessage: "No preview data available.",
1339
+ datasetPreviewUnavailableMessage: "Preview unavailable for this file.",
1340
+ nameValuePair: "{0}: {1}",
1341
+ authoringToMonitoringLinkText:
1342
+ "Deployment complete. Click to monitor this pipeline.",
1343
+ browseLocalLabel: "Browse local",
1344
+ containerMatchErrorMessage:
1345
+ "Container name is not valid. Can only contain lowercase letters, numbers, hyphens, and cannot start or end with a hyphen. Please use / for folder separation.",
1346
+ linkedServiceNameTooltip: "Name of the linked service.",
1347
+ clusterStorageDescription: "Specify the storage account for your cluster.",
1348
+ jarFileStorageDescription: "Specify where your JAR file should be uploaded.",
1349
+ readyDeploymentStatusText: "Ready to be deployed",
1350
+ warningDeploymentStatusText: "Configuration is incomplete",
1351
+ fixDeploymentErrorsListItem: "{0}: {1}",
1352
+ fixDeploymentErrorsListDelimiter: ", ",
1353
+ missingMLGlobalParamsMessage:
1354
+ "Some of the Global Parameters are missing values.",
1355
+ missingMlApiKeyMessage:
1356
+ "The API Key required to connect to your AzureML experiment is missing.",
1357
+ azureMLParametersNotSet:
1358
+ "Please ensure experiment parameters have been set after connecting datasets.",
1359
+ namingConflictMessage: "There is a naming conflict.",
1360
+ validationFailureTitle: "Validation failures",
1361
+ validationFailureMessage:
1362
+ "The following validation errors were detected: {0} <br><br> Deployment will likely fail, are you sure you want to continue?",
1363
+ fixDeploymentErrorsListTerminator: ".",
1364
+ nameNotValidMessage:
1365
+ "Entity names must be 260 characters or less, start with a letter, number, or underscore, and cannot contain the following characters: '+', '?', '/', '<', '>', '*', '%', '&', ':', '\\\\'.",
1366
+ emptyPipelineDeploymentErrorMessage: "No pending changes to deploy.",
1367
+ azureStorageInvalidMessage:
1368
+ "The storage resource '{0}' is missing an account name or key.",
1369
+ byocClusterUriInvalidMessage:
1370
+ "The provided HDInsight cluster URI is invalid. The format should be similar to 'https://<clusterName>.azurehdinsight.net'",
1371
+ byocPasswordNotProvidedMessage:
1372
+ "A password has not been provided for the BYOC HDInsight cluster.",
1373
+ byocUsernameNotProvidedMessage:
1374
+ "A username has not been provided for the BYOC HDInsight cluster.",
1375
+ hiveScriptPathInvalidMessage:
1376
+ "The Hive script path is invalid. The format should be similar to 'scripts/hive.hql'",
1377
+ scriptStorageInvalidMessage:
1378
+ "The script's storage account is not configured.",
1379
+ jarFileStorageInvalidMessage:
1380
+ "The MapReduce JAR file's storage account is not configured.",
1381
+ MapReduceClassNameInvalidMessage:
1382
+ "The MapReduce class name is not configured.",
1383
+ jarFilePathInvalidMessage:
1384
+ "The MapReduce JAR file path is invalid. The format should be similar to 'jars/file.jar'",
1385
+ onDemandClusterSizeNotProvidedMessage:
1386
+ "The on-demand HDInsight 'Cluster Size' has not been configured.",
1387
+ onDemandOsTypeNotProvidedMessage:
1388
+ "The HDInsight cluster's 'OS Type' has not been configured.",
1389
+ onDemandTimeToLiveNotProvidedMessage:
1390
+ "The HDInsight cluster's 'Time to Live' has not been configured.",
1391
+ blobNoFolderPathOrFilenameMessage:
1392
+ "A folder path or a file name must be specified for this dataset.",
1393
+ datasetInvalidLinkedServiceMessage:
1394
+ "The linked service for this dataset is invalid ({0}).",
1395
+ datasetLinkedServiceNoInfoMessage: "Missing connection information.",
1396
+ datasetNoLinkedServiceMessage:
1397
+ "No linked service is specified for this dataset.",
1398
+ entityNotConfiguredMessage: "The entity is not configured.",
1399
+ clusterUriPlaceholder: "https://clusterName.azurehdinsight.net",
1400
+ isExternalDatasetPropertyDescription:
1401
+ "For an input table that is not generated by another pipeline in Azure Data Factory, you must set external to true. It denotes the input data is produced external to the Azure Data Factory service.",
1402
+ onDemandAdditionalStorageLinkedService: "Additional storage linked services",
1403
+ onDemandAdditionalStorageDescription:
1404
+ "Specify the additional storage accounts for your cluster.",
1405
+ NewLinkedServiceValue: "New Linked Service",
1406
+ existingDatasetTabTooltip: "No compatible existing datasets",
1407
+ deploymentOverlayTitle: "Deployment status",
1408
+ close: "Close",
1409
+ nothingToDeployTitle: "Nothing to deploy",
1410
+ datasetFolderPathProperty: "Folder Path",
1411
+ datasetTypeProperty: "Dataset Type",
1412
+ hdInsightClusterNotConfigured:
1413
+ "The HDInsight cluster has not been configured.",
1414
+ hdInsightStorageNotConfigured:
1415
+ "The HDInsight cluster storage has not been configured.",
1416
+ filesharePathMatchErrorMessage:
1417
+ "Fileshare path is not valid. '\\\\', ':', '*', '?', '\"','<', '>' and '|' are not allowed. Please use / for folder separation.",
1418
+ ValidationNameAlreadyTaken: "An identical name has already been added.",
1419
+ scriptParametersText: "Script parameters",
1420
+ scriptInputText: "Script input",
1421
+ specifyScriptText: "Specify the activity's script.",
1422
+ LinkedServicesName: "Linked services name",
1423
+ HDInsightClusterLinkedService: "Cluster linked service",
1424
+ MapReduceJarFileLinkedService: "JAR file linked service",
1425
+ MapReduceArguments: "Map Reduce arguments",
1426
+ noOutputActivityErrorMessage:
1427
+ "This activity has no output(s). Please add an output dataset.",
1428
+ newLinkedServiceDisplayText: "New linked service...",
1429
+ polybaseUsedOnSinkTemplate: "SQL DW PolyBase: {0}",
1430
+ onPremisesRegionTemplate: "On premises, gateway name: {0}",
1431
+ runtimeRegion: "Execution location: {0}",
1432
+ sourceStageRegion: "Source to staging blob runtime region: {0}",
1433
+ stagingBlobToDestinationRegion:
1434
+ "Staging blob to destination runtime region: {0}",
1435
+ filePathLabel: "{0} script path",
1436
+ filePathTooltip:
1437
+ "Specify the file path at which your {0} script should be stored in Azure Storage. E.g. {1}",
1438
+ pigScriptPathInvalidMessage:
1439
+ "The Pig script path is invalid. The format should be similar to 'scripts/sample.pig'",
1440
+ scriptStorageDescription: "Specify where your script should be uploaded.",
1441
+ uploadLocation: "Upload location",
1442
+ dotNetHeader: "Select .NET Code",
1443
+ dotNetSubtitle:
1444
+ "Specify the settings for the cluster where you want to run the .NET activity. You can use an existing Azure Batch/HDInsight linked service (or) specify a new Azure Batch/ HDInsight cluster.",
1445
+ dotNetPropertiesFilePath: "File path",
1446
+ dotNetActivitySettings: ".NET activity settings",
1447
+ dotNetFilePathInvalidMessage:
1448
+ "The Custom .NET zip file path is invalid. The format should be similar to 'dotnet/file.zip'",
1449
+ dotNetUploadZipTooltip: "Select your compressed .NET code for upload",
1450
+ dotNetAssemblyName: "Assembly name",
1451
+ dotNetEntryPoint: "Entry point",
1452
+ dotNetPackageFile: "Package file",
1453
+ dotNetPackageLinkedService: "Package linked service",
1454
+ dotNetStorageLinkedServiceDescription:
1455
+ "Specify where your file should be uploaded.",
1456
+ exportActivityRunsListTooltip:
1457
+ "Copy the contents of the activity window list to the clipboard.",
1458
+ commaSeparator: ",",
1459
+ signOut: "Sign out",
1460
+ scriptParametersGeneratedText:
1461
+ "The keys in your script have been populated in the 'Script Parameters' section below.",
1462
+ authorizationFailed: "Authorization failed",
1463
+ storedProcedureTitle: "Stored procedure",
1464
+ autoFillFromDatasets: "Auto-fill from datasets",
1465
+ autoFillFromDatasetsTooltip:
1466
+ "Parse your input/output dataset(s) and automatically add the dataset 'Name' as the script parameter 'Name' and 'Folder Path' as the script parameter 'Value'.",
1467
+ autoFillFromScript: "Auto-fill from script",
1468
+ autoFillFromScriptTooltip:
1469
+ "Parse your Hive script and add the 'hiveconf' parameters in your script as script parameter 'Names'. You can then provide values for each parameter as appropriate.",
1470
+ clear: "Clear",
1471
+ clearScriptParametersTooltip:
1472
+ "Removes all script parameters. You can then regenerate the script parameters using either of the auto-fill options, or manual entry.",
1473
+ datasetCountText: "{0} Datasets",
1474
+ unknownType: "Unknown type",
1475
+ scriptContentEmptyMessage: "The script has not been configured.",
1476
+ azureSqlDatabaseMissingConnectionStringMessage:
1477
+ "The Azure SQL database '{0}' does not have a valid connection string.",
1478
+ incompleteStoredProcedureParametersMessage:
1479
+ "Some of the stored procedure parameters are not entered.",
1480
+ noSqlServerConfiguredMessage:
1481
+ "No valid SQL server has been configured or selected.",
1482
+ noStoredProcedureSelectedMessage: "No stored procedure has been selected.",
1483
+ viewCodeTitle: "Source code",
1484
+ viewCodeLabel: "View source code",
1485
+ viewCodeTooltip: "View source code",
1486
+ storedProcedureListTooltip:
1487
+ "List of stored procedures in the selected SQL server. Select one to view the required parameters below.",
1488
+ loadStoredProceduresFailedMessage:
1489
+ "Could not load stored procedures from this SQL server.",
1490
+ noParametersMessage: "No parameters.",
1491
+ noStoredProceduresInSqlServerMessage:
1492
+ "There are no stored procedures in this SQL server.",
1493
+ EntityNamesNotUniqueMessage: "Some of the entity names are not unique",
1494
+ comingSoonMessage: "Coming soon...",
1495
+ filterByTableNameLabel: "Filter by table name",
1496
+ byocClusterHeading: "Bring your own HDInsight cluster",
1497
+ onDemandClusterHeading: "On demand HDInsight cluster",
1498
+ gatewaysResource: "Gateways",
1499
+ author: "Author",
1500
+ monitor: "Monitor",
1501
+ parquetFormatDisplayText: "Parquet format",
1502
+ newCluster: "+ New cluster",
1503
+ resourceExplorerEditEntityText: "Edit",
1504
+ hdInsightClusterSettings: "HDInsight cluster settings",
1505
+ activityRunListProgressTitle: "Progress (%)",
1506
+ activityWindowListProgressTooltip: "Progress of the activity window.",
1507
+ pipelineListDataExtractedTitle: "Data Extracted",
1508
+ pipelineListDataExtractedTooltip: "Data extracted of the pipeline.",
1509
+ pipelineListDataLoadedTitle: "Data Loaded",
1510
+ pipelineListDataLoadedTooltip: "Data loaded of the pipeline.",
1511
+ pipelineListProgressTooltip: "Progress of the pipeline.",
1512
+ pipelineListStateTooltip: "Status of the pipeline.",
1513
+ pipelineListWindowEndTooltip: "End time of the pipeline in UTC.",
1514
+ pipelineListWindowStartTooltip: "Start time of the pipeline in UTC.",
1515
+ deletePipelinesTitle: "Delete pipelines",
1516
+ deletePipelineTooltip: "Delete selected pipelines",
1517
+ deleteSelectedPipelinesQuestion: "Delete selected pipelines?",
1518
+ activityRunListOutputDatasetTitle: "Output Dataset",
1519
+ activityWindowListOutputDatasetTooltip:
1520
+ "Output dataset of the activity window.",
1521
+ copyActivityMonitorEmptyFactory:
1522
+ "This data factory has no pipeline to display.",
1523
+ copyActivityMonitorEmptyPipelineWindow:
1524
+ "A newly created pipeline may take a moment to appear in this list, or this data factory has no pipeline to display for the selected time period.",
1525
+ copyActivityMonitorEmptyActivityWindow:
1526
+ "This pipeline has no activity window to display for the selected time period.",
1527
+ onetimePipelineDeployFailed:
1528
+ "Pipeline failed to deploy. Please correct errors and try again.",
1529
+ wizardRetry: "Retry",
1530
+ zipDeflateWarningMessage:
1531
+ "The compression type ZipDeflate won't honor any Copy behavior setting in previous page",
1532
+ jsonDuplicateColumnWarning:
1533
+ "Error: found duplicate column names in JSONPath definition",
1534
+ jsonNodeReferenceInfoBallon:
1535
+ "Select or specify the JSONPath of a nested JSON array for cross-apply. Preview the cross-apply results in PREVIEW section below.",
1536
+ compressionTypeWarningMessage:
1537
+ "The compression type in previous page will be ignored for this format",
1538
+ billedDurationTemplate: "Billed duration for data movement: {0}",
1539
+ copyDurationTemplate: "Copy duration: {0}",
1540
+ dataReadTemplate: "Data read: {0}",
1541
+ dataWrittenTemplate: "Data written: {0}",
1542
+ durationTemplate: "Duration: {0}",
1543
+ gatewayNodeTemplate: "Gateway node: {0}",
1544
+ rowsTemplate: "Rows: {0}",
1545
+ startTimeTemplate: "Start time: {0}",
1546
+ redshiftUnloadUsedTemplate: "Redshift unload: {0}",
1547
+ skipFaultyRowsTemplate: "Skipped row count: {0}",
1548
+ };
1549
+ //# sourceMappingURL=ClientResources.js.map