Translation update, updating inline div tags and placeHolder attributes

This commit is contained in:
nitsua
2020-09-05 14:46:39 -04:00
committed by Qstick
parent 914d8f9937
commit f286f99bb6
53 changed files with 313 additions and 96 deletions

View File

@@ -39,7 +39,9 @@ class AddNotificationModalContent extends Component {
{
!isSchemaFetching && !!schemaError &&
<div>Unable to add a new notification, please try again.</div>
<div>
{translate('UnableToAddANewNotificationPleaseTryAgain')}
</div>
}
{

View File

@@ -59,7 +59,9 @@ function EditNotificationModalContent(props) {
{
!isFetching && !!error &&
<div>Unable to add a new notification, please try again.</div>
<div>
{translate('UnableToAddANewNotificationPleaseTryAgain')}
</div>
}
{

View File

@@ -90,7 +90,7 @@ function NotificationEventItems(props) {
<FormInputGroup
type={inputTypes.CHECK}
name="onDelete"
helpText="On Delete"
helpText={translate('OnDeleteHelpText')}
isDisabled={!supportsOnDelete.value}
{...onDelete}
onChange={onInputChange}