diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index c718dae558..7608376b95 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -741,7 +741,9 @@ "txtScheme7": "Equity", "txtScheme8": "Flow", "txtScheme9": "Foundry", - "textVersionHistory": "Version History" + "textVersionHistory": "Version History", + "textPasswordWarning": "If the password is forgotten or lost, it cannot be recovered.", + "textTypeEditingWarning": "Allow only this type of editing in the document." }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/src/view/settings/DocumentProtection.jsx b/apps/documenteditor/mobile/src/view/settings/DocumentProtection.jsx index a34fafc52a..5742bf540b 100644 --- a/apps/documenteditor/mobile/src/view/settings/DocumentProtection.jsx +++ b/apps/documenteditor/mobile/src/view/settings/DocumentProtection.jsx @@ -61,7 +61,7 @@ const ProtectionDocumentView = props => { -

If the password is forgotten or lost, it cannot be recovered.

+

{t('Settings.textPasswordWarning')}

} @@ -81,7 +81,7 @@ const ProtectionDocumentView = props => { }}> -

Allow only this type of editing in the document.

+

{t('Settings.textTypeEditingWarning')}

) diff --git a/apps/documenteditor/mobile/src/view/settings/FileEncryption.jsx b/apps/documenteditor/mobile/src/view/settings/FileEncryption.jsx index e2f308526b..461a0de5ad 100644 --- a/apps/documenteditor/mobile/src/view/settings/FileEncryption.jsx +++ b/apps/documenteditor/mobile/src/view/settings/FileEncryption.jsx @@ -69,7 +69,7 @@ const EncryptionView = inject("storeAppOptions")(observer(props => { -

If the password is forgotten or lost, it cannot be recovered.

+

{t('Settings.textPasswordWarning')}

}