pull/1759/head
Laurent Cozic 2019-07-21 22:27:13 +00:00
parent 5b5ec682c0
commit 7591b614c5
1 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ class ConfigScreenComponent extends BaseScreenComponent {
) { ) {
Alert.alert( Alert.alert(
_('Warning'), _('Warning'),
_('In order to use file system synchronization your permission to write to external storage is required.') _('In order to use file system synchronisation your permission to write to external storage is required.')
); );
// Save settings anyway, even if permission has not been granted // Save settings anyway, even if permission has not been granted
} }
@ -116,7 +116,7 @@ class ConfigScreenComponent extends BaseScreenComponent {
PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE, PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE,
{ {
title: _('Information'), title: _('Information'),
message: _('In order to use file system synchronization your permission to write to external storage is required.'), message: _('In order to use file system synchronisation your permission to write to external storage is required.'),
buttonPositive: _('OK'), buttonPositive: _('OK'),
}, },
); );
@ -388,7 +388,7 @@ class ConfigScreenComponent extends BaseScreenComponent {
settingComps.push(this.renderButton('status_button', _('Sync Status'), this.syncStatusButtonPress_)); settingComps.push(this.renderButton('status_button', _('Sync Status'), this.syncStatusButtonPress_));
settingComps.push(this.renderButton('log_button', _('Log'), this.logButtonPress_)); settingComps.push(this.renderButton('log_button', _('Log'), this.logButtonPress_));
settingComps.push(this.renderButton('export_report_button', this.state.creatingReport ? _('Creating report...') : _('Export Debug Report'), this.exportDebugButtonPress_, { disabled: this.state.creatingReport })); settingComps.push(this.renderButton('export_report_button', this.state.creatingReport ? _('Creating report...') : _('Export Debug Report'), this.exportDebugButtonPress_, { disabled: this.state.creatingReport }));
settingComps.push(this.renderButton('fix_search_engine_index', this.state.fixingSearchIndex ? _('Fixing search index...') : _('Fix search index'), this.fixSearchEngineIndexButtonPress_, { disabled: this.state.fixingSearchIndex, description: _('Use this to rebuild the search index if there is a problem with search. It may take some times depending on the number of notes.') })); settingComps.push(this.renderButton('fix_search_engine_index', this.state.fixingSearchIndex ? _('Fixing search index...') : _('Fix search index'), this.fixSearchEngineIndexButtonPress_, { disabled: this.state.fixingSearchIndex, description: _('Use this to rebuild the search index if there is a problem with search. It may take a long time depending on the number of notes.') }));
settingComps.push(this.renderHeader('moreInfo', _('More information'))); settingComps.push(this.renderHeader('moreInfo', _('More information')));