Added option to (un)hide Kolab folders

This commit is contained in:
the-djmaze 2022-09-27 09:46:49 +02:00
parent ba8188978d
commit 88f7b3d345
44 changed files with 59 additions and 1 deletions

View file

@ -364,7 +364,8 @@ export class FolderModel extends AbstractModel {
canBeEdited: () => FolderType.User === folder.type() && folder.exists/* && folder.selectable()*/, canBeEdited: () => FolderType.User === folder.type() && folder.exists/* && folder.selectable()*/,
isSystemFolder: () => FolderType.User !== folder.type() /*| !!folder.kolabType()*/, isSystemFolder: () => FolderType.User !== folder.type()
| (FolderUserStore.allowKolab() && !!folder.kolabType() & !SettingsUserStore.unhideKolabFolders()),
canBeSelected: () => folder.selectable() && !folder.isSystemFolder(), canBeSelected: () => folder.selectable() && !folder.isSystemFolder(),

View file

@ -46,6 +46,7 @@ export class UserSettingsFolders /*extends AbstractViewSettings*/ {
this.folderListOptimized = FolderUserStore.folderListOptimized; this.folderListOptimized = FolderUserStore.folderListOptimized;
this.folderListError = FolderUserStore.folderListError; this.folderListError = FolderUserStore.folderListError;
this.hideUnsubscribed = SettingsUserStore.hideUnsubscribed; this.hideUnsubscribed = SettingsUserStore.hideUnsubscribed;
this.unhideKolabFolders = SettingsUserStore.unhideKolabFolders;
this.loading = FolderUserStore.foldersChanging; this.loading = FolderUserStore.foldersChanging;
@ -54,6 +55,7 @@ export class UserSettingsFolders /*extends AbstractViewSettings*/ {
this.folderForEdit = ko.observable(null).extend({ toggleSubscribeProperty: [this, 'editing'] }); this.folderForEdit = ko.observable(null).extend({ toggleSubscribeProperty: [this, 'editing'] });
SettingsUserStore.hideUnsubscribed.subscribe(value => Remote.saveSetting('HideUnsubscribed', value)); SettingsUserStore.hideUnsubscribed.subscribe(value => Remote.saveSetting('HideUnsubscribed', value));
SettingsUserStore.unhideKolabFolders.subscribe(value => Remote.saveSetting('UnhideKolabFolders', value));
} }
folderEditOnEnter(folder) { folderEditOnEnter(folder) {

View file

@ -25,6 +25,7 @@ export const SettingsUserStore = new class {
replySameFolder: 0, replySameFolder: 0,
hideUnsubscribed: 0, hideUnsubscribed: 0,
hideDeleted: 1, hideDeleted: 1,
unhideKolabFolders: 0,
autoLogout: 0, autoLogout: 0,
requestReadReceipt: 0, requestReadReceipt: 0,
@ -84,6 +85,7 @@ export const SettingsUserStore = new class {
self.hideUnsubscribed(SettingsGet('HideUnsubscribed')); self.hideUnsubscribed(SettingsGet('HideUnsubscribed'));
self.hideDeleted(SettingsGet('HideDeleted')); self.hideDeleted(SettingsGet('HideDeleted'));
self.unhideKolabFolders(SettingsGet('UnhideKolabFolders'));
self.requestReadReceipt(SettingsGet('requestReadReceipt')); self.requestReadReceipt(SettingsGet('requestReadReceipt'));
self.requestDsn(SettingsGet('requestDsn')); self.requestDsn(SettingsGet('requestDsn'));

View file

@ -738,6 +738,7 @@ class Actions
'ContactsAutosave' => (bool) $oConfig->Get('defaults', 'contacts_autosave', true), 'ContactsAutosave' => (bool) $oConfig->Get('defaults', 'contacts_autosave', true),
'HideUnsubscribed' => false, 'HideUnsubscribed' => false,
'HideDeleted' => true, 'HideDeleted' => true,
'UnhideKolabFolders' => false,
'MainEmail' => '', 'MainEmail' => '',
'UserBackgroundName' => '', 'UserBackgroundName' => '',
'UserBackgroundHash' => '' 'UserBackgroundHash' => ''
@ -837,6 +838,7 @@ class Actions
$aResult['UseThreads'] = (bool)$oSettingsLocal->GetConf('UseThreads', $aResult['UseThreads']); $aResult['UseThreads'] = (bool)$oSettingsLocal->GetConf('UseThreads', $aResult['UseThreads']);
$aResult['ReplySameFolder'] = (bool)$oSettingsLocal->GetConf('ReplySameFolder', $aResult['ReplySameFolder']); $aResult['ReplySameFolder'] = (bool)$oSettingsLocal->GetConf('ReplySameFolder', $aResult['ReplySameFolder']);
$aResult['HideDeleted'] = (bool)$oSettingsLocal->GetConf('HideDeleted', $aResult['HideDeleted']); $aResult['HideDeleted'] = (bool)$oSettingsLocal->GetConf('HideDeleted', $aResult['HideDeleted']);
$aResult['UnhideKolabFolders'] = (bool)$oSettingsLocal->GetConf('UnhideKolabFolders', $aResult['UnhideKolabFolders']);
} }
if ($oConfig->Get('login', 'determine_user_language', true)) { if ($oConfig->Get('login', 'determine_user_language', true)) {

View file

@ -160,6 +160,7 @@ trait Accounts
$aResult['UseThreads'] = (bool) $oSettingsLocal->GetConf('UseThreads', $oConfig->Get('defaults', 'mail_use_threads', false)); $aResult['UseThreads'] = (bool) $oSettingsLocal->GetConf('UseThreads', $oConfig->Get('defaults', 'mail_use_threads', false));
$aResult['ReplySameFolder'] = (bool) $oSettingsLocal->GetConf('ReplySameFolder', $oConfig->Get('defaults', 'mail_reply_same_folder', false)); $aResult['ReplySameFolder'] = (bool) $oSettingsLocal->GetConf('ReplySameFolder', $oConfig->Get('defaults', 'mail_reply_same_folder', false));
$aResult['HideDeleted'] = (bool) $oSettingsLocal->GetConf('HideDeleted', true); $aResult['HideDeleted'] = (bool) $oSettingsLocal->GetConf('HideDeleted', true);
$aResult['UnhideKolabFolders'] = (bool) $oSettingsLocal->GetConf('UnhideKolabFolders', false);
} }
// $this->Plugins()->InitAppData($bAdmin, $aResult, $oAccount); // $this->Plugins()->InitAppData($bAdmin, $aResult, $oAccount);

View file

@ -356,6 +356,7 @@ trait User
$this->setSettingsFromParams($oSettingsLocal, 'ReplySameFolder', 'bool'); $this->setSettingsFromParams($oSettingsLocal, 'ReplySameFolder', 'bool');
$this->setSettingsFromParams($oSettingsLocal, 'HideUnsubscribed', 'bool'); $this->setSettingsFromParams($oSettingsLocal, 'HideUnsubscribed', 'bool');
$this->setSettingsFromParams($oSettingsLocal, 'HideDeleted', 'bool'); $this->setSettingsFromParams($oSettingsLocal, 'HideDeleted', 'bool');
$this->setSettingsFromParams($oSettingsLocal, 'UnhideKolabFolders', 'bool');
return $this->DefaultResponse(__FUNCTION__, return $this->DefaultResponse(__FUNCTION__,
$this->SettingsProvider()->Save($oAccount, $oSettings) && $this->SettingsProvider()->Save($oAccount, $oSettings) &&

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "إخفاء\\إظهار المجلد", "HELP_SHOW_HIDE_FOLDER": "إخفاء\\إظهار المجلد",
"HELP_CHECK_FOR_NEW_MESSAGES": "تأكد\\لاتتأكد من وصول ايميلات جديدة", "HELP_CHECK_FOR_NEW_MESSAGES": "تأكد\\لاتتأكد من وصول ايميلات جديدة",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Покажи\/скрий папка", "HELP_SHOW_HIDE_FOLDER": "Покажи\/скрий папка",
"HELP_CHECK_FOR_NEW_MESSAGES": "Провери\/не проверявай за нови съобщения", "HELP_CHECK_FOR_NEW_MESSAGES": "Провери\/не проверявай за нови съобщения",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Zobrazit\/skrýt složku", "HELP_SHOW_HIDE_FOLDER": "Zobrazit\/skrýt složku",
"HELP_CHECK_FOR_NEW_MESSAGES": "Kontrovat\/nekontrolovat nové příchozí zprávy", "HELP_CHECK_FOR_NEW_MESSAGES": "Kontrovat\/nekontrolovat nové příchozí zprávy",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Vis\/skjul mappe", "HELP_SHOW_HIDE_FOLDER": "Vis\/skjul mappe",
"HELP_CHECK_FOR_NEW_MESSAGES": "Markér\/fjern markering for nye meddelelser", "HELP_CHECK_FOR_NEW_MESSAGES": "Markér\/fjern markering for nye meddelelser",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Ordner ein-\/ausblenden", "HELP_SHOW_HIDE_FOLDER": "Ordner ein-\/ausblenden",
"HELP_CHECK_FOR_NEW_MESSAGES": "Auf neue Nachrichten prüfen\/nicht prüfen", "HELP_CHECK_FOR_NEW_MESSAGES": "Auf neue Nachrichten prüfen\/nicht prüfen",
"HIDE_UNSUBSCRIBED": "Nicht abonnierte Ordner ausblenden", "HIDE_UNSUBSCRIBED": "Nicht abonnierte Ordner ausblenden",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Kalender", "TYPE_CALENDAR": "Kalender",
"TYPE_CONFIGURATION": "Konfiguration", "TYPE_CONFIGURATION": "Konfiguration",
"TYPE_CONTACTS": "Kontakte", "TYPE_CONTACTS": "Kontakte",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Show\/hide folder", "HELP_SHOW_HIDE_FOLDER": "Show\/hide folder",
"HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages", "HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Show\/hide folder", "HELP_SHOW_HIDE_FOLDER": "Show\/hide folder",
"HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages", "HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Show\/hide folder", "HELP_SHOW_HIDE_FOLDER": "Show\/hide folder",
"HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages", "HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Mostrar\/ocultar carpeta", "HELP_SHOW_HIDE_FOLDER": "Mostrar\/ocultar carpeta",
"HELP_CHECK_FOR_NEW_MESSAGES": "Chequear\/no chequear nuevos mensajes", "HELP_CHECK_FOR_NEW_MESSAGES": "Chequear\/no chequear nuevos mensajes",
"HIDE_UNSUBSCRIBED": "Ocultar carpetas dadas de baja", "HIDE_UNSUBSCRIBED": "Ocultar carpetas dadas de baja",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendario", "TYPE_CALENDAR": "Calendario",
"TYPE_CONFIGURATION": "Configuración", "TYPE_CONFIGURATION": "Configuración",
"TYPE_CONTACTS": "Contactos", "TYPE_CONTACTS": "Contactos",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Näita\/peida kaust", "HELP_SHOW_HIDE_FOLDER": "Näita\/peida kaust",
"HELP_CHECK_FOR_NEW_MESSAGES": "Kontrolli\/ära kontrolli uusi kirju", "HELP_CHECK_FOR_NEW_MESSAGES": "Kontrolli\/ära kontrolli uusi kirju",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "نمایش\/مخفی‌بودن پوشه", "HELP_SHOW_HIDE_FOLDER": "نمایش\/مخفی‌بودن پوشه",
"HELP_CHECK_FOR_NEW_MESSAGES": "بررسی\/عدم‌بررسی برای پیام جدید", "HELP_CHECK_FOR_NEW_MESSAGES": "بررسی\/عدم‌بررسی برای پیام جدید",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Näytä\/Piilota kansio", "HELP_SHOW_HIDE_FOLDER": "Näytä\/Piilota kansio",
"HELP_CHECK_FOR_NEW_MESSAGES": "Tarkista\/Älä tarkista uudet viestit", "HELP_CHECK_FOR_NEW_MESSAGES": "Tarkista\/Älä tarkista uudet viestit",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Afficher\/masquer le dossier", "HELP_SHOW_HIDE_FOLDER": "Afficher\/masquer le dossier",
"HELP_CHECK_FOR_NEW_MESSAGES": "Cocher\/Décocher pour les nouveaux messages", "HELP_CHECK_FOR_NEW_MESSAGES": "Cocher\/Décocher pour les nouveaux messages",
"HIDE_UNSUBSCRIBED": "Masquer les dossiers désabonnés", "HIDE_UNSUBSCRIBED": "Masquer les dossiers désabonnés",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendrier", "TYPE_CALENDAR": "Calendrier",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Mappa mutatás\/elrejtés", "HELP_SHOW_HIDE_FOLDER": "Mappa mutatás\/elrejtés",
"HELP_CHECK_FOR_NEW_MESSAGES": "Ellenőrizze\/ne ellenőrizze az új üzeneteket", "HELP_CHECK_FOR_NEW_MESSAGES": "Ellenőrizze\/ne ellenőrizze az új üzeneteket",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Naptár", "TYPE_CALENDAR": "Naptár",
"TYPE_CONFIGURATION": "Konfiguráció", "TYPE_CONFIGURATION": "Konfiguráció",
"TYPE_CONTACTS": "Kapcsolatok", "TYPE_CONTACTS": "Kapcsolatok",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Tampil\/lenyapkan folder", "HELP_SHOW_HIDE_FOLDER": "Tampil\/lenyapkan folder",
"HELP_CHECK_FOR_NEW_MESSAGES": "Cek\/jangan cek pesan baru", "HELP_CHECK_FOR_NEW_MESSAGES": "Cek\/jangan cek pesan baru",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Birta\/fela möppu", "HELP_SHOW_HIDE_FOLDER": "Birta\/fela möppu",
"HELP_CHECK_FOR_NEW_MESSAGES": "Athuga\/ekki athuga með ný skilaboð", "HELP_CHECK_FOR_NEW_MESSAGES": "Athuga\/ekki athuga með ný skilaboð",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Mostra\/nascondi cartella", "HELP_SHOW_HIDE_FOLDER": "Mostra\/nascondi cartella",
"HELP_CHECK_FOR_NEW_MESSAGES": "Controlla\/non controlla la presenza di nuovi messaggi", "HELP_CHECK_FOR_NEW_MESSAGES": "Controlla\/non controlla la presenza di nuovi messaggi",
"HIDE_UNSUBSCRIBED": "Nascondi le cartelle non sottoscritte", "HIDE_UNSUBSCRIBED": "Nascondi le cartelle non sottoscritte",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendario", "TYPE_CALENDAR": "Calendario",
"TYPE_CONFIGURATION": "Configurazione", "TYPE_CONFIGURATION": "Configurazione",
"TYPE_CONTACTS": "Contatti", "TYPE_CONTACTS": "Contatti",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "フォルダーの表示\/非表示", "HELP_SHOW_HIDE_FOLDER": "フォルダーの表示\/非表示",
"HELP_CHECK_FOR_NEW_MESSAGES": "新しいメッセージをチェックする\/しない", "HELP_CHECK_FOR_NEW_MESSAGES": "新しいメッセージをチェックする\/しない",
"HIDE_UNSUBSCRIBED": "購読していないフォルダを隠す", "HIDE_UNSUBSCRIBED": "購読していないフォルダを隠す",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "폴더 표시\/숨기기", "HELP_SHOW_HIDE_FOLDER": "폴더 표시\/숨기기",
"HELP_CHECK_FOR_NEW_MESSAGES": "새 메시지 확인\/확인 취소", "HELP_CHECK_FOR_NEW_MESSAGES": "새 메시지 확인\/확인 취소",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Rodyti\/Slėpti katalogą", "HELP_SHOW_HIDE_FOLDER": "Rodyti\/Slėpti katalogą",
"HELP_CHECK_FOR_NEW_MESSAGES": "Tikrinti\/Netikrinti ar yra naujų laiškų", "HELP_CHECK_FOR_NEW_MESSAGES": "Tikrinti\/Netikrinti ar yra naujų laiškų",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Show\/hide folder", "HELP_SHOW_HIDE_FOLDER": "Show\/hide folder",
"HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages", "HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Vis\/skjul mappe", "HELP_SHOW_HIDE_FOLDER": "Vis\/skjul mappe",
"HELP_CHECK_FOR_NEW_MESSAGES": "Se\/ikke se etter nye meldinger", "HELP_CHECK_FOR_NEW_MESSAGES": "Se\/ikke se etter nye meldinger",
"HIDE_UNSUBSCRIBED": "Skjul mapper som bruker ikke abonnerer på", "HIDE_UNSUBSCRIBED": "Skjul mapper som bruker ikke abonnerer på",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Kalender", "TYPE_CALENDAR": "Kalender",
"TYPE_CONFIGURATION": "Oppsett", "TYPE_CONFIGURATION": "Oppsett",
"TYPE_CONTACTS": "Kontakter", "TYPE_CONTACTS": "Kontakter",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Toon\/verberg map", "HELP_SHOW_HIDE_FOLDER": "Toon\/verberg map",
"HELP_CHECK_FOR_NEW_MESSAGES": "Controleer wel of niet op nieuwe berichten", "HELP_CHECK_FOR_NEW_MESSAGES": "Controleer wel of niet op nieuwe berichten",
"HIDE_UNSUBSCRIBED": "Verberg niet geabonneerde mappen", "HIDE_UNSUBSCRIBED": "Verberg niet geabonneerde mappen",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Kalender", "TYPE_CALENDAR": "Kalender",
"TYPE_CONFIGURATION": "Configuratie", "TYPE_CONFIGURATION": "Configuratie",
"TYPE_CONTACTS": "Contacten", "TYPE_CONTACTS": "Contacten",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Pokaż\/ukryj folder", "HELP_SHOW_HIDE_FOLDER": "Pokaż\/ukryj folder",
"HELP_CHECK_FOR_NEW_MESSAGES": "Sprawdzaj\/nie sprawdzaj nowych wiadomości", "HELP_CHECK_FOR_NEW_MESSAGES": "Sprawdzaj\/nie sprawdzaj nowych wiadomości",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Mostrar\/esconder pasta", "HELP_SHOW_HIDE_FOLDER": "Mostrar\/esconder pasta",
"HELP_CHECK_FOR_NEW_MESSAGES": "Ativar\/Desativar verificação por novas mensagens", "HELP_CHECK_FOR_NEW_MESSAGES": "Ativar\/Desativar verificação por novas mensagens",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Mostrar\/ocultar pasta", "HELP_SHOW_HIDE_FOLDER": "Mostrar\/ocultar pasta",
"HELP_CHECK_FOR_NEW_MESSAGES": "Procurar\/não procurar novas mensagens", "HELP_CHECK_FOR_NEW_MESSAGES": "Procurar\/não procurar novas mensagens",
"HIDE_UNSUBSCRIBED": "Esconder pastas não-subscritas", "HIDE_UNSUBSCRIBED": "Esconder pastas não-subscritas",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendário", "TYPE_CALENDAR": "Calendário",
"TYPE_CONFIGURATION": "Configuração", "TYPE_CONFIGURATION": "Configuração",
"TYPE_CONTACTS": "Contactos", "TYPE_CONTACTS": "Contactos",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Mostrar\/ocultar pasta", "HELP_SHOW_HIDE_FOLDER": "Mostrar\/ocultar pasta",
"HELP_CHECK_FOR_NEW_MESSAGES": "Procurar\/não procurar novas mensagens", "HELP_CHECK_FOR_NEW_MESSAGES": "Procurar\/não procurar novas mensagens",
"HIDE_UNSUBSCRIBED": "Esconder pastas não-subscritas", "HIDE_UNSUBSCRIBED": "Esconder pastas não-subscritas",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendário", "TYPE_CALENDAR": "Calendário",
"TYPE_CONFIGURATION": "Configuração", "TYPE_CONFIGURATION": "Configuração",
"TYPE_CONTACTS": "Contactos", "TYPE_CONTACTS": "Contactos",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Show\/hide folder", "HELP_SHOW_HIDE_FOLDER": "Show\/hide folder",
"HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages", "HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Показывать\/прятать папку", "HELP_SHOW_HIDE_FOLDER": "Показывать\/прятать папку",
"HELP_CHECK_FOR_NEW_MESSAGES": "Проверять\/не проверять новые сообщения", "HELP_CHECK_FOR_NEW_MESSAGES": "Проверять\/не проверять новые сообщения",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Show\/hide folder", "HELP_SHOW_HIDE_FOLDER": "Show\/hide folder",
"HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages", "HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Prikaži\/skrij mapo", "HELP_SHOW_HIDE_FOLDER": "Prikaži\/skrij mapo",
"HELP_CHECK_FOR_NEW_MESSAGES": "Preverjaj\/ne preverjaj za nova sporočila", "HELP_CHECK_FOR_NEW_MESSAGES": "Preverjaj\/ne preverjaj za nova sporočila",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Visa\/dölj mapp", "HELP_SHOW_HIDE_FOLDER": "Visa\/dölj mapp",
"HELP_CHECK_FOR_NEW_MESSAGES": "Kontrollera\/inte söka efter nya meddelanden", "HELP_CHECK_FOR_NEW_MESSAGES": "Kontrollera\/inte söka efter nya meddelanden",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Kalender", "TYPE_CALENDAR": "Kalender",
"TYPE_CONFIGURATION": "Konfiguration", "TYPE_CONFIGURATION": "Konfiguration",
"TYPE_CONTACTS": "Kontakter", "TYPE_CONTACTS": "Kontakter",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Show\/hide folder", "HELP_SHOW_HIDE_FOLDER": "Show\/hide folder",
"HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages", "HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Відобразити\/приховати теку", "HELP_SHOW_HIDE_FOLDER": "Відобразити\/приховати теку",
"HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages", "HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Hiển thị\/ẩn đi thư mục", "HELP_SHOW_HIDE_FOLDER": "Hiển thị\/ẩn đi thư mục",
"HELP_CHECK_FOR_NEW_MESSAGES": "Kiểm tra\/không kiểm tra xem có thư mới không", "HELP_CHECK_FOR_NEW_MESSAGES": "Kiểm tra\/không kiểm tra xem có thư mới không",
"HIDE_UNSUBSCRIBED": "Ẩn đi những thư mục đã bỏ theo dõi", "HIDE_UNSUBSCRIBED": "Ẩn đi những thư mục đã bỏ theo dõi",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Lịch", "TYPE_CALENDAR": "Lịch",
"TYPE_CONFIGURATION": "Cấu hình", "TYPE_CONFIGURATION": "Cấu hình",
"TYPE_CONTACTS": "Danh bạ", "TYPE_CONTACTS": "Danh bạ",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "显示\/隐藏文件夹", "HELP_SHOW_HIDE_FOLDER": "显示\/隐藏文件夹",
"HELP_CHECK_FOR_NEW_MESSAGES": "检查\/不检查新邮件", "HELP_CHECK_FOR_NEW_MESSAGES": "检查\/不检查新邮件",
"HIDE_UNSUBSCRIBED": "隐藏未订阅的文件夹", "HIDE_UNSUBSCRIBED": "隐藏未订阅的文件夹",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "日历", "TYPE_CALENDAR": "日历",
"TYPE_CONFIGURATION": "配置", "TYPE_CONFIGURATION": "配置",
"TYPE_CONTACTS": "联系人", "TYPE_CONTACTS": "联系人",

View file

@ -454,6 +454,7 @@
"HELP_SHOW_HIDE_FOLDER": "Show\/hide folder", "HELP_SHOW_HIDE_FOLDER": "Show\/hide folder",
"HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages", "HELP_CHECK_FOR_NEW_MESSAGES": "Check\/don't check for new messages",
"HIDE_UNSUBSCRIBED": "Hide unsubscribed folders", "HIDE_UNSUBSCRIBED": "Hide unsubscribed folders",
"UNHIDE_KOLAB_FOLDERS": "Unhide Kolab folders",
"TYPE_CALENDAR": "Calendar", "TYPE_CALENDAR": "Calendar",
"TYPE_CONFIGURATION": "Configuration", "TYPE_CONFIGURATION": "Configuration",
"TYPE_CONTACTS": "Contacts", "TYPE_CONTACTS": "Contacts",

View file

@ -3,6 +3,7 @@
       
<i class="icon-spinner" style="margin-top: 5px" data-bind="visible: loading"></i> <i class="icon-spinner" style="margin-top: 5px" data-bind="visible: loading"></i>
</div> </div>
<div style="margin-bottom:20px;" data-bind="component: { <div style="margin-bottom:20px;" data-bind="component: {
name: 'Checkbox', name: 'Checkbox',
params: { params: {
@ -10,6 +11,17 @@
value: hideUnsubscribed value: hideUnsubscribed
} }
}"></div> }"></div>
<!-- ko if: showKolab -->
<div style="margin-bottom:20px;" data-bind="component: {
name: 'Checkbox',
params: {
label: 'SETTINGS_FOLDERS/UNHIDE_KOLAB_FOLDERS',
value: unhideKolabFolders
}
}"></div>
<!-- /ko -->
<a class="btn" data-bind="click: createFolder"> <a class="btn" data-bind="click: createFolder">
<i class="icon-folder-add"></i> <i class="icon-folder-add"></i>
<span data-i18n="SETTINGS_FOLDERS/BUTTON_CREATE"></span> <span data-i18n="SETTINGS_FOLDERS/BUTTON_CREATE"></span>