Skip to content

Commit

Permalink
Added for #1545
Browse files Browse the repository at this point in the history
  • Loading branch information
the-djmaze committed Jun 10, 2024
1 parent a3fb5a3 commit 13c76d3
Show file tree
Hide file tree
Showing 43 changed files with 103 additions and 43 deletions.
7 changes: 5 additions & 2 deletions dev/Settings/User/Security.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ export class UserSettingsSecurity extends AbstractViewSettings {
this.autoLogoutOptions = koComputable(() => {
translateTrigger();
return [
{ id: 0, name: i18n('SETTINGS_SECURITY/AUTOLOGIN_NEVER_OPTION_NAME') },
{ id: 0, name: i18n('SETTINGS_SECURITY/NEVER') },
{ id: 5, name: relativeTime(300) },
{ id: 10, name: relativeTime(600) },
{ id: 15, name: relativeTime(900) },
{ id: 30, name: relativeTime(1800) },
{ id: 60, name: relativeTime(3600) },
{ id: 120, name: relativeTime(7200) },
Expand All @@ -38,6 +38,9 @@ export class UserSettingsSecurity extends AbstractViewSettings {
});
this.addSetting('AutoLogout');

this.keyPassForget = SettingsUserStore.keyPassForget;
this.addSetting('keyPassForget');

this.gnupgPublicKeys = GnuPGUserStore.publicKeys;
this.gnupgPrivateKeys = GnuPGUserStore.privateKeys;

Expand Down
10 changes: 6 additions & 4 deletions dev/Storage/Passphrases.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { AskPopupView } from 'View/Popup/Ask';
import { SettingsUserStore } from 'Stores/User/Settings';

export const Passphrases = new WeakMap();

Expand All @@ -8,12 +9,13 @@ Passphrases.ask = async (key, sAskDesc, btnText) =>
: await AskPopupView.password(sAskDesc, btnText, 5);

const timeouts = {};
// get/set accessor to control deletion after 15 minutes of inactivity
// get/set accessor to control deletion after N minutes of inactivity
Passphrases.handle = (key, pass) => {
if (!timeouts[key]) {
timeouts[key] = (()=>Passphrases.delete(key)).debounce(900000);
const timeout = SettingsUserStore.keyPassForget();
if (timeout && !timeouts[key]) {
timeouts[key] = (()=>Passphrases.delete(key)).debounce(timeout * 1000);
}
pass && Passphrases.set(key, pass);
timeouts[key]();
timeout && timeouts[key]();
return Passphrases.get(key);
};
2 changes: 2 additions & 0 deletions dev/Stores/User/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export const SettingsUserStore = new class {
hideDeleted: 1,
unhideKolabFolders: 0,
autoLogout: 0,
keyPassForget: 15,
showUnreadCount: 0,
messageNewWindow: 0,
messageReadAuto: 0,
Expand Down Expand Up @@ -157,5 +158,6 @@ export const SettingsUserStore = new class {
self.checkMailInterval(pInt(SettingsGet('CheckMailInterval')));
self.messageReadDelay(pInt(SettingsGet('MessageReadDelay')));
self.autoLogout(pInt(SettingsGet('AutoLogout')));
self.keyPassForget(pInt(SettingsGet('keyPassForget')));
}
};
2 changes: 2 additions & 0 deletions snappymail/v/0.0.0/app/libraries/RainLoop/Actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,7 @@ public function AppData(bool $bAdmin): array
'UseCheckboxesInList' => (bool) $oConfig->Get('defaults', 'view_use_checkboxes', true),
'showNextMessage' => (bool) $oConfig->Get('defaults', 'view_show_next_message', false),
'AutoLogout' => (int) $oConfig->Get('defaults', 'autologout', 30),
'keyPassForget' => 15,
'AllowDraftAutosave' => (bool) $oConfig->Get('defaults', 'allow_draft_autosave', true),
'ContactsAutosave' => (bool) $oConfig->Get('defaults', 'contacts_autosave', true)
],
Expand Down Expand Up @@ -691,6 +692,7 @@ public function AppData(bool $bAdmin): array
$aResult['showNextMessage'] = (bool)$oSettings->GetConf('showNextMessage', $aResult['showNextMessage']);
$aResult['AllowDraftAutosave'] = (bool)$oSettings->GetConf('AllowDraftAutosave', $aResult['AllowDraftAutosave']);
$aResult['AutoLogout'] = (int)$oSettings->GetConf('AutoLogout', $aResult['AutoLogout']);
$aResult['keyPassForget'] = (int)$oSettings->GetConf('keyPassForget', $aResult['keyPassForget']);
$aResult['Layout'] = (int)$oSettings->GetConf('Layout', $aResult['Layout']);
$aResult['Resizer4Width'] = (int)$oSettings->GetConf('Resizer4Width', 0);
$aResult['Resizer5Width'] = (int)$oSettings->GetConf('Resizer5Width', 0);
Expand Down
1 change: 1 addition & 0 deletions snappymail/v/0.0.0/app/libraries/RainLoop/Actions/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ public function DoSettingsUpdate() : array
$this->setSettingsFromParams($oSettings, 'UseCheckboxesInList', 'bool');
$this->setSettingsFromParams($oSettings, 'AllowDraftAutosave', 'bool');
$this->setSettingsFromParams($oSettings, 'AutoLogout', 'int');
$this->setSettingsFromParams($oSettings, 'keyPassForget', 'int');
$this->setSettingsFromParams($oSettings, 'messageNewWindow', 'bool');
$this->setSettingsFromParams($oSettings, 'messageReadAuto', 'bool');
$this->setSettingsFromParams($oSettings, 'MessageReadDelay', 'int');
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/ar/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "الأمان",
"LABEL_AUTOLOGOUT": "تسجيل الخروج التلقائي",
"AUTOLOGIN_NEVER_OPTION_NAME": "أبداَ"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "أبداَ"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "اللغة",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/be/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Бяспека",
"LABEL_AUTOLOGOUT": "Азтаматычны ўваход",
"AUTOLOGIN_NEVER_OPTION_NAME": "Ніколі"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Ніколі"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Мова",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/bg/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Сигурност",
"LABEL_AUTOLOGOUT": "Автоматично излизане",
"AUTOLOGIN_NEVER_OPTION_NAME": "Никога"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Никога"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Език",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/cs/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Zabezpečení",
"LABEL_AUTOLOGOUT": "Automatické odhlášení",
"AUTOLOGIN_NEVER_OPTION_NAME": "Nikdy"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Nikdy"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Jazyk",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/da/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Sikkerhed",
"LABEL_AUTOLOGOUT": "Automatisk log ud",
"AUTOLOGIN_NEVER_OPTION_NAME": "Aldrig"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Aldrig"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Sprog",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/de/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Sicherheit",
"LABEL_AUTOLOGOUT": "Automatische Abmeldung",
"AUTOLOGIN_NEVER_OPTION_NAME": "Nie"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Nie"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Sprache",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/el/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Ασφάλεια",
"LABEL_AUTOLOGOUT": "Αυτόματη αποσύνδεση",
"AUTOLOGIN_NEVER_OPTION_NAME": "Ποτέ"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Ποτέ"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Γλώσσα",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/en/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Security",
"LABEL_AUTOLOGOUT": "Auto Logout",
"AUTOLOGIN_NEVER_OPTION_NAME": "Never"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Never"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Language",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/es/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Seguridad",
"LABEL_AUTOLOGOUT": "Salir Automáticamente",
"AUTOLOGIN_NEVER_OPTION_NAME": "Nunca"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Nunca"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Idioma",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/et/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Turvalisus",
"LABEL_AUTOLOGOUT": "Automaatne välja logimine",
"AUTOLOGIN_NEVER_OPTION_NAME": "Mitte kunagi"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Mitte kunagi"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Keel",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/eu/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Segurtasuna",
"LABEL_AUTOLOGOUT": "Saioa automatikoki itxi",
"AUTOLOGIN_NEVER_OPTION_NAME": "Inoiz"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Inoiz"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Hizkuntza",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/fa/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "امنیت",
"LABEL_AUTOLOGOUT": "خروج خودکار",
"AUTOLOGIN_NEVER_OPTION_NAME": "هرگز"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "هرگز"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "زبان",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/fi/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Turvallisuus",
"LABEL_AUTOLOGOUT": "Automaattinen uloskirjautuminen",
"AUTOLOGIN_NEVER_OPTION_NAME": "Ei koskaan"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Ei koskaan"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Kieli",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/fr/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Sécurité",
"LABEL_AUTOLOGOUT": "Déconnexion automatique",
"AUTOLOGIN_NEVER_OPTION_NAME": "Jamais"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Jamais"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Langue",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/hu/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Biztonság",
"LABEL_AUTOLOGOUT": "Automatikus kijelentkezés",
"AUTOLOGIN_NEVER_OPTION_NAME": "Soha"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Soha"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Nyelv",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/id/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Keamanan",
"LABEL_AUTOLOGOUT": "Logout otomatis",
"AUTOLOGIN_NEVER_OPTION_NAME": "Tidak pernah"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Tidak pernah"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Bahasa",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/is/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Öryggi",
"LABEL_AUTOLOGOUT": "Sjálfvirk útskráning",
"AUTOLOGIN_NEVER_OPTION_NAME": "Aldrei"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Aldrei"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Tungumál",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/it/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Sicurezza",
"LABEL_AUTOLOGOUT": "Disconnessione automatica",
"AUTOLOGIN_NEVER_OPTION_NAME": "Mai"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Mai"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Lingua",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/ja/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "セキュリティ",
"LABEL_AUTOLOGOUT": "自動ログアウト",
"AUTOLOGIN_NEVER_OPTION_NAME": "しない"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "しない"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "言語",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/ko/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "보안",
"LABEL_AUTOLOGOUT": "자동 로그아웃",
"AUTOLOGIN_NEVER_OPTION_NAME": "설정하지 않음"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "설정하지 않음"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "언어",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/lt/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Sauga",
"LABEL_AUTOLOGOUT": "Automatinis atsijungimas",
"AUTOLOGIN_NEVER_OPTION_NAME": "Niekada"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Niekada"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Kalba",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/lv/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Security",
"LABEL_AUTOLOGOUT": "Auto Logout",
"AUTOLOGIN_NEVER_OPTION_NAME": "Never"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Never"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Valoda",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/nb/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Sikkerhet",
"LABEL_AUTOLOGOUT": "Logg ut automatisk etter",
"AUTOLOGIN_NEVER_OPTION_NAME": "Aldri"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Aldri"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Språk",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/nl/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Beveiliging",
"LABEL_AUTOLOGOUT": "Automatisch uitloggen",
"AUTOLOGIN_NEVER_OPTION_NAME": "Nooit"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Nooit"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Taal",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/pl/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Bezpieczeństwo",
"LABEL_AUTOLOGOUT": "Automatyczne wylogowanie",
"AUTOLOGIN_NEVER_OPTION_NAME": "Nigdy"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Nigdy"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Język",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/pt-BR/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Segurança",
"LABEL_AUTOLOGOUT": "Deslogar Automaticamente",
"AUTOLOGIN_NEVER_OPTION_NAME": "Nunca"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Nunca"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Idioma",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/pt/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Segurança",
"LABEL_AUTOLOGOUT": "Terminar sessão auto.",
"AUTOLOGIN_NEVER_OPTION_NAME": "Nunca"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Nunca"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Idioma",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/ro/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Security",
"LABEL_AUTOLOGOUT": "Auto Logout",
"AUTOLOGIN_NEVER_OPTION_NAME": "Never"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Never"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Limbă",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/ru/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Безопасность",
"LABEL_AUTOLOGOUT": "Автоматический выход",
"AUTOLOGIN_NEVER_OPTION_NAME": "Никогда"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Никогда"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Язык",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/sk/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Security",
"LABEL_AUTOLOGOUT": "Auto Logout",
"AUTOLOGIN_NEVER_OPTION_NAME": "Never"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Never"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Jazyk",
Expand Down
3 changes: 2 additions & 1 deletion snappymail/v/0.0.0/app/localization/sl/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@
"SETTINGS_SECURITY": {
"LEGEND_SECURITY": "Varnost",
"LABEL_AUTOLOGOUT": "Samodejna odjava",
"AUTOLOGIN_NEVER_OPTION_NAME": "Nikoli"
"FORGET_KEY_PASS": "Forget private key passphrase",
"NEVER": "Nikoli"
},
"SETTINGS_GENERAL": {
"LANGUAGE": "Jezik",
Expand Down
Loading

0 comments on commit 13c76d3

Please sign in to comment.