You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-29 22:48:10 +02:00
Desktop: Cleaned up and improved config screen design, move all screens under same one, and added section buttons
This commit is contained in:
@@ -811,6 +811,21 @@ class Setting extends BaseModel {
|
||||
if (name === 'plugins') return _('Plugins');
|
||||
if (name === 'application') return _('Application');
|
||||
if (name === 'revisionService') return _('Note History');
|
||||
if (name === 'encryption') return _('Encryption');
|
||||
if (name === 'server') return _('Web Clipper');
|
||||
return name;
|
||||
}
|
||||
|
||||
static sectionNameToIcon(name, platform) {
|
||||
if (name === 'general') return 'fa-sliders';
|
||||
if (name === 'sync') return 'fa-refresh';
|
||||
if (name === 'appearance') return 'fa-pencil';
|
||||
if (name === 'note') return 'fa-file-text-o';
|
||||
if (name === 'plugins') return 'fa-puzzle-piece';
|
||||
if (name === 'application') return 'fa-cog';
|
||||
if (name === 'revisionService') return 'fa-archive-org';
|
||||
if (name === 'encryption') return 'fa-key-modern';
|
||||
if (name === 'server') return 'fa-hand-scissors-o';
|
||||
return name;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user