added new strings

This commit is contained in:
Abhinav-grd 2021-03-19 05:11:04 +05:30
parent 5dfe3a8e93
commit d692ad9986

View file

@ -107,16 +107,24 @@ const englishConstants = {
FREE_SUBSCRIPTION_INFO: (expiryTime) => (
<>
<p>
you are on the <strong>free</strong> plan {' '} that expires on {' '}
{new Date(expiryTime / 1000).toLocaleDateString("en-US", { year: 'numeric', month: 'long', day: 'numeric' })}
you are on the <strong>free</strong> plan that expires on{' '}
{new Date(expiryTime / 1000).toLocaleDateString('en-US', {
year: 'numeric',
month: 'long',
day: 'numeric',
})}
</p>
</>
),
PAID_SUBSCRIPTION_INFO: (expiryTime) => (
<>
<p>
your subscription will renew on {' '}
{new Date(expiryTime / 1000).toLocaleDateString("en-US", { year: 'numeric', month: 'long', day: 'numeric' })}
your subscription will renew on{' '}
{new Date(expiryTime / 1000).toLocaleDateString('en-US', {
year: 'numeric',
month: 'long',
day: 'numeric',
})}
</p>
</>
),
@ -128,6 +136,10 @@ const englishConstants = {
UPLOAD_DROPZONE_MESSAGE: 'drop to backup your files',
CHANGE: 'change',
CHANGE_EMAIL: 'change email ?',
UPLOAD_STRATEGY_CHOICE:
'the folder you are trying to upload has sub-folders ,please select the upload strategy you would want to use',
UPLOAD_STRATEGY_SINGLE_COLLECTION: 'single collection for each folder',
UPLOAD_STRATEGY_COLLECTION_PER_FOLDER: 'a collection for each folder',
};
export default englishConstants;