Project

General

Profile

1 50239 myrto.kouk
2 50376 myrto.kouk
/* Service Down Message */
3 50610 myrto.kouk
export const noServiceMessage = 'The service is not available at the moment.';
4 50245 myrto.kouk
5 51581 myrto.kouk
/* Repositories Messages */
6 50376 myrto.kouk
export const loadingUserRepoInfoError = "Failed to load information on your registered repositories";
7 50534 myrto.kouk
export const loadingUserRepoInfoEmpty = "You have not yet registered any repositories";
8 50504 myrto.kouk
export const reposRetrievalError = 'The repositories can not be retrieved at the moment';
9 50349 myrto.kouk
export const noRepositoriesFound = 'No Datasources were found';
10 50239 myrto.kouk
export const loadingReposMessage = 'Retrieving repositories ...';
11 50610 myrto.kouk
export const noRepositoryChosenMsg = 'You need to select a repository first.';
12 50706 myrto.kouk
export const loadingRepoMessage = 'Retrieving repository information ...';
13
export const loadingRepoError = 'System error retrieving repository info';
14 51015 myrto.kouk
export const loadingAggregationHistory = 'Retrieving aggregation history ...';
15
export const loadingAggregationHistoryError = 'System error retrieving repository aggregation history.';
16
export const noAggregationHistory = 'There is no aggregation history for this repository at the moment';
17 50303 myrto.kouk
18 51581 myrto.kouk
/* Interfaces Messages */
19
export const noInterfacesSaved = 'You have to create at least one interface';
20
export const nonRemovableInterface = 'This interface can not be removed!';
21
22 51543 myrto.kouk
/* Rules Messages */
23 50504 myrto.kouk
export const loadingRuleSets = 'Retrieving sets of rules ...';
24
export const loadingRuleSetsError = 'The rule sets can not be retrieved at the moment';
25
export const noRuleSets = 'No rule sets were found';
26 50685 myrto.kouk
export const noContentRulesResults = 'No content rules were tested';
27
export const noUsageRulesResults = 'No usage rules were tested';
28 51543 myrto.kouk
export const didntSelectRules = 'You need to select at least one rule';
29
export const didntSelectCrisEntities = 'You need to select at least one entity';
30 50504 myrto.kouk
31 50672 myrto.kouk
/* Loading Validation Sets Messages */
32 50534 myrto.kouk
export const loadingValSets = 'Retrieving validation sets ...';
33
export const loadingValSetsError = 'The validation sets can not be retrieved at the moment';
34
35 50672 myrto.kouk
/* Jobs of User */
36
export const loadingUserJobs = 'Retrieving job results ...';
37
export const loadingUserJobsError = 'Your job results can not be retrieved at the moment';
38
export const noUserJobsFound = 'No stored jobs found';
39 50685 myrto.kouk
export const loadingJobSummary = 'Retrieving job summary ...';
40
export const loadingJobSummaryError = 'The job summary can not be retrieved at the moment';
41 51320 myrto.kouk
export const submittingJob = 'Submitting the new job';
42
export const submittingJobError = 'The job could not be submitted';
43 50632 myrto.kouk
44 50672 myrto.kouk
45 50376 myrto.kouk
/* Loading Topics Messages */
46 50746 myrto.kouk
export const loadingTopics = 'Retrieving topics for the datasource...';
47 50376 myrto.kouk
export const loadingTopicsError = 'Failed to load the topics for your datasource';
48 50706 myrto.kouk
export const noTopicsFound = 'No topics were found for this datasource';
49 50376 myrto.kouk
50 50746 myrto.kouk
/* Loading Events Messages */
51
export const loadingEvents = 'Retrieving events for topic ...';
52
export const loadingEventsError = 'Failed to retrieve events';
53
export const noEventsForTopic = 'No events were found for this topic';
54
export const noEventsWithParams = 'No events were found with the given parameters';
55 50632 myrto.kouk
56 50746 myrto.kouk
/* Loading Subscriptions Messages */
57
export const loadingSubscriptions = 'Retrieving subscriptions ...';
58
export const noSubscriptionsFound = 'No subscriptions found for your account';
59
export const deletingSubscription = 'Deleting subscription ...';
60
export const deletingSubscriptionError = 'Failed to delete your subscription';
61
export const deletingSubscriptionSuccess = 'The subscription was deleted successfully';
62 50843 myrto.kouk
export const subscribingToEvents = 'Subscribing to events ...';
63
export const subscribingToEventsError = 'Failed to subscribe you to the chosen events';
64
export const subscribingToeventsSuccess = 'The subscription was submitted successfully';
65
export const subscribingChooseFrequency = 'Please choose a frequency for the notifications';
66 50746 myrto.kouk
67 50706 myrto.kouk
/* Piwik Messages */
68 50672 myrto.kouk
export const loadingMetrics = 'Loading diagrams ...';
69 50706 myrto.kouk
export const loadingMetricsError = 'Failed to load the metrics for this repository';
70
export const enablingMetrics = 'Enabling metrics for this repository...';
71
export const enabledMetricsSuccess = 'The metrics for this repository were enabled';
72
export const enabledMetricsError = 'System error enabling metrics for this repository.';
73 50632 myrto.kouk
74
75 50376 myrto.kouk
/* Forms validation Messages */
76 50349 myrto.kouk
export const formInfoLoading = 'Loading information';
77 50977 myrto.kouk
export const formSubmitting = 'Saving changes ...';
78 50706 myrto.kouk
export const formErrorRequiredFields = 'All the fields marked with (*) are mandatory';
79 50469 myrto.kouk
export const formErrorInvalidFields = 'There are invalid fields';
80 51015 myrto.kouk
export const formErrorWasntSaved = 'The form could not be submitted';
81 50610 myrto.kouk
export const formSuccessUpdatedRepo = 'The datasource was updated successfully.';
82 50358 myrto.kouk
export const formSuccessRegisteredDatasource = 'The datasource was registered successfully';
83 50610 myrto.kouk
export const formSuccessAddedInterface = 'The interface was added successfully.';
84
export const formSuccessUpdatedInterface = 'The interface was updated successfully.';
85 50376 myrto.kouk
86 50925 myrto.kouk
/* BaseUrl validation Messages */
87 50376 myrto.kouk
export const didntChooseBaseUrl = 'You need to select a base URL';
88
export const invalidCustomBaseUrl = 'The url you entered is not valid';
89 50925 myrto.kouk
export const identifyingUrl = "Identifying Url ...";