Browse Source

lang settings option

pkg_automation_electrum
pbca26 7 years ago
parent
commit
8f8627e27f
  1. 10
      routes/appConfig.js

10
routes/appConfig.js

@ -17,6 +17,7 @@ const appConfig = {
cliStopTimeout: 1000,
failedRPCAttemptsThreshold: 10,
stopNativeDaemonsOnQuit: true,
lang: 'EN',
},
schema: {
host: {
@ -105,6 +106,15 @@ const appConfig = {
info: 'Number of allowed consequent RPC connect failures before the app marks native coin daemon as not running properly',
type: 'number',
},
lang: {
display: true,
displayName: 'Language',
type: 'select',
data: [
{ name: 'EN', label: 'English' },
{ name: 'DE', label: 'German' }
],
},
},
};

Loading…
Cancel
Save