Updates in translations
This commit is contained in:
parent
b058169e12
commit
a993c06aaf
4 changed files with 39 additions and 27 deletions
|
@ -106,10 +106,10 @@ export default class List extends Component {
|
||||||
actions, this,
|
actions, this,
|
||||||
{ method: HTTPMethod.DELETE, url: `rest/blacklist/${email}`},
|
{ method: HTTPMethod.DELETE, url: `rest/blacklist/${email}`},
|
||||||
{ icon: 'remove', label: t('removeFromBlacklist') },
|
{ icon: 'remove', label: t('removeFromBlacklist') },
|
||||||
t('Confirm Removal From Blacklist'),
|
t('confirmRemovalFromBlacklist'),
|
||||||
t('Are you sure you want to remove {{email}} from the blacklist?', {email}),
|
t('areYouSureYouWantToRemoveEmailFromThe', {email}),
|
||||||
t('Removing {{email}} from the blacklist', {email}),
|
t('removingEmailFromTheBlacklist', {email}),
|
||||||
t('{{email}} removed from the blacklist', {email}),
|
t('emailRemovedFromTheBlacklist', {email}),
|
||||||
null
|
null
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -129,23 +129,23 @@ export function getRuleHelpers(t, fields) {
|
||||||
},
|
},
|
||||||
eqTodayPlusDays: {
|
eqTodayPlusDays: {
|
||||||
dropdownLabel: t('onXthDayBeforeafterCurrentDate'),
|
dropdownLabel: t('onXthDayBeforeafterCurrentDate'),
|
||||||
treeLabel: rule => getRelativeDateTreeLabel(rule, [tMark('dateInColumnColNameIsTheCurrentDate'), tMark('dateInColumnColNameIsValuethDayAfterThe'), tMark('dateInColumnColNameIsValuethDayBeforeThe')]),
|
treeLabel: rule => getRelativeDateTreeLabel(rule, [tMark('dateInColumnColNameIsTheCurrentDate'), tMark('dateInColumnColNameIsTheValuethDayAfter'), tMark('dateInColumnColNameIsTheValuethDayBefore')]),
|
||||||
},
|
},
|
||||||
ltTodayPlusDays: {
|
ltTodayPlusDays: {
|
||||||
dropdownLabel: t('beforeXthDayBeforeafterCurrentDate'),
|
dropdownLabel: t('beforeXthDayBeforeafterCurrentDate'),
|
||||||
treeLabel: rule => getRelativeDateTreeLabel(rule, [tMark('dateInColumnColNameIsBeforeTheCurrent'), tMark('dateInColumnColNameIsBeforeValuethDay'), tMark('dateInColumnColNameIsBeforeValuethDay-1')]),
|
treeLabel: rule => getRelativeDateTreeLabel(rule, [tMark('dateInColumnColNameIsBeforeTheCurrent'), tMark('dateInColumnColNameIsBeforeTheValuethDay'), tMark('dateInColumnColNameIsBeforeTheValuethDay-1')]),
|
||||||
},
|
},
|
||||||
leTodayPlusDays: {
|
leTodayPlusDays: {
|
||||||
dropdownLabel: t('beforeOrOnXthDayBeforeafterCurrentDate'),
|
dropdownLabel: t('beforeOrOnXthDayBeforeafterCurrentDate'),
|
||||||
treeLabel: rule => getRelativeDateTreeLabel(rule, [tMark('dateInColumnColNameIsBeforeOrOnThe'), tMark('dateInColumnColNameIsBeforeOrOnValueth'), tMark('dateInColumnColNameIsBeforeOrOnValueth-1')]),
|
treeLabel: rule => getRelativeDateTreeLabel(rule, [tMark('dateInColumnColNameIsBeforeOrOnThe'), tMark('dateInColumnColNameIsBeforeOrOnThe-1'), tMark('dateInColumnColNameIsBeforeOrOnThe-2')]),
|
||||||
},
|
},
|
||||||
gtTodayPlusDays: {
|
gtTodayPlusDays: {
|
||||||
dropdownLabel: t('afterXthDayBeforeafterCurrentDate'),
|
dropdownLabel: t('afterXthDayBeforeafterCurrentDate'),
|
||||||
treeLabel: rule => getRelativeDateTreeLabel(rule, [tMark('dateInColumnColNameIsAfterTheCurrentDate'), tMark('dateInColumnColNameIsAfterValuethDay'), tMark('dateInColumnColNameIsAfterValuethDay-1')]),
|
treeLabel: rule => getRelativeDateTreeLabel(rule, [tMark('dateInColumnColNameIsAfterTheCurrentDate'), tMark('dateInColumnColNameIsAfterTheValuethDay'), tMark('dateInColumnColNameIsAfterTheValuethDay-1')]),
|
||||||
},
|
},
|
||||||
geTodayPlusDays: {
|
geTodayPlusDays: {
|
||||||
dropdownLabel: t('afterOrOnXthDayBeforeafterCurrentDate'),
|
dropdownLabel: t('afterOrOnXthDayBeforeafterCurrentDate'),
|
||||||
treeLabel: rule => getRelativeDateTreeLabel(rule, [tMark('dateInColumnColNameIsAfterOrOnTheCurrent'), tMark('dateInColumnColNameIsAfterOrOnValuethDay'), tMark('dateInColumnColNameIsAfterOrOnValuethDay-1')]),
|
treeLabel: rule => getRelativeDateTreeLabel(rule, [tMark('dateInColumnColNameIsAfterOrOnTheCurrent'), tMark('dateInColumnColNameIsAfterOrOnTheValueth'), tMark('dateInColumnColNameIsAfterOrOnTheValueth-1')]),
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -119,10 +119,10 @@ export default class List extends Component {
|
||||||
actions, this,
|
actions, this,
|
||||||
{ method: HTTPMethod.POST, url: `rest/subscriptions-unsubscribe/${this.props.list.id}/${id}`},
|
{ method: HTTPMethod.POST, url: `rest/subscriptions-unsubscribe/${this.props.list.id}/${id}`},
|
||||||
{ icon: 'off', label: t('unsubscribe') },
|
{ icon: 'off', label: t('unsubscribe') },
|
||||||
t('Confirm Unsubscription'),
|
t('confirmUnsubscription'),
|
||||||
t('Are you sure you want to unsubscribe {{email}}?', {email}),
|
t('areYouSureYouWantToUnsubscribeEmail?', {email}),
|
||||||
t('Unsubscribing {{email}}', {email}),
|
t('unsubscribingEmail', {email}),
|
||||||
t('{{email}} unsubscribed', {email}),
|
t('emailUnsubscribed', {email}),
|
||||||
null
|
null
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -132,10 +132,10 @@ export default class List extends Component {
|
||||||
actions, this,
|
actions, this,
|
||||||
{ method: HTTPMethod.POST, url: `rest/blacklist`, data: {email} },
|
{ method: HTTPMethod.POST, url: `rest/blacklist`, data: {email} },
|
||||||
{ icon: 'ban-circle', label: t('blacklist') },
|
{ icon: 'ban-circle', label: t('blacklist') },
|
||||||
t('Confirm Email Blacklisting'),
|
t('confirmEmailBlacklisting'),
|
||||||
t('Are you sure you want to blacklist {{email}}?', {email}),
|
t('areYouSureYouWantToBlacklistEmail?', {email}),
|
||||||
t('Blacklisting {{email}}', {email}),
|
t('blacklistingEmail', {email}),
|
||||||
t('{{email}} blacklisted', {email}),
|
t('emailBlacklisted', {email}),
|
||||||
null
|
null
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -108,6 +108,10 @@
|
||||||
"saving": "Saving ...",
|
"saving": "Saving ...",
|
||||||
"thereAreErrorsInTheFormPleaseFixThemAnd-1": "There are errors in the form. Please fix them and try again.",
|
"thereAreErrorsInTheFormPleaseFixThemAnd-1": "There are errors in the form. Please fix them and try again.",
|
||||||
"removeFromBlacklist": "Remove from blacklist",
|
"removeFromBlacklist": "Remove from blacklist",
|
||||||
|
"confirmRemovalFromBlacklist": "Confirm Removal From Blacklist",
|
||||||
|
"areYouSureYouWantToRemoveEmailFromThe": "Are you sure you want to remove {{email}} from the blacklist?",
|
||||||
|
"removingEmailFromTheBlacklist": "Removing {{email}} from the blacklist",
|
||||||
|
"emailRemovedFromTheBlacklist": "{{email}} removed from the blacklist",
|
||||||
"blacklist": "Blacklist",
|
"blacklist": "Blacklist",
|
||||||
"addEmailToBlacklist-1": "Add Email to Blacklist",
|
"addEmailToBlacklist-1": "Add Email to Blacklist",
|
||||||
"addToBlacklist": "Add to Blacklist",
|
"addToBlacklist": "Add to Blacklist",
|
||||||
|
@ -559,24 +563,24 @@
|
||||||
"dateInColumnColNameIsAfterOrOnValue": "Date in column \"{{colName}}\" is after or on {{value}}",
|
"dateInColumnColNameIsAfterOrOnValue": "Date in column \"{{colName}}\" is after or on {{value}}",
|
||||||
"onXthDayBeforeafterCurrentDate": "On x-th day before/after current date",
|
"onXthDayBeforeafterCurrentDate": "On x-th day before/after current date",
|
||||||
"dateInColumnColNameIsTheCurrentDate": "Date in column \"{{colName}}\" is the current date",
|
"dateInColumnColNameIsTheCurrentDate": "Date in column \"{{colName}}\" is the current date",
|
||||||
"dateInColumnColNameIsValuethDayAfterThe": "Date in column \"{{colName}}\" is the {{value}}-th day after the current date",
|
"dateInColumnColNameIsTheValuethDayAfter": "Date in column \"{{colName}}\" is the {{value}}-th day after the current date",
|
||||||
"dateInColumnColNameIsValuethDayBeforeThe": "Date in column \"{{colName}}\" is the {{value}}-th day before the current date",
|
"dateInColumnColNameIsTheValuethDayBefore": "Date in column \"{{colName}}\" is the {{value}}-th day before the current date",
|
||||||
"beforeXthDayBeforeafterCurrentDate": "Before x-th day before/after current date",
|
"beforeXthDayBeforeafterCurrentDate": "Before x-th day before/after current date",
|
||||||
"dateInColumnColNameIsBeforeTheCurrent": "Date in column \"{{colName}}\" is before the current date",
|
"dateInColumnColNameIsBeforeTheCurrent": "Date in column \"{{colName}}\" is before the current date",
|
||||||
"dateInColumnColNameIsBeforeValuethDay": "Date in column \"{{colName}}\" is before the {{value}}-th day after the current date",
|
"dateInColumnColNameIsBeforeTheValuethDay": "Date in column \"{{colName}}\" is before the {{value}}-th day after the current date",
|
||||||
"dateInColumnColNameIsBeforeValuethDay-1": "Date in column \"{{colName}}\" is before the {{value}}-th day before the current date",
|
"dateInColumnColNameIsBeforeTheValuethDay-1": "Date in column \"{{colName}}\" is before the {{value}}-th day before the current date",
|
||||||
"beforeOrOnXthDayBeforeafterCurrentDate": "Before or on x-th day before/after current date",
|
"beforeOrOnXthDayBeforeafterCurrentDate": "Before or on x-th day before/after current date",
|
||||||
"dateInColumnColNameIsBeforeOrOnThe": "Date in column \"{{colName}}\" is before or on the current date",
|
"dateInColumnColNameIsBeforeOrOnThe": "Date in column \"{{colName}}\" is before or on the current date",
|
||||||
"dateInColumnColNameIsBeforeOrOnValueth": "Date in column \"{{colName}}\" is before or on the {{value}}-th day after the current date",
|
"dateInColumnColNameIsBeforeOrOnThe-1": "Date in column \"{{colName}}\" is before or on the {{value}}-th day after the current date",
|
||||||
"dateInColumnColNameIsBeforeOrOnValueth-1": "Date in column \"{{colName}}\" is before or on the {{value}}-th day before the current date",
|
"dateInColumnColNameIsBeforeOrOnThe-2": "Date in column \"{{colName}}\" is before or on the {{value}}-th day before the current date",
|
||||||
"afterXthDayBeforeafterCurrentDate": "After x-th day before/after current date",
|
"afterXthDayBeforeafterCurrentDate": "After x-th day before/after current date",
|
||||||
"dateInColumnColNameIsAfterTheCurrentDate": "Date in column \"{{colName}}\" is after the current date",
|
"dateInColumnColNameIsAfterTheCurrentDate": "Date in column \"{{colName}}\" is after the current date",
|
||||||
"dateInColumnColNameIsAfterValuethDay": "Date in column \"{{colName}}\" is after the {{value}}-th day after the current date",
|
"dateInColumnColNameIsAfterTheValuethDay": "Date in column \"{{colName}}\" is after the {{value}}-th day after the current date",
|
||||||
"dateInColumnColNameIsAfterValuethDay-1": "Date in column \"{{colName}}\" is after the {{value}}-th day before the current date",
|
"dateInColumnColNameIsAfterTheValuethDay-1": "Date in column \"{{colName}}\" is after the {{value}}-th day before the current date",
|
||||||
"afterOrOnXthDayBeforeafterCurrentDate": "After or on x-th day before/after current date",
|
"afterOrOnXthDayBeforeafterCurrentDate": "After or on x-th day before/after current date",
|
||||||
"dateInColumnColNameIsAfterOrOnTheCurrent": "Date in column \"{{colName}}\" is after or on the current date",
|
"dateInColumnColNameIsAfterOrOnTheCurrent": "Date in column \"{{colName}}\" is after or on the current date",
|
||||||
"dateInColumnColNameIsAfterOrOnValuethDay": "Date in column \"{{colName}}\" is after or on the {{value}}-th day after the current date",
|
"dateInColumnColNameIsAfterOrOnTheValueth": "Date in column \"{{colName}}\" is after or on the {{value}}-th day after the current date",
|
||||||
"dateInColumnColNameIsAfterOrOnValuethDay-1": "Date in column \"{{colName}}\" is after or on the {{value}}-th day before the current date",
|
"dateInColumnColNameIsAfterOrOnTheValueth-1": "Date in column \"{{colName}}\" is after or on the {{value}}-th day before the current date",
|
||||||
"isSelected": "Is selected",
|
"isSelected": "Is selected",
|
||||||
"valueInColumnColNameIsSelected": "Value in column \"{{colName}}\" is selected",
|
"valueInColumnColNameIsSelected": "Value in column \"{{colName}}\" is selected",
|
||||||
"isNotSelected": "Is not selected",
|
"isNotSelected": "Is not selected",
|
||||||
|
@ -622,6 +626,14 @@
|
||||||
"ifCheckedThenThisSubscriptionCanBeUsed": "If checked then this subscription can be used for previewing campaign messages",
|
"ifCheckedThenThisSubscriptionCanBeUsed": "If checked then this subscription can be used for previewing campaign messages",
|
||||||
"erased": "[ERASED]",
|
"erased": "[ERASED]",
|
||||||
"blacklisted": "Blacklisted",
|
"blacklisted": "Blacklisted",
|
||||||
|
"confirmUnsubscription": "Confirm Unsubscription",
|
||||||
|
"areYouSureYouWantToUnsubscribeEmail?": "Are you sure you want to unsubscribe {{email}}?",
|
||||||
|
"unsubscribingEmail": "Unsubscribing {{email}}",
|
||||||
|
"emailUnsubscribed": "{{email}} unsubscribed",
|
||||||
|
"confirmEmailBlacklisting": "Confirm Email Blacklisting",
|
||||||
|
"areYouSureYouWantToBlacklistEmail?": "Are you sure you want to blacklist {{email}}?",
|
||||||
|
"blacklistingEmail": "Blacklisting {{email}}",
|
||||||
|
"emailBlacklisted": "{{email}} blacklisted",
|
||||||
"allSubscriptions": "All subscriptions",
|
"allSubscriptions": "All subscriptions",
|
||||||
"subscriptionForm": "Subscription Form",
|
"subscriptionForm": "Subscription Form",
|
||||||
"exportAsCsv": "Export as CSV",
|
"exportAsCsv": "Export as CSV",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue