feat: add sidebar apps management feature
- Implemented sidebar apps functionality including adding, editing, and deleting apps. - Created a modal for managing sidebar apps with forms for inputting app details. - Added icon picker component for selecting app icons. - Introduced inline app view for displaying apps within the sidebar. - Updated translations for new sidebar apps feature in Dutch and Portuguese. - Enhanced settings store to manage sidebar apps state. - Added hooks for managing sidebar apps state and modal visibility.
This commit is contained in:
+42
-2
@@ -98,7 +98,38 @@
|
||||
"vacation_active": "Abwesenheitsnotiz ist aktiv",
|
||||
"tags": "Tags",
|
||||
"mail": "E-Mail",
|
||||
"nav_label": "Navigation"
|
||||
"nav_label": "Navigation",
|
||||
"add_app": "Apps"
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"modal_title": "Sidebar-Apps",
|
||||
"add_new": "App hinzufügen",
|
||||
"edit_app": "App bearbeiten",
|
||||
"name_label": "Name",
|
||||
"name_placeholder": "Meine App",
|
||||
"name_required": "Name ist erforderlich",
|
||||
"url_label": "URL",
|
||||
"url_required": "URL ist erforderlich",
|
||||
"url_invalid": "Geben Sie eine gültige http- oder https-URL ein",
|
||||
"icon_label": "Symbol",
|
||||
"icon_required": "Symbol ist erforderlich",
|
||||
"open_mode_label": "Öffnungsmodus",
|
||||
"open_new_tab": "Neuer Tab",
|
||||
"open_inline": "Eingebettet",
|
||||
"cancel": "Abbrechen",
|
||||
"add": "Hinzufügen",
|
||||
"update": "Aktualisieren",
|
||||
"delete": "Löschen",
|
||||
"delete_confirm_title": "App löschen",
|
||||
"delete_confirm": "Möchten Sie \"{name}\" wirklich löschen?",
|
||||
"no_apps": "Noch keine Apps hinzugefügt",
|
||||
"no_apps_hint": "Fügen Sie benutzerdefinierte Apps und Links zur Seitenleiste hinzu",
|
||||
"search_icons": "Symbole suchen...",
|
||||
"show_popular": "Beliebt",
|
||||
"show_all": "Alle",
|
||||
"no_icons_found": "Keine Symbole gefunden",
|
||||
"inline_badge": "Eingebettet",
|
||||
"tab_badge": "Tab"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "Keine Nachrichten gefunden",
|
||||
@@ -563,7 +594,8 @@
|
||||
"security": "Sicherheit",
|
||||
"encryption": "Verschlüsselung",
|
||||
"files": "Dateien",
|
||||
"contacts": "Contacts"
|
||||
"contacts": "Contacts",
|
||||
"sidebar_apps": "Sidebar-Apps"
|
||||
},
|
||||
"tab_groups": {
|
||||
"general": "Allgemein",
|
||||
@@ -1004,6 +1036,14 @@
|
||||
"button": "Importieren"
|
||||
}
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"title": "Sidebar-Apps",
|
||||
"description": "Benutzerdefinierte Apps und Links in der Seitenleiste verwalten",
|
||||
"keep_loaded": "Apps geladen halten",
|
||||
"keep_loaded_description": "Inline-Apps beim Wechsel im Hintergrund laufen lassen, um Neuladen zu vermeiden",
|
||||
"manage_title": "Benutzerdefinierte Apps",
|
||||
"manage_description": "Apps in der Seitenleiste hinzufügen, bearbeiten oder entfernen"
|
||||
},
|
||||
"contacts": {
|
||||
"title": "Contacts",
|
||||
"description": "Import and export your contacts",
|
||||
|
||||
+42
-2
@@ -98,7 +98,38 @@
|
||||
"vacation_active": "Vacation responder is active",
|
||||
"tags": "Tags",
|
||||
"mail": "Mail",
|
||||
"nav_label": "Navigation"
|
||||
"nav_label": "Navigation",
|
||||
"add_app": "Apps"
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"modal_title": "Sidebar Apps",
|
||||
"add_new": "Add App",
|
||||
"edit_app": "Edit App",
|
||||
"name_label": "Name",
|
||||
"name_placeholder": "My App",
|
||||
"name_required": "Name is required",
|
||||
"url_label": "URL",
|
||||
"url_required": "URL is required",
|
||||
"url_invalid": "Enter a valid http or https URL",
|
||||
"icon_label": "Icon",
|
||||
"icon_required": "Icon is required",
|
||||
"open_mode_label": "Open Mode",
|
||||
"open_new_tab": "New Tab",
|
||||
"open_inline": "Inline",
|
||||
"cancel": "Cancel",
|
||||
"add": "Add",
|
||||
"update": "Update",
|
||||
"delete": "Delete",
|
||||
"delete_confirm_title": "Delete App",
|
||||
"delete_confirm": "Are you sure you want to delete \"{name}\"?",
|
||||
"no_apps": "No apps added yet",
|
||||
"no_apps_hint": "Add custom apps and links to your sidebar",
|
||||
"search_icons": "Search icons...",
|
||||
"show_popular": "Popular",
|
||||
"show_all": "All",
|
||||
"no_icons_found": "No icons found",
|
||||
"inline_badge": "Inline",
|
||||
"tab_badge": "Tab"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "No messages found",
|
||||
@@ -563,7 +594,8 @@
|
||||
"security": "Security",
|
||||
"files": "Files",
|
||||
"contacts": "Contacts",
|
||||
"encryption": "Encryption"
|
||||
"encryption": "Encryption",
|
||||
"sidebar_apps": "Sidebar Apps"
|
||||
},
|
||||
"tab_groups": {
|
||||
"general": "General",
|
||||
@@ -1004,6 +1036,14 @@
|
||||
"button": "Import"
|
||||
}
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"title": "Sidebar Apps",
|
||||
"description": "Manage custom apps and links in your sidebar",
|
||||
"keep_loaded": "Keep Apps Loaded",
|
||||
"keep_loaded_description": "Keep inline apps running in the background when switching between them to avoid reloading",
|
||||
"manage_title": "Custom Apps",
|
||||
"manage_description": "Add, edit, or remove custom apps from your sidebar"
|
||||
},
|
||||
"contacts": {
|
||||
"title": "Contacts",
|
||||
"description": "Import and export your contacts",
|
||||
|
||||
+42
-2
@@ -98,7 +98,38 @@
|
||||
"vacation_active": "Respuesta automática activa",
|
||||
"tags": "Etiquetas",
|
||||
"mail": "Correo",
|
||||
"nav_label": "Navegación"
|
||||
"nav_label": "Navegación",
|
||||
"add_app": "Apps"
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"modal_title": "Aplicaciones de la barra lateral",
|
||||
"add_new": "Añadir aplicación",
|
||||
"edit_app": "Editar aplicación",
|
||||
"name_label": "Nombre",
|
||||
"name_placeholder": "Mi aplicación",
|
||||
"name_required": "El nombre es obligatorio",
|
||||
"url_label": "URL",
|
||||
"url_required": "La URL es obligatoria",
|
||||
"url_invalid": "Introduce una URL http o https válida",
|
||||
"icon_label": "Icono",
|
||||
"icon_required": "El icono es obligatorio",
|
||||
"open_mode_label": "Modo de apertura",
|
||||
"open_new_tab": "Nueva pestaña",
|
||||
"open_inline": "Integrado",
|
||||
"cancel": "Cancelar",
|
||||
"add": "Añadir",
|
||||
"update": "Actualizar",
|
||||
"delete": "Eliminar",
|
||||
"delete_confirm_title": "Eliminar aplicación",
|
||||
"delete_confirm": "¿Estás seguro de que quieres eliminar \"{name}\"?",
|
||||
"no_apps": "No se han añadido aplicaciones",
|
||||
"no_apps_hint": "Añade aplicaciones y enlaces personalizados a tu barra lateral",
|
||||
"search_icons": "Buscar iconos...",
|
||||
"show_popular": "Populares",
|
||||
"show_all": "Todos",
|
||||
"no_icons_found": "No se encontraron iconos",
|
||||
"inline_badge": "Integrado",
|
||||
"tab_badge": "Pestaña"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "No se encontraron mensajes",
|
||||
@@ -563,7 +594,8 @@
|
||||
"security": "Seguridad",
|
||||
"encryption": "Cifrado",
|
||||
"files": "Archivos",
|
||||
"contacts": "Contacts"
|
||||
"contacts": "Contacts",
|
||||
"sidebar_apps": "Apps de barra lateral"
|
||||
},
|
||||
"tab_groups": {
|
||||
"general": "General",
|
||||
@@ -1004,6 +1036,14 @@
|
||||
"button": "Importar"
|
||||
}
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"title": "Apps de barra lateral",
|
||||
"description": "Gestionar aplicaciones y enlaces personalizados en la barra lateral",
|
||||
"keep_loaded": "Mantener apps cargadas",
|
||||
"keep_loaded_description": "Mantener las apps en línea ejecutándose en segundo plano al cambiar entre ellas para evitar recargas",
|
||||
"manage_title": "Apps personalizadas",
|
||||
"manage_description": "Agregar, editar o eliminar apps personalizadas de la barra lateral"
|
||||
},
|
||||
"contacts": {
|
||||
"title": "Contacts",
|
||||
"description": "Import and export your contacts",
|
||||
|
||||
+42
-2
@@ -98,7 +98,38 @@
|
||||
"vacation_active": "Répondeur d'absence activé",
|
||||
"tags": "Étiquettes",
|
||||
"mail": "Messagerie",
|
||||
"nav_label": "Navigation"
|
||||
"nav_label": "Navigation",
|
||||
"add_app": "Apps"
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"modal_title": "Applications de la barre latérale",
|
||||
"add_new": "Ajouter une application",
|
||||
"edit_app": "Modifier l'application",
|
||||
"name_label": "Nom",
|
||||
"name_placeholder": "Mon application",
|
||||
"name_required": "Le nom est requis",
|
||||
"url_label": "URL",
|
||||
"url_required": "L'URL est requise",
|
||||
"url_invalid": "Entrez une URL http ou https valide",
|
||||
"icon_label": "Icône",
|
||||
"icon_required": "L'icône est requise",
|
||||
"open_mode_label": "Mode d'ouverture",
|
||||
"open_new_tab": "Nouvel onglet",
|
||||
"open_inline": "Intégré",
|
||||
"cancel": "Annuler",
|
||||
"add": "Ajouter",
|
||||
"update": "Mettre à jour",
|
||||
"delete": "Supprimer",
|
||||
"delete_confirm_title": "Supprimer l'application",
|
||||
"delete_confirm": "Êtes-vous sûr de vouloir supprimer \"{name}\" ?",
|
||||
"no_apps": "Aucune application ajoutée",
|
||||
"no_apps_hint": "Ajoutez des applications et liens personnalisés à votre barre latérale",
|
||||
"search_icons": "Rechercher des icônes...",
|
||||
"show_popular": "Populaires",
|
||||
"show_all": "Toutes",
|
||||
"no_icons_found": "Aucune icône trouvée",
|
||||
"inline_badge": "Intégré",
|
||||
"tab_badge": "Onglet"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "Aucun message trouvé",
|
||||
@@ -563,7 +594,8 @@
|
||||
"security": "Sécurité",
|
||||
"encryption": "Chiffrement",
|
||||
"files": "Fichiers",
|
||||
"contacts": "Contacts"
|
||||
"contacts": "Contacts",
|
||||
"sidebar_apps": "Apps de la barre latérale"
|
||||
},
|
||||
"tab_groups": {
|
||||
"general": "Général",
|
||||
@@ -1004,6 +1036,14 @@
|
||||
"button": "Importer"
|
||||
}
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"title": "Apps de la barre latérale",
|
||||
"description": "Gérer les applications et liens personnalisés dans la barre latérale",
|
||||
"keep_loaded": "Garder les apps chargées",
|
||||
"keep_loaded_description": "Garder les apps en ligne en arrière-plan lors du basculement pour éviter le rechargement",
|
||||
"manage_title": "Apps personnalisées",
|
||||
"manage_description": "Ajouter, modifier ou supprimer des apps personnalisées de la barre latérale"
|
||||
},
|
||||
"contacts": {
|
||||
"title": "Contacts",
|
||||
"description": "Import and export your contacts",
|
||||
|
||||
+42
-2
@@ -98,7 +98,38 @@
|
||||
"vacation_active": "Risponditore automatico attivo",
|
||||
"tags": "Etichette",
|
||||
"mail": "Posta",
|
||||
"nav_label": "Navigazione"
|
||||
"nav_label": "Navigazione",
|
||||
"add_app": "App"
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"modal_title": "App della barra laterale",
|
||||
"add_new": "Aggiungi app",
|
||||
"edit_app": "Modifica app",
|
||||
"name_label": "Nome",
|
||||
"name_placeholder": "La mia app",
|
||||
"name_required": "Il nome è obbligatorio",
|
||||
"url_label": "URL",
|
||||
"url_required": "L'URL è obbligatorio",
|
||||
"url_invalid": "Inserisci un URL http o https valido",
|
||||
"icon_label": "Icona",
|
||||
"icon_required": "L'icona è obbligatoria",
|
||||
"open_mode_label": "Modalità di apertura",
|
||||
"open_new_tab": "Nuova scheda",
|
||||
"open_inline": "Integrato",
|
||||
"cancel": "Annulla",
|
||||
"add": "Aggiungi",
|
||||
"update": "Aggiorna",
|
||||
"delete": "Elimina",
|
||||
"delete_confirm_title": "Elimina app",
|
||||
"delete_confirm": "Sei sicuro di voler eliminare \"{name}\"?",
|
||||
"no_apps": "Nessuna app aggiunta",
|
||||
"no_apps_hint": "Aggiungi app e link personalizzati alla barra laterale",
|
||||
"search_icons": "Cerca icone...",
|
||||
"show_popular": "Popolari",
|
||||
"show_all": "Tutte",
|
||||
"no_icons_found": "Nessuna icona trovata",
|
||||
"inline_badge": "Integrato",
|
||||
"tab_badge": "Scheda"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "Nessun messaggio trovato",
|
||||
@@ -563,7 +594,8 @@
|
||||
"security": "Sicurezza",
|
||||
"encryption": "Cifratura",
|
||||
"files": "File",
|
||||
"contacts": "Contacts"
|
||||
"contacts": "Contacts",
|
||||
"sidebar_apps": "App nella barra laterale"
|
||||
},
|
||||
"tab_groups": {
|
||||
"general": "Generale",
|
||||
@@ -1004,6 +1036,14 @@
|
||||
"button": "Importa"
|
||||
}
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"title": "App nella barra laterale",
|
||||
"description": "Gestisci app e link personalizzati nella barra laterale",
|
||||
"keep_loaded": "Mantieni app caricate",
|
||||
"keep_loaded_description": "Mantieni le app inline in esecuzione in background durante il passaggio per evitare il ricaricamento",
|
||||
"manage_title": "App personalizzate",
|
||||
"manage_description": "Aggiungi, modifica o rimuovi app personalizzate dalla barra laterale"
|
||||
},
|
||||
"contacts": {
|
||||
"title": "Contacts",
|
||||
"description": "Import and export your contacts",
|
||||
|
||||
+42
-2
@@ -98,7 +98,38 @@
|
||||
"vacation_active": "不在応答が有効です",
|
||||
"tags": "タグ",
|
||||
"mail": "メール",
|
||||
"nav_label": "ナビゲーション"
|
||||
"nav_label": "ナビゲーション",
|
||||
"add_app": "アプリ"
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"modal_title": "サイドバーアプリ",
|
||||
"add_new": "アプリを追加",
|
||||
"edit_app": "アプリを編集",
|
||||
"name_label": "名前",
|
||||
"name_placeholder": "マイアプリ",
|
||||
"name_required": "名前は必須です",
|
||||
"url_label": "URL",
|
||||
"url_required": "URLは必須です",
|
||||
"url_invalid": "有効なhttpまたはhttps URLを入力してください",
|
||||
"icon_label": "アイコン",
|
||||
"icon_required": "アイコンは必須です",
|
||||
"open_mode_label": "開き方",
|
||||
"open_new_tab": "新しいタブ",
|
||||
"open_inline": "埋め込み",
|
||||
"cancel": "キャンセル",
|
||||
"add": "追加",
|
||||
"update": "更新",
|
||||
"delete": "削除",
|
||||
"delete_confirm_title": "アプリを削除",
|
||||
"delete_confirm": "「{name}」を削除してもよろしいですか?",
|
||||
"no_apps": "アプリが追加されていません",
|
||||
"no_apps_hint": "カスタムアプリやリンクをサイドバーに追加できます",
|
||||
"search_icons": "アイコンを検索...",
|
||||
"show_popular": "人気",
|
||||
"show_all": "すべて",
|
||||
"no_icons_found": "アイコンが見つかりません",
|
||||
"inline_badge": "埋め込み",
|
||||
"tab_badge": "タブ"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "メッセージが見つかりません",
|
||||
@@ -563,7 +594,8 @@
|
||||
"security": "セキュリティ",
|
||||
"encryption": "暗号化",
|
||||
"files": "ファイル",
|
||||
"contacts": "Contacts"
|
||||
"contacts": "Contacts",
|
||||
"sidebar_apps": "サイドバーアプリ"
|
||||
},
|
||||
"tab_groups": {
|
||||
"general": "一般",
|
||||
@@ -1004,6 +1036,14 @@
|
||||
"button": "インポート"
|
||||
}
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"title": "サイドバーアプリ",
|
||||
"description": "サイドバーのカスタムアプリとリンクを管理",
|
||||
"keep_loaded": "アプリを読み込んだまま保持",
|
||||
"keep_loaded_description": "切り替え時にインラインアプリをバックグラウンドで実行し続けて再読み込みを回避",
|
||||
"manage_title": "カスタムアプリ",
|
||||
"manage_description": "サイドバーのカスタムアプリを追加、編集、削除"
|
||||
},
|
||||
"contacts": {
|
||||
"title": "Contacts",
|
||||
"description": "Import and export your contacts",
|
||||
|
||||
+42
-2
@@ -98,7 +98,38 @@
|
||||
"vacation_active": "Afwezigheidsmelder is actief",
|
||||
"tags": "Labels",
|
||||
"mail": "E-mail",
|
||||
"nav_label": "Navigatie"
|
||||
"nav_label": "Navigatie",
|
||||
"add_app": "Apps"
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"modal_title": "Zijbalk-apps",
|
||||
"add_new": "App toevoegen",
|
||||
"edit_app": "App bewerken",
|
||||
"name_label": "Naam",
|
||||
"name_placeholder": "Mijn app",
|
||||
"name_required": "Naam is vereist",
|
||||
"url_label": "URL",
|
||||
"url_required": "URL is vereist",
|
||||
"url_invalid": "Voer een geldige http- of https-URL in",
|
||||
"icon_label": "Pictogram",
|
||||
"icon_required": "Pictogram is vereist",
|
||||
"open_mode_label": "Openingsmodus",
|
||||
"open_new_tab": "Nieuw tabblad",
|
||||
"open_inline": "Ingesloten",
|
||||
"cancel": "Annuleren",
|
||||
"add": "Toevoegen",
|
||||
"update": "Bijwerken",
|
||||
"delete": "Verwijderen",
|
||||
"delete_confirm_title": "App verwijderen",
|
||||
"delete_confirm": "Weet je zeker dat je \"{name}\" wilt verwijderen?",
|
||||
"no_apps": "Nog geen apps toegevoegd",
|
||||
"no_apps_hint": "Voeg aangepaste apps en links toe aan je zijbalk",
|
||||
"search_icons": "Pictogrammen zoeken...",
|
||||
"show_popular": "Populair",
|
||||
"show_all": "Alle",
|
||||
"no_icons_found": "Geen pictogrammen gevonden",
|
||||
"inline_badge": "Ingesloten",
|
||||
"tab_badge": "Tabblad"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "Geen berichten gevonden",
|
||||
@@ -563,7 +594,8 @@
|
||||
"security": "Beveiliging",
|
||||
"encryption": "Versleuteling",
|
||||
"files": "Bestanden",
|
||||
"contacts": "Contacts"
|
||||
"contacts": "Contacts",
|
||||
"sidebar_apps": "Zijbalk-apps"
|
||||
},
|
||||
"tab_groups": {
|
||||
"general": "Algemeen",
|
||||
@@ -1004,6 +1036,14 @@
|
||||
"button": "Importeren"
|
||||
}
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"title": "Zijbalk-apps",
|
||||
"description": "Aangepaste apps en links in de zijbalk beheren",
|
||||
"keep_loaded": "Apps geladen houden",
|
||||
"keep_loaded_description": "Inline-apps op de achtergrond laten draaien bij het wisselen om herladen te voorkomen",
|
||||
"manage_title": "Aangepaste apps",
|
||||
"manage_description": "Aangepaste apps toevoegen, bewerken of verwijderen uit de zijbalk"
|
||||
},
|
||||
"contacts": {
|
||||
"title": "Contacts",
|
||||
"description": "Import and export your contacts",
|
||||
|
||||
+42
-2
@@ -98,7 +98,38 @@
|
||||
"vacation_active": "Resposta automática ativa",
|
||||
"tags": "Etiquetas",
|
||||
"mail": "E-mail",
|
||||
"nav_label": "Navegação"
|
||||
"nav_label": "Navegação",
|
||||
"add_app": "Apps"
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"modal_title": "Apps da barra lateral",
|
||||
"add_new": "Adicionar app",
|
||||
"edit_app": "Editar app",
|
||||
"name_label": "Nome",
|
||||
"name_placeholder": "Meu app",
|
||||
"name_required": "Nome é obrigatório",
|
||||
"url_label": "URL",
|
||||
"url_required": "URL é obrigatório",
|
||||
"url_invalid": "Insira uma URL http ou https válida",
|
||||
"icon_label": "Ícone",
|
||||
"icon_required": "Ícone é obrigatório",
|
||||
"open_mode_label": "Modo de abertura",
|
||||
"open_new_tab": "Nova aba",
|
||||
"open_inline": "Integrado",
|
||||
"cancel": "Cancelar",
|
||||
"add": "Adicionar",
|
||||
"update": "Atualizar",
|
||||
"delete": "Excluir",
|
||||
"delete_confirm_title": "Excluir app",
|
||||
"delete_confirm": "Tem certeza de que deseja excluir \"{name}\"?",
|
||||
"no_apps": "Nenhum app adicionado",
|
||||
"no_apps_hint": "Adicione apps e links personalizados à sua barra lateral",
|
||||
"search_icons": "Pesquisar ícones...",
|
||||
"show_popular": "Populares",
|
||||
"show_all": "Todos",
|
||||
"no_icons_found": "Nenhum ícone encontrado",
|
||||
"inline_badge": "Integrado",
|
||||
"tab_badge": "Aba"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "Nenhuma mensagem encontrada",
|
||||
@@ -563,7 +594,8 @@
|
||||
"security": "Segurança",
|
||||
"encryption": "Criptografia",
|
||||
"files": "Arquivos",
|
||||
"contacts": "Contacts"
|
||||
"contacts": "Contacts",
|
||||
"sidebar_apps": "Apps da barra lateral"
|
||||
},
|
||||
"tab_groups": {
|
||||
"general": "Geral",
|
||||
@@ -1004,6 +1036,14 @@
|
||||
"button": "Importar"
|
||||
}
|
||||
},
|
||||
"sidebar_apps": {
|
||||
"title": "Apps da barra lateral",
|
||||
"description": "Gerenciar aplicativos e links personalizados na barra lateral",
|
||||
"keep_loaded": "Manter apps carregados",
|
||||
"keep_loaded_description": "Manter apps inline em execução em segundo plano ao alternar entre eles para evitar recarregamento",
|
||||
"manage_title": "Apps personalizados",
|
||||
"manage_description": "Adicionar, editar ou remover apps personalizados da barra lateral"
|
||||
},
|
||||
"contacts": {
|
||||
"title": "Contacts",
|
||||
"description": "Import and export your contacts",
|
||||
|
||||
Reference in New Issue
Block a user