Project

General

Profile

1

    
2
/* Service Down Message */
3
export const noServiceMessage = 'The service is not available at the moment.';
4

    
5
/* Repositories Messages */
6
export const loadingUserRepoInfoError = "Failed to load information on your registered repositories";
7
export const loadingUserRepoInfoEmpty = "You have not yet registered any repositories";
8
export const reposRetrievalError = 'The repositories can not be retrieved at the moment';
9
export const noRepositoriesFound = 'No Datasources were found';
10
export const loadingReposMessage = 'Retrieving repositories ...';
11
export const noRepositoryChosenMsg = 'You need to select a repository first.';
12
export const loadingRepoMessage = 'Retrieving repository information ...';
13
export const loadingRepoError = 'System error retrieving repository info';
14
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

    
18
/* 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
/* Rules Messages */
23
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
export const noContentRulesResults = 'No content rules were tested';
27
export const noUsageRulesResults = 'No usage rules were tested';
28
export const didntSelectRules = 'You need to select at least one rule';
29
export const didntSelectCrisEntities = 'You need to select at least one entity';
30

    
31
/* Loading Validation Sets Messages */
32
export const loadingValSets = 'Retrieving validation sets ...';
33
export const loadingValSetsError = 'The validation sets can not be retrieved at the moment';
34

    
35
/* 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
export const loadingJobSummary = 'Retrieving job summary ...';
40
export const loadingJobSummaryError = 'The job summary can not be retrieved at the moment';
41
export const submittingJob = 'Submitting the new job';
42
export const submittingJobError = 'The job could not be submitted';
43

    
44

    
45
/* Loading Topics Messages */
46
export const loadingTopics = 'Retrieving topics for the datasource...';
47
export const loadingTopicsError = 'Failed to load the topics for your datasource';
48
export const noTopicsFound = 'No topics were found for this datasource';
49

    
50
/* 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

    
56
/* 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
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

    
67
/* Piwik Messages */
68
export const loadingMetrics = 'Loading diagrams ...';
69
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

    
74

    
75
/* Forms validation Messages */
76
export const formInfoLoading = 'Loading information';
77
export const formSubmitting = 'Saving changes ...';
78
export const formErrorRequiredFields = 'All the fields marked with (*) are mandatory';
79
export const formErrorInvalidFields = 'There are invalid fields';
80
export const formErrorWasntSaved = 'The form could not be submitted';
81
export const formSuccessUpdatedRepo = 'The datasource was updated successfully.';
82
export const formSuccessRegisteredDatasource = 'The datasource was registered successfully';
83
export const formSuccessAddedInterface = 'The interface was added successfully.';
84
export const formSuccessUpdatedInterface = 'The interface was updated successfully.';
85

    
86
/* BaseUrl validation Messages */
87
export const didntChooseBaseUrl = 'You need to select a base URL';
88
export const invalidCustomBaseUrl = 'The url you entered is not valid';
89
export const identifyingUrl = "Identifying Url ...";
(5-5/12)