1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Mobile: Support importing from JEX files (#10269)

This commit is contained in:
Henry Heino
2024-04-08 09:57:01 -07:00
committed by GitHub
parent ce672915da
commit 2ae08ff46e
10 changed files with 278 additions and 100 deletions

View File

@@ -2711,7 +2711,7 @@ class Setting extends BaseModel {
'server',
'keymap',
'tools',
'export',
'importOrExport',
'moreInfo',
];
}
@@ -2776,7 +2776,7 @@ class Setting extends BaseModel {
if (name === 'keymap') return _('Keyboard Shortcuts');
if (name === 'joplinCloud') return _('Joplin Cloud');
if (name === 'tools') return _('Tools');
if (name === 'export') return _('Export');
if (name === 'importOrExport') return _('Import and Export');
if (name === 'moreInfo') return _('More information');
if (this.customSections_[name] && this.customSections_[name].label) return this.customSections_[name].label;
@@ -2804,7 +2804,7 @@ class Setting extends BaseModel {
'note': _('Geolocation, spellcheck, editor toolbar, image resize'),
'revisionService': _('Toggle note history, keep notes for'),
'tools': _('Logs, profiles, sync status'),
'export': _('Export your data'),
'importOrExport': _('Import or export your data'),
'plugins': _('Enable or disable plugins'),
'moreInfo': _('Donate, website'),
};
@@ -2846,7 +2846,7 @@ class Setting extends BaseModel {
'keymap': 'fa fa-keyboard',
'joplinCloud': 'fa fa-cloud',
'tools': 'fa fa-toolbox',
'export': 'fa fa-file-export',
'importOrExport': 'fa fa-file-export',
'moreInfo': 'fa fa-info-circle',
};