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 loadingInterfacesError = 'System error retrieving interfaces';
15
export const loadingAggregationHistory = 'Retrieving aggregation history ...';
16
export const loadingAggregationHistoryError = 'System error retrieving repository aggregation history.';
17
export const noAggregationHistory = 'There is no aggregation history for this repository at the moment';
18

    
19
/* Interfaces Messages */
20
export const noInterfacesSaved = 'You have to create at least one interface';
21
export const nonRemovableInterface = 'This interface can not be removed!';
22

    
23
/* Rules Messages */
24
export const loadingRuleSets = 'Retrieving sets of rules ...';
25
export const loadingRuleSetsError = 'The rule sets can not be retrieved at the moment';
26
export const noRuleSets = 'No rule sets were found';
27
export const noContentRulesResults = 'No content rules were tested';
28
export const noUsageRulesResults = 'No usage rules were tested';
29
export const didntSelectRules = 'You need to select at least one rule';
30
export const didntSelectCrisEntities = 'You need to select at least one entity';
31

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

    
36
/* Jobs of User */
37
export const loadingUserJobs = 'Retrieving job results ...';
38
export const loadingUserJobsError = 'Your job results can not be retrieved at the moment';
39
export const noUserJobsFound = 'No stored jobs found';
40
export const loadingJobSummary = 'Retrieving job summary ...';
41
export const loadingJobSummaryError = 'The job summary can not be retrieved at the moment';
42
export const submittingJob = 'Submitting the new job';
43
export const submittingJobError = 'The job could not be submitted';
44

    
45

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

    
51
/* Loading Events Messages */
52
export const loadingEvents = 'Retrieving events for topic ...';
53
export const loadingEventsError = 'Failed to retrieve events';
54
export const noEventsForTopic = 'No events were found for this topic';
55
export const noEventsWithParams = 'No events were found with the given parameters';
56

    
57
/* Loading Subscriptions Messages */
58
export const loadingSubscriptions = 'Retrieving subscriptions ...';
59
export const noSubscriptionsFound = 'No subscriptions found for your account';
60
export const deletingSubscription = 'Deleting subscription ...';
61
export const deletingSubscriptionError = 'Failed to delete your subscription';
62
export const deletingSubscriptionSuccess = 'The subscription was deleted successfully';
63
export const subscribingToEvents = 'Subscribing to events ...';
64
export const subscribingToEventsError = 'Failed to subscribe you to the chosen events';
65
export const subscribingToeventsSuccess = 'The subscription was submitted successfully';
66
export const subscribingChooseFrequency = 'Please choose a frequency for the notifications';
67

    
68
/* Piwik Messages */
69
export const loadingMetrics = 'Loading diagrams ...';
70
export const loadingMetricsError = 'Failed to load the metrics for this repository';
71
export const enablingMetrics = 'Enabling metrics for this repository...';
72
export const enabledMetricsSuccess = 'The metrics for this repository were enabled';
73
export const enabledMetricsError = 'System error enabling metrics for this repository.';
74

    
75

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

    
88
/* BaseUrl validation Messages */
89
export const didntChooseBaseUrl = 'You need to select a base URL';
90
export const invalidCustomBaseUrl = 'The url you entered is not valid';
91
export const identifyingUrl = 'Identifying Url ...';
(4-4/11)