mirror of
https://github.com/strapi/strapi.git
synced 2025-09-23 23:38:15 +00:00
50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
/*
|
|
* HomePage Messages
|
|
*
|
|
* This contains all the text for the HomePage component.
|
|
*/
|
|
import { defineMessages } from 'react-intl';
|
|
|
|
export default defineMessages({
|
|
rightSectionDescription: {
|
|
id: 'settings-manager.components.HomePage.rightSectionDescription',
|
|
defaultMessage: 'Configure your general settings',
|
|
},
|
|
rightContentSectionTitle: {
|
|
id: 'settings-manager.components.HomePage.rightContentSectionTitle',
|
|
defaultMessage: 'Application',
|
|
},
|
|
rightContentSectionDescription: {
|
|
id: 'settings-manager.components.HomePage.rightContentSectionDescription',
|
|
defaultMessage: 'The general settings of your Strapi application.',
|
|
},
|
|
nameLabel: {
|
|
id: 'settings-manager.components.HomePage.nameLabel',
|
|
defaultMessage: 'Name',
|
|
},
|
|
namePlaceholder: {
|
|
id: 'settings-manager.components.HomePage.namePlaceholder',
|
|
defaultMessage: 'My Application',
|
|
},
|
|
descriptionLabel: {
|
|
id: 'settings-manager.components.HomePage.descriptionLabel',
|
|
defaultMessage: 'Description',
|
|
},
|
|
descriptionPlaceholder: {
|
|
id: 'settings-manager.components.HomePage.descriptionPlaceholder',
|
|
defaultMessage: 'A Strapi application',
|
|
},
|
|
versionLabel: {
|
|
id: 'settings-manager.components.HomePage.versionLabel',
|
|
defaultMessage: 'Version',
|
|
},
|
|
versionPlaceholder: {
|
|
id: 'settings-manager.components.HomePage.versionPlaceholder',
|
|
defaultMessage: '0.0.1',
|
|
},
|
|
submit: {
|
|
id: 'settings-manager.components.HomePage.submit',
|
|
defaultMessage: 'Submit',
|
|
},
|
|
});
|