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 errorsInInterfaces = 'There are still invalid interfaces. Please correct or remove them.';
22
export const nonRemovableInterface = 'This interface can not be removed!';
23

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

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

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

    
46

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

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

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

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

    
77

    
78
/* Forms validation Messages */
79
export const formInfoLoading = 'Loading information';
80
export const formInterfacesLoading = 'Loading interfaces';
81
export const formSubmitting = 'Saving changes ...';
82
export const formErrorRequiredFields = 'All the fields marked with (*) are mandatory';
83
export const formErrorInvalidFields = 'There are invalid fields';
84
export const formErrorWasntSaved = 'The form could not be submitted';
85
let errorRegisterRepo = 'Due to an error, the registration can\'t be finished. ';
86
errorRegisterRepo = errorRegisterRepo + 'Please contact "helpdesk@openaire.eu" for support. ';
87
errorRegisterRepo = errorRegisterRepo + 'We\'re sorry for the inconvenience.';
88
export const formErrorRegisterRepo = errorRegisterRepo;
89
export const formSuccessUpdatedRepo = 'The datasource was updated successfully.';
90
export const formSuccessRegisteredDatasource = 'The datasource was registered successfully';
91
// export const formSuccessAddedInterface = 'The interface was added successfully.';
92
// export const formSuccessUpdatedInterface = 'The interface was updated successfully.';
93
export const formSuccessAddedInterface = 'The harvesting settings are valid!';
94
export const formSuccessUpdatedInterface = 'The harvesting settings are valid!';
95

    
96
/* BaseUrl validation Messages */
97
export const didntChooseBaseUrl = 'You need to select a base URL';
98
export const invalidCustomBaseUrl = 'The base URL could not be confirmed. Μake sure that you are using the correct protocol ("http" or "https"), as the service is currently unable to follow url redirects. If the warning persists, leave us a note in the comments section. We will check your interface and contact you if there are any problems.';
99
export const identifyingUrl = 'Identifying Url ...';
(4-4/11)