1
|
|
2
|
/* Service Down Message */
|
3
|
export const noServiceMessage = 'The service is not available at the moment!';
|
4
|
|
5
|
/* User Info Messages */
|
6
|
export const loadingUserRepoInfo = "Loading information on registered repositories";
|
7
|
export const loadingUserRepoInfoError = "Failed to load information on your registered repositories";
|
8
|
export const loadingUserRepoInfoEmpty = "You have not yet registered any repository";
|
9
|
|
10
|
|
11
|
/* Loading Repositories Messages */
|
12
|
export const reposRetrievalError = 'The repositories can not be retrieved at the moment!';
|
13
|
export const noRepositoriesFound = 'No Datasources were found';
|
14
|
export const noRepositoriesRegistered = 'No Datasources are registered under your account';
|
15
|
export const loadingReposMessage = 'Retrieving repositories ...';
|
16
|
export const noRepositoryChosenMsg = 'You need to select a repository first!';
|
17
|
|
18
|
/* Loading Topics Messages */
|
19
|
export const loadingTopics = 'Loading topics for your datasource';
|
20
|
export const loadingTopicsError = 'Failed to load the topics for your datasource';
|
21
|
|
22
|
/* Forms validation Messages */
|
23
|
export const formInfoLoading = 'Loading information';
|
24
|
export const formErrorRequiredFields = 'You need to fill in all the fields with (*)';
|
25
|
export const formErrorInvalidFields = 'There are invalid fields';
|
26
|
export const formSuccessUpdatedRepo = 'The datasource was updated successfully!';
|
27
|
export const formSuccessRegisteredDatasource = 'The datasource was registered successfully';
|
28
|
export const formSuccessAddedInterface = 'The interface was added successfully!';
|
29
|
export const formSuccessUpdatedInterface = 'The interface was updated successfully!';
|
30
|
|
31
|
/* Forms validation Messages-details */
|
32
|
export const didntChooseBaseUrl = 'You need to select a base URL';
|
33
|
export const invalidCustomBaseUrl = 'The url you entered is not valid';
|