From 5598ac1287e34f383d228644612b253c575c3ae7 Mon Sep 17 00:00:00 2001 From: Mega Yu Date: Wed, 15 Apr 2026 20:48:34 +0800 Subject: [PATCH] keep developer-only English labels outside i18n scope --- .i18n-lint.toml | 6 +++- src/main/frontend/components/content.cljs | 19 +++++------ src/main/frontend/components/page_menu.cljs | 3 +- .../frontend/components/right_sidebar.cljs | 12 +++---- .../frontend/modules/shortcut/config.cljs | 32 +++++++++++++++---- .../modules/shortcut/data_helper.cljs | 4 +++ src/resources/dicts/af.edn | 16 ---------- src/resources/dicts/ar.edn | 16 ---------- src/resources/dicts/ca.edn | 16 ---------- src/resources/dicts/cs.edn | 16 ---------- src/resources/dicts/de.edn | 16 ---------- src/resources/dicts/en.edn | 18 ----------- src/resources/dicts/es.edn | 16 ---------- src/resources/dicts/fa.edn | 16 ---------- src/resources/dicts/fr.edn | 16 ---------- src/resources/dicts/id.edn | 16 ---------- src/resources/dicts/it.edn | 16 ---------- src/resources/dicts/ja.edn | 16 ---------- src/resources/dicts/ko.edn | 16 ---------- src/resources/dicts/nb-no.edn | 16 ---------- src/resources/dicts/nl.edn | 16 ---------- src/resources/dicts/pl.edn | 16 ---------- src/resources/dicts/pt-br.edn | 16 ---------- src/resources/dicts/pt-pt.edn | 16 ---------- src/resources/dicts/ru.edn | 16 ---------- src/resources/dicts/sk.edn | 16 ---------- src/resources/dicts/tr.edn | 16 ---------- src/resources/dicts/uk.edn | 16 ---------- src/resources/dicts/zh-cn.edn | 16 ---------- src/resources/dicts/zh-hant.edn | 16 ---------- 30 files changed, 53 insertions(+), 409 deletions(-) diff --git a/.i18n-lint.toml b/.i18n-lint.toml index dd812ada1a..3cf9c66677 100644 --- a/.i18n-lint.toml +++ b/.i18n-lint.toml @@ -160,11 +160,15 @@ allow_strings = [ # Regex patterns to allow. allow_patterns = [ + # Developer-only English labels intentionally outside i18n scope. + # e.g., "(Dev) RTC", "(Dev) Profiler" + "^\\(Dev\\)\\s", + # Logseq macro syntax. # e.g., {{query ...}}, {{video ...}} "^\\{\\{", -# Email addresses. + # Email addresses. # e.g., user@example.com, tech.support@domain.org "^[a-z0-9._%+-]+@[a-z0-9.-]+\\.[a-z]{2,}$", diff --git a/src/main/frontend/components/content.cljs b/src/main/frontend/components/content.cljs index ab7e6f369f..884a544e7a 100644 --- a/src/main/frontend/components/content.cljs +++ b/src/main/frontend/components/content.cljs @@ -16,6 +16,7 @@ [frontend.handler.property :as property-handler] [frontend.handler.property.util :as pu] [frontend.handler.reaction :as reaction-handler] + [frontend.modules.shortcut.data-helper :as shortcut-dh] [frontend.state :as state] [frontend.ui :as ui] [frontend.util :as util] @@ -310,27 +311,27 @@ (shui/dropdown-menu-sub-trigger (t :context-menu/developer-tools)) - (shui/dropdown-menu-sub-content - (shui/dropdown-menu-item - {:key "(Dev) Show block data" + (shui/dropdown-menu-sub-content + (shui/dropdown-menu-item + {:key :dev/show-block-data :on-click (fn [] (dev-common-handler/show-entity-data [:block/uuid block-id]))} - (t :command.dev/show-block-data)) + (shortcut-dh/shortcut-desc-by-id :dev/show-block-data)) (shui/dropdown-menu-item - {:key "(Dev) Show block AST" + {:key :dev/show-block-ast :on-click (fn [] (let [block (db/entity [:block/uuid block-id])] (dev-common-handler/show-content-ast (:block/title block) (get block :block/format :markdown))))} - (t :command.dev/show-block-ast)) + (shortcut-dh/shortcut-desc-by-id :dev/show-block-ast)) (shui/dropdown-menu-item - {:key "(Dev) Show block content history" + {:key :dev/show-block-content-history :on-click (fn [] (let [token (state/get-auth-id-token) graph-uuid (ldb/get-graph-rtc-uuid (db/get-db))] (p/let [blocks-versions (state/ [] (and developer-mode? (not config/publishing?)) - (conj {:db-id "rtc" :block-type :rtc :label (t :sidebar.right.dev/rtc)}) + (conj {:db-id "rtc" :block-type :rtc :label "(Dev) RTC"}) developer-mode? - (conj {:db-id "undo-redo" :block-type :undo-redo :label (t :sidebar.right.dev/undo-redo)}) + (conj {:db-id "undo-redo" :block-type :undo-redo :label "(Dev) Undo/Redo"}) developer-mode? - (conj {:db-id "profiler" :block-type :profiler :label (t :sidebar.right.dev/profiler)}))) + (conj {:db-id "profiler" :block-type :profiler :label "(Dev) Profiler"}))) (rum/defc actions-menu-content [db-id idx type collapsed? block-count] diff --git a/src/main/frontend/modules/shortcut/config.cljs b/src/main/frontend/modules/shortcut/config.cljs index feb5a05d79..40975bce76 100644 --- a/src/main/frontend/modules/shortcut/config.cljs +++ b/src/main/frontend/modules/shortcut/config.cljs @@ -38,12 +38,15 @@ ;; almost everywhere else they are not which could cause needless conflicts ;; with other config keys -;; To add a new entry to this map, first add it here and then a description for -;; it under :commands keys of frontend.dicts.en/dicts +;; To add a new entry to this map, first add it here and then provide a default +;; English label either via a matching `:command.*` key in `en.edn` or via +;; inline `:desc` for developer-only labels that intentionally stay out of i18n. ;; A shortcut is a map with the following keys: ;; * :binding - A string representing a keybinding. Avoid using single letter ;; shortcuts to allow chords that start with those characters ;; * :fn - Fn or a qualified keyword that represents a fn +;; * :desc - Optional default English label for non-translated developer-only +;; shortcuts such as `(Dev)` commands ;; * :inactive - Optional boolean to disable a shortcut for certain conditions ;; e.g. a given platform or feature condition (def ^:large-vars/data-var all-built-in-keyboard-shortcuts @@ -474,22 +477,27 @@ :fn #(state/pub-event! [:ui/toggle-appearance])} :dev/gc-graph {:binding [] + :desc "(Dev) Garbage collect graph (remove unused data in SQLite)" :inactive (not (state/developer-mode?)) :fn #(repo-handler/gc-graph! (state/get-current-repo))} :dev/replace-graph-with-db-file {:binding [] + :desc "(Dev) Replace graph with its db.sqlite file" :inactive (or (not (util/electron?)) (not (state/developer-mode?))) :fn :frontend.handler.common.developer/replace-graph-with-db-file} :dev/show-block-data {:binding [] + :desc "(Dev) Show block data" :inactive (not (state/developer-mode?)) :fn :frontend.handler.common.developer/show-block-data} :dev/show-block-ast {:binding [] + :desc "(Dev) Show block AST" :inactive (not (state/developer-mode?)) :fn :frontend.handler.common.developer/show-block-ast} :dev/show-page-data {:binding [] + :desc "(Dev) Show page data" :inactive (not (state/developer-mode?)) :fn :frontend.handler.common.developer/show-page-data} @@ -506,18 +514,23 @@ :fn :frontend.handler.db-based.import/import-edn-data-dialog} :dev/validate-db {:binding [] + :desc "(Dev) Validate current graph" :inactive (not (state/developer-mode?)) :fn :frontend.handler.common.developer/validate-db} :dev/recompute-checksum {:binding [] + :desc "(Dev) Recompute graph checksum" :inactive (not (state/developer-mode?)) :fn :frontend.handler.common.developer/recompute-checksum-diagnostics} :dev/export-client-ops-sqlite {:binding [] + :desc "(Dev) Export client ops sqlite" :inactive (not (state/developer-mode?)) :fn :frontend.handler.common.developer/export-client-ops-sqlite} :dev/rtc-stop {:binding [] + :desc "(Dev) RTC Stop" :inactive (not (state/developer-mode?)) :fn :frontend.handler.common.developer/rtc-stop} :dev/rtc-start {:binding [] + :desc "(Dev) RTC Start" :inactive (not (state/developer-mode?)) :fn :frontend.handler.common.developer/rtc-start}}) @@ -525,11 +538,18 @@ {::commands (->> (keys all-built-in-keyboard-shortcuts) (remove #(= (namespace %) "cards")) set) - ::dicts/commands dicts/abbreviated-commands}] - (assert (= (::commands keyboard-commands) (::dicts/commands keyboard-commands)) - (str "Keyboard commands must have an english label" + ::dicts/commands dicts/abbreviated-commands + ::described-commands (->> all-built-in-keyboard-shortcuts + (keep (fn [[id opts]] + (when (:desc opts) id))) + set)}] + (assert (= (::commands keyboard-commands) + (into (::dicts/commands keyboard-commands) + (::described-commands keyboard-commands))) + (str "Keyboard commands must have a default english label from `en.edn` or inline `:desc`" (data/diff (::commands keyboard-commands) - (::dicts/commands keyboard-commands))))) + (into (::dicts/commands keyboard-commands) + (::described-commands keyboard-commands)))))) (defn- resolve-fn "Converts a keyword fn to the actual fn. The fn to be resolved needs to be diff --git a/src/main/frontend/modules/shortcut/data_helper.cljs b/src/main/frontend/modules/shortcut/data_helper.cljs index 385d1478ef..9535e42338 100644 --- a/src/main/frontend/modules/shortcut/data_helper.cljs +++ b/src/main/frontend/modules/shortcut/data_helper.cljs @@ -386,6 +386,10 @@ :binding (binding-for-display id binding)))) +(defn shortcut-desc-by-id + [id] + (get-shortcut-desc (assoc (shortcut-data-by-id id) :id id))) + (defn shortcuts->commands [handler-id] (let [m (get @shortcut-config/*config handler-id)] (->> m diff --git a/src/resources/dicts/af.edn b/src/resources/dicts/af.edn index 0c39daac8c..8166d0c8de 100644 --- a/src/resources/dicts/af.edn +++ b/src/resources/dicts/af.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Opdragpalet" - ;; Dev commands - :command.dev/gc-graph "Grafiek opschonen" - :command.dev/replace-graph-with-db-file "Grafiek vervangen door DB-lêer" - :command.dev/rtc-start "RTC starten" - :command.dev/rtc-stop "RTC stoppen" - :command.dev/show-block-ast "Blok-AST tonen" - :command.dev/show-block-data "Blokgegevens tonen" - :command.dev/show-page-data "Bladsygegevens tonen" - :command.dev/validate-db "Database valideren" - ;; Editor commands :command.editor/add-property "Eienskap voeg by" :command.editor/add-property-deadline "Deadline voeg by" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Skeiding" :sidebar.right/toggle "Wissel regter sypaneel" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Ontdoen/Herdoen" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Maak flitskaart" :context-menu/set-icon "Stel ikoon" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Wissel genommerde lys" ;; Window diff --git a/src/resources/dicts/ar.edn b/src/resources/dicts/ar.edn index cfd7ef6ef4..768af068cf 100644 --- a/src/resources/dicts/ar.edn +++ b/src/resources/dicts/ar.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "لوحة الأوامر" - ;; Dev commands - :command.dev/gc-graph "تنظيف الرسم البياني" - :command.dev/replace-graph-with-db-file "استبدال الرسم بملف DB" - :command.dev/rtc-start "بدء RTC" - :command.dev/rtc-stop "إيقاف RTC" - :command.dev/show-block-ast "عرض AST الكتلة" - :command.dev/show-block-data "عرض بيانات الكتلة" - :command.dev/show-page-data "عرض بيانات الصفحة" - :command.dev/validate-db "التحقق من قاعدة البيانات" - ;; Editor commands :command.editor/add-property "إضافة خاصية" :command.editor/add-property-deadline "إضافة موعد نهائي" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "فاصل" :sidebar.right/toggle "تبديل الشريط الجانبي الأيمن" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) تراجع/إعادة" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "إنشاء بطاقة تعليمية" :context-menu/set-icon "تعيين أيقونة" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "تبديل القائمة المرقمة" ;; Window diff --git a/src/resources/dicts/ca.edn b/src/resources/dicts/ca.edn index 46b2261abf..1f6721dba4 100644 --- a/src/resources/dicts/ca.edn +++ b/src/resources/dicts/ca.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Alternar paleta d'ordres" - ;; Dev commands - :command.dev/gc-graph "Netejar graf" - :command.dev/replace-graph-with-db-file "Substituir graf per fitxer BD" - :command.dev/rtc-start "Iniciar RTC" - :command.dev/rtc-stop "Aturar RTC" - :command.dev/show-block-ast "Mostrar AST del bloc" - :command.dev/show-block-data "Mostrar dades del bloc" - :command.dev/show-page-data "Mostrar dades de la pàgina" - :command.dev/validate-db "Validar base de dades" - ;; Editor commands :command.editor/add-property "Afegir propietat" :command.editor/add-property-deadline "Afegir termini" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Eina per redimensionar panell dret " :sidebar.right/toggle "Alternar barra lateral dreta" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Desfer/Refer" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Crear flashcard" :context-menu/set-icon "Definir icona" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Alternar llista numerada" ;; Window diff --git a/src/resources/dicts/cs.edn b/src/resources/dicts/cs.edn index 7cebc2e3a9..eda96a1d48 100644 --- a/src/resources/dicts/cs.edn +++ b/src/resources/dicts/cs.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Paleta příkazů" - ;; Dev commands - :command.dev/gc-graph "Vyčistit graf" - :command.dev/replace-graph-with-db-file "Nahradit graf souborem DB" - :command.dev/rtc-start "Spustit RTC" - :command.dev/rtc-stop "Zastavit RTC" - :command.dev/show-block-ast "Zobrazit AST bloku" - :command.dev/show-block-data "Zobrazit data bloku" - :command.dev/show-page-data "Zobrazit data stránky" - :command.dev/validate-db "Ověřit databázi" - ;; Editor commands :command.editor/add-property "Přidat vlastnost" :command.editor/add-property-deadline "Přidat termín" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Nástroj na změnu velikosti pravého postranního panelu" :sidebar.right/toggle "Přepnout pravý panel" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Zpátky/Znovu" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Vytvořit kartičku" :context-menu/set-icon "Nastavit ikonu" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Přepnout číslovaný seznam" ;; Window diff --git a/src/resources/dicts/de.edn b/src/resources/dicts/de.edn index dcefe5eb49..d05c4b9ad1 100644 --- a/src/resources/dicts/de.edn +++ b/src/resources/dicts/de.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Suchbefehle" - ;; Dev commands - :command.dev/gc-graph "(Dev) Graph bereinigen (ungenutzte Daten in SQLite entfernen)" - :command.dev/replace-graph-with-db-file "(Dev) Graph mit db.sqlite-Datei ersetzen" - :command.dev/rtc-start "(Dev) RTC starten" - :command.dev/rtc-stop "(Dev) RTC stoppen" - :command.dev/show-block-ast "(Dev) Block-AST anzeigen" - :command.dev/show-block-data "(Dev) Blockdaten anzeigen" - :command.dev/show-page-data "(Dev) Seitendaten anzeigen" - :command.dev/validate-db "(Dev) Aktuellen Graph validieren" - ;; Editor commands :command.editor/add-property "Eigenschaft hinzufügen" :command.editor/add-property-deadline "Deadline zum ausgewählten Block hinzufügen" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Griff zur Größenänderung der rechten Seitenleiste" :sidebar.right/toggle "Rechte Seitenleiste umschalten" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Rückgängig/Wiederholen" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Eine Karteikarte erstellen" :context-menu/set-icon "Symbol setzen" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Nummeriert/Unnummeriert umschalten" ;; Window diff --git a/src/resources/dicts/en.edn b/src/resources/dicts/en.edn index 3790c1015b..bd0fe18abb 100644 --- a/src/resources/dicts/en.edn +++ b/src/resources/dicts/en.edn @@ -9,18 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Search commands" - ;; Dev commands - :command.dev/export-client-ops-sqlite "(Dev) Export client ops sqlite" - :command.dev/gc-graph "(Dev) Garbage collect graph (remove unused data in SQLite)" - :command.dev/recompute-checksum "(Dev) Recompute graph checksum" - :command.dev/replace-graph-with-db-file "(Dev) Replace graph with its db.sqlite file" - :command.dev/rtc-start "(Dev) RTC Start" - :command.dev/rtc-stop "(Dev) RTC Stop" - :command.dev/show-block-ast "(Dev) Show block AST" - :command.dev/show-block-data "(Dev) Show block data" - :command.dev/show-page-data "(Dev) Show page data" - :command.dev/validate-db "(Dev) Validate current graph" - ;; Editor commands :command.editor/add-property "Add property" :command.editor/add-property-deadline "Add task deadline to selected block" @@ -1924,16 +1912,10 @@ :sidebar.right/resize-handle "Right sidebar resize handler" :sidebar.right/toggle "Toggle right sidebar" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Undo/Redo" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Make a Flashcard" :context-menu/set-icon "Set icon" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Toggle number list" ;; Window diff --git a/src/resources/dicts/es.edn b/src/resources/dicts/es.edn index 18ca58b8dc..d1f54a7182 100644 --- a/src/resources/dicts/es.edn +++ b/src/resources/dicts/es.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Buscar comandos" - ;; Dev commands - :command.dev/gc-graph "Limpiar grafo" - :command.dev/replace-graph-with-db-file "Reemplazar grafo con archivo DB" - :command.dev/rtc-start "Iniciar RTC" - :command.dev/rtc-stop "Detener RTC" - :command.dev/show-block-ast "(Dev) Mostrar AST de bloque" - :command.dev/show-block-data "(Dev) Mostrar datos de bloque" - :command.dev/show-page-data "(Dev) Mostrar datos de página" - :command.dev/validate-db "Validar base de datos" - ;; Editor commands :command.editor/add-property "Añadir propiedad" :command.editor/add-property-deadline "Añadir fecha límite" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Right sidebar resize handler " :sidebar.right/toggle "Alternar barra lateral derecha" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Deshacer/Rehacer" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Crear una tarjeta de memorización" :context-menu/set-icon "Establecer icono" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Alternar lista de números" ;; Window diff --git a/src/resources/dicts/fa.edn b/src/resources/dicts/fa.edn index 97c36facc9..a1e328354e 100644 --- a/src/resources/dicts/fa.edn +++ b/src/resources/dicts/fa.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "پالت دستورات" - ;; Dev commands - :command.dev/gc-graph "پاک‌سازی گراف" - :command.dev/replace-graph-with-db-file "جایگزینی گراف با فایل DB" - :command.dev/rtc-start "شروع RTC" - :command.dev/rtc-stop "توقف RTC" - :command.dev/show-block-ast "نمایش AST بلوک" - :command.dev/show-block-data "نمایش داده‌های بلوک" - :command.dev/show-page-data "نمایش داده‌های صفحه" - :command.dev/validate-db "اعتبارسنجی پایگاه داده" - ;; Editor commands :command.editor/add-property "افزودن ویژگی" :command.editor/add-property-deadline "افزودن مهلت" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "جداکننده" :sidebar.right/toggle "تغییر نوار کناری راست" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) واگرد/بازانجام" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "ایجاد فلش‌کارت" :context-menu/set-icon "تنظیم آیکون" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "تغییر لیست شماره‌دار" ;; Window diff --git a/src/resources/dicts/fr.edn b/src/resources/dicts/fr.edn index a4424e0f94..af6ab148a2 100644 --- a/src/resources/dicts/fr.edn +++ b/src/resources/dicts/fr.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Rechercher des commandes" - ;; Dev commands - :command.dev/gc-graph "Nettoyer le graphe" - :command.dev/replace-graph-with-db-file "Remplacer le graphe par un fichier DB" - :command.dev/rtc-start "Démarrer RTC" - :command.dev/rtc-stop "Arrêter RTC" - :command.dev/show-block-ast "(Dev) Montrer le bloc AST" - :command.dev/show-block-data "(Dev) Montrer les données du bloc" - :command.dev/show-page-data "(Dev) Montrer les données de la page" - :command.dev/validate-db "Valider la base de données" - ;; Editor commands :command.editor/add-property "Ajouter une propriété" :command.editor/add-property-deadline "Ajouter une échéance" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Poignée de redimensionnement de la barre latérale droite" :sidebar.right/toggle "Activer le panneau latéral droit" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Annuler/Refaire" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Créer une carte mémoire" :context-menu/set-icon "Définir l'icône" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Activer la liste numérotée" ;; Window diff --git a/src/resources/dicts/id.edn b/src/resources/dicts/id.edn index e5fe4cedd3..ff02d52fa9 100644 --- a/src/resources/dicts/id.edn +++ b/src/resources/dicts/id.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Palet perintah" - ;; Dev commands - :command.dev/gc-graph "Bersihkan grafik" - :command.dev/replace-graph-with-db-file "Ganti grafik dengan file DB" - :command.dev/rtc-start "Mulai RTC" - :command.dev/rtc-stop "Hentikan RTC" - :command.dev/show-block-ast "(Dev) Tampilkan AST blok" - :command.dev/show-block-data "(Dev) Tampilkan data blok" - :command.dev/show-page-data "(Dev) Tampilkan data halaman" - :command.dev/validate-db "Validasi database" - ;; Editor commands :command.editor/add-property "Tambah properti" :command.editor/add-property-deadline "Tambah tenggat" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Pengatur ukuran bilah sisi kanan" :sidebar.right/toggle "Beralih ke bilah sisi kanan" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Batal/Lakukan lagi" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Buat Kartu Belajar" :context-menu/set-icon "Atur ikon" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Alihkan daftar nomor" ;; Window diff --git a/src/resources/dicts/it.edn b/src/resources/dicts/it.edn index 5fc06679a5..42e1c50ee1 100644 --- a/src/resources/dicts/it.edn +++ b/src/resources/dicts/it.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Cerca un comando" - ;; Dev commands - :command.dev/gc-graph "Pulisci grafo" - :command.dev/replace-graph-with-db-file "Sostituisci grafo con file DB" - :command.dev/rtc-start "Avvia RTC" - :command.dev/rtc-stop "Ferma RTC" - :command.dev/show-block-ast "(Dev) Mostra AST del blocco" - :command.dev/show-block-data "(Dev) Mostra dati del blocco" - :command.dev/show-page-data "(Dev) Mostra dati della pagina" - :command.dev/validate-db "Valida database" - ;; Editor commands :command.editor/add-property "Aggiungi proprietà" :command.editor/add-property-deadline "Aggiungi scadenza" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Bordo per ridimensionare il pannello laterale destro" :sidebar.right/toggle "Attiva/disattiva pannello laterale destro" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Annulla/Ripeti" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Crea flashcard" :context-menu/set-icon "Imposta icona" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Attiva/disattiva elenco numerato" ;; Window diff --git a/src/resources/dicts/ja.edn b/src/resources/dicts/ja.edn index 510534f9c3..3e992f8084 100644 --- a/src/resources/dicts/ja.edn +++ b/src/resources/dicts/ja.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "検索コマンド" - ;; Dev commands - :command.dev/gc-graph "(開発)グラフのガベージコレクション" - :command.dev/replace-graph-with-db-file "(開発)DBファイルでグラフを置換" - :command.dev/rtc-start "(開発)RTC開始" - :command.dev/rtc-stop "(開発)RTC停止" - :command.dev/show-block-ast "(開発) ブロックの抽象構文木の表示" - :command.dev/show-block-data "(開発) ブロックのデータを表示" - :command.dev/show-page-data "(開発) ページのデータを表示" - :command.dev/validate-db "(開発)DB検証" - ;; Editor commands :command.editor/add-property "プロパティを追加" :command.editor/add-property-deadline "期限プロパティを追加" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "右サイドバーのサイズ変更" :sidebar.right/toggle "右サイドバーを開閉" - ;; Sidebar right - :sidebar.right.dev/profiler "(開発)Profiler" - :sidebar.right.dev/rtc "(開発)RTC" - :sidebar.right.dev/undo-redo "(開発)元に戻す/やり直し" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "フラッシュカードを作る" :context-menu/set-icon "アイコンを設定" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "番号付きリストの切替" ;; Window diff --git a/src/resources/dicts/ko.edn b/src/resources/dicts/ko.edn index 96c630e56c..174155a316 100644 --- a/src/resources/dicts/ko.edn +++ b/src/resources/dicts/ko.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "명령 팔레트 전환" - ;; Dev commands - :command.dev/gc-graph "(개발) 그래프 가비지 컬렉션" - :command.dev/replace-graph-with-db-file "(개발) DB 파일로 그래프 교체" - :command.dev/rtc-start "(개발) RTC 시작" - :command.dev/rtc-stop "(개발) RTC 중지" - :command.dev/show-block-ast "(개발) 블록 AST 표시" - :command.dev/show-block-data "(개발) 블록 데이터 표시" - :command.dev/show-page-data "(개발) 페이지 데이터 표시" - :command.dev/validate-db "(개발) DB 유효성 검사" - ;; Editor commands :command.editor/add-property "속성 추가" :command.editor/add-property-deadline "마감일 속성 추가" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "구분선" :sidebar.right/toggle "오른쪽 사이드바 전환" - ;; Sidebar right - :sidebar.right.dev/profiler "(개발)Profiler" - :sidebar.right.dev/rtc "(개발)RTC" - :sidebar.right.dev/undo-redo "(개발)실행 취소/다시 실행" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "플래시카드 만들기" :context-menu/set-icon "아이콘 설정" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "번호 목록 전환" ;; Window diff --git a/src/resources/dicts/nb-no.edn b/src/resources/dicts/nb-no.edn index 519db5fcfb..ab143cf9ae 100644 --- a/src/resources/dicts/nb-no.edn +++ b/src/resources/dicts/nb-no.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Kommandopalett" - ;; Dev commands - :command.dev/gc-graph "Rens graf" - :command.dev/replace-graph-with-db-file "Erstatt graf med DB-fil" - :command.dev/rtc-start "Start RTC" - :command.dev/rtc-stop "Stopp RTC" - :command.dev/show-block-ast "Vis blokk-AST" - :command.dev/show-block-data "Vis blokkdata" - :command.dev/show-page-data "Vis sidedata" - :command.dev/validate-db "Valider database" - ;; Editor commands :command.editor/add-property "Legg til egenskap" :command.editor/add-property-deadline "Legg til frist" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Skillelinje" :sidebar.right/toggle "Slå av/på høyre sidepanel" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Angre/Gjør om" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Lag flashkort" :context-menu/set-icon "Sett ikon" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Slå av/på nummerert liste" ;; Window diff --git a/src/resources/dicts/nl.edn b/src/resources/dicts/nl.edn index 4bd1b019f2..4ee6054991 100644 --- a/src/resources/dicts/nl.edn +++ b/src/resources/dicts/nl.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Commandopalet" - ;; Dev commands - :command.dev/gc-graph "Grafiek opschonen" - :command.dev/replace-graph-with-db-file "Grafiek vervangen door DB-bestand" - :command.dev/rtc-start "RTC starten" - :command.dev/rtc-stop "RTC stoppen" - :command.dev/show-block-ast "Blok-AST tonen" - :command.dev/show-block-data "Blokgegevens tonen" - :command.dev/show-page-data "Paginagegevens tonen" - :command.dev/validate-db "Database valideren" - ;; Editor commands :command.editor/add-property "Eigenschap toevoegen" :command.editor/add-property-deadline "Deadline toevoegen" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Scheidingslijn" :sidebar.right/toggle "Rechter zijbalk in-/uitschakelen" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Ongedaan maken/Herhaal" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Flashcard maken" :context-menu/set-icon "Pictogram instellen" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Genummerde lijst in-/uitschakelen" ;; Window diff --git a/src/resources/dicts/pl.edn b/src/resources/dicts/pl.edn index 0faeb3baf9..0531a8fb57 100644 --- a/src/resources/dicts/pl.edn +++ b/src/resources/dicts/pl.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Paleta poleceń" - ;; Dev commands - :command.dev/gc-graph "Wyczyść graf" - :command.dev/replace-graph-with-db-file "Zastąp graf plikiem DB" - :command.dev/rtc-start "Uruchom RTC" - :command.dev/rtc-stop "Zatrzymaj RTC" - :command.dev/show-block-ast "Pokaż AST bloku" - :command.dev/show-block-data "Pokaż dane bloku" - :command.dev/show-page-data "Pokaż dane strony" - :command.dev/validate-db "Sprawdź bazę danych" - ;; Editor commands :command.editor/add-property "Dodaj właściwość" :command.editor/add-property-deadline "Dodaj termin" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Separator" :sidebar.right/toggle "Przełącz prawy panel" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Cofnij/Ponów" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Utwórz fiszkę" :context-menu/set-icon "Ustaw ikonę" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Przełącz listę numerowaną" ;; Window diff --git a/src/resources/dicts/pt-br.edn b/src/resources/dicts/pt-br.edn index 47ce52af59..5fd938b693 100644 --- a/src/resources/dicts/pt-br.edn +++ b/src/resources/dicts/pt-br.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Pesquisar comandos" - ;; Dev commands - :command.dev/gc-graph "Limpar grafo" - :command.dev/replace-graph-with-db-file "Substituir grafo por arquivo DB" - :command.dev/rtc-start "Iniciar RTC" - :command.dev/rtc-stop "Parar RTC" - :command.dev/show-block-ast "(Dev) Mostrar AST do bloco" - :command.dev/show-block-data "(Dev) Mostrar dados do bloco" - :command.dev/show-page-data "(Dev) Mostrar dados da página" - :command.dev/validate-db "Validar banco de dados" - ;; Editor commands :command.editor/add-property "Adicionar propriedade" :command.editor/add-property-deadline "Adicionar prazo" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Manipulador de redimensionamento da barra lateral direita" :sidebar.right/toggle "Alternar barra lateral direita" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Desfazer/Refazer" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Criar um Flashcard" :context-menu/set-icon "Definir ícone" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Alternar lista numerada" ;; Window diff --git a/src/resources/dicts/pt-pt.edn b/src/resources/dicts/pt-pt.edn index afb76dd2ad..81008e83d7 100644 --- a/src/resources/dicts/pt-pt.edn +++ b/src/resources/dicts/pt-pt.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Alternar paleta de comandos" - ;; Dev commands - :command.dev/gc-graph "Limpar grafo" - :command.dev/replace-graph-with-db-file "Substituir grafo por ficheiro DB" - :command.dev/rtc-start "Iniciar RTC" - :command.dev/rtc-stop "Parar RTC" - :command.dev/show-block-ast "Mostrar AST do bloco" - :command.dev/show-block-data "Mostrar dados do bloco" - :command.dev/show-page-data "Mostrar dados da página" - :command.dev/validate-db "Validar banco de dados" - ;; Editor commands :command.editor/add-property "Adicionar propriedade" :command.editor/add-property-deadline "Adicionar prazo" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Manipulador de redimensionamento da barra lateral direita" :sidebar.right/toggle "Alternar barra lateral direita" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Desfazer/Refazer" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Criar flashcard" :context-menu/set-icon "Definir ícone" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Alternar lista numerada" ;; Window diff --git a/src/resources/dicts/ru.edn b/src/resources/dicts/ru.edn index 87499c31d4..f1581a9cda 100644 --- a/src/resources/dicts/ru.edn +++ b/src/resources/dicts/ru.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Палитра команд" - ;; Dev commands - :command.dev/gc-graph "Очистить граф" - :command.dev/replace-graph-with-db-file "Заменить граф файлом БД" - :command.dev/rtc-start "Запустить RTC" - :command.dev/rtc-stop "Остановить RTC" - :command.dev/show-block-ast "Показать AST блока" - :command.dev/show-block-data "Показать данные блока" - :command.dev/show-page-data "Показать данные страницы" - :command.dev/validate-db "Проверить базу данных" - ;; Editor commands :command.editor/add-property "Добавить свойство" :command.editor/add-property-deadline "Добавить крайний срок" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Изменение размера правой боковой панели" :sidebar.right/toggle "Переключить правую панель" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Отменить/Вернуть" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Создать карточку" :context-menu/set-icon "Установить значок" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Переключить нумерованный список" ;; Window diff --git a/src/resources/dicts/sk.edn b/src/resources/dicts/sk.edn index b001b669cf..d4fbb27f05 100644 --- a/src/resources/dicts/sk.edn +++ b/src/resources/dicts/sk.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Paleta príkazov" - ;; Dev commands - :command.dev/gc-graph "Vyčistit graf" - :command.dev/replace-graph-with-db-file "Nahradiť graf súborem DB" - :command.dev/rtc-start "Spustiť RTC" - :command.dev/rtc-stop "Zastaviť RTC" - :command.dev/show-block-ast "Zobraziť AST bloku" - :command.dev/show-block-data "Zobraziť data bloku" - :command.dev/show-page-data "Zobraziť data stránky" - :command.dev/validate-db "Ověřit databázi" - ;; Editor commands :command.editor/add-property "Pridať vlastnosť" :command.editor/add-property-deadline "Pridať termín" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Nástroj na zmenu veľkosti pravého bočného panelu" :sidebar.right/toggle "Prepnúť pravý panel" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Späť/Znova" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Vytvoriť kartičku" :context-menu/set-icon "Nastaviť ikonu" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Prepnúť číslovaný seznam" ;; Window diff --git a/src/resources/dicts/tr.edn b/src/resources/dicts/tr.edn index 19997462e5..948af3a5f0 100644 --- a/src/resources/dicts/tr.edn +++ b/src/resources/dicts/tr.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Komut paleti" - ;; Dev commands - :command.dev/gc-graph "Grafiği temizle" - :command.dev/replace-graph-with-db-file "Grafiği DB dosyasıyla değiştir" - :command.dev/rtc-start "RTC başlat" - :command.dev/rtc-stop "RTC durdur" - :command.dev/show-block-ast "Blok AST'sini göster" - :command.dev/show-block-data "Blok verilerini göster" - :command.dev/show-page-data "Sayfa verilerini göster" - :command.dev/validate-db "Veritabanını doğrula" - ;; Editor commands :command.editor/add-property "Özellik ekle" :command.editor/add-property-deadline "Son tarih ekle" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Sağ kenar çubuğu yeniden boyutlandırma işleyicisi" :sidebar.right/toggle "Sağ paneli aç/kapat" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Geri al/Yinele" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Bilgi kartı oluştur" :context-menu/set-icon "Simge ayarla" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Numaralı listeyi aç/kapat" ;; Window diff --git a/src/resources/dicts/uk.edn b/src/resources/dicts/uk.edn index 08ac88b6c5..d4286f37b2 100644 --- a/src/resources/dicts/uk.edn +++ b/src/resources/dicts/uk.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "Палітра команд" - ;; Dev commands - :command.dev/gc-graph "Очистити граф" - :command.dev/replace-graph-with-db-file "Заменить граф файлом БД" - :command.dev/rtc-start "Запустити RTC" - :command.dev/rtc-stop "Зупинити RTC" - :command.dev/show-block-ast "Показати AST блока" - :command.dev/show-block-data "Показати данные блока" - :command.dev/show-page-data "Показати данные сторінки" - :command.dev/validate-db "Перевірити базу данных" - ;; Editor commands :command.editor/add-property "Додати властивість" :command.editor/add-property-deadline "Додати крайний срок" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "Обробник зміни розміру правої бічної панелі" :sidebar.right/toggle "Перемкнути праву панель" - ;; Sidebar right - :sidebar.right.dev/profiler "(Dev) Profiler" - :sidebar.right.dev/rtc "(Dev) RTC" - :sidebar.right.dev/undo-redo "(Dev) Скасувати зміни/Повторити" - ;; Context Menu :context-menu/developer-tools "Developer tools" :context-menu/make-a-flashcard "Створити картку" :context-menu/set-icon "Встановити іконку" - :context-menu/show-block-content-history "(Dev) Show block content history" :context-menu/toggle-number-list "Перемкнути нумерований список" ;; Window diff --git a/src/resources/dicts/zh-cn.edn b/src/resources/dicts/zh-cn.edn index 2c712c7228..846f176244 100644 --- a/src/resources/dicts/zh-cn.edn +++ b/src/resources/dicts/zh-cn.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "切换命令面板" - ;; Dev commands - :command.dev/gc-graph "(开发)垃圾回收图谱" - :command.dev/replace-graph-with-db-file "(开发)用数据库文件替换图谱" - :command.dev/rtc-start "(开发)启动 RTC" - :command.dev/rtc-stop "(开发)停止 RTC" - :command.dev/show-block-ast "(开发)显示块 AST" - :command.dev/show-block-data "(开发)显示块数据" - :command.dev/show-page-data "(开发)显示页面数据" - :command.dev/validate-db "(开发)验证数据库" - ;; Editor commands :command.editor/add-property "添加属性" :command.editor/add-property-deadline "添加截止日期属性" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "调整右侧边栏大小" :sidebar.right/toggle "切换右侧边栏" - ;; Sidebar right - :sidebar.right.dev/profiler "(开发)Profiler" - :sidebar.right.dev/rtc "(开发)RTC" - :sidebar.right.dev/undo-redo "(开发)撤销/重做" - ;; Context Menu :context-menu/developer-tools "开发者工具" :context-menu/make-a-flashcard "制作闪卡" :context-menu/set-icon "设置图标" - :context-menu/show-block-content-history "(开发)显示块内容历史" :context-menu/toggle-number-list "切换编号列表" ;; Window diff --git a/src/resources/dicts/zh-hant.edn b/src/resources/dicts/zh-hant.edn index 9f8fe49bb4..3d942f15af 100644 --- a/src/resources/dicts/zh-hant.edn +++ b/src/resources/dicts/zh-hant.edn @@ -9,16 +9,6 @@ ;; Command Palette commands :command.command-palette/toggle "切換指令面板" - ;; Dev commands - :command.dev/gc-graph "(開發)垃圾回收圖譜" - :command.dev/replace-graph-with-db-file "(開發)用資料庫檔案取代圖譜" - :command.dev/rtc-start "(開發)啟動 RTC" - :command.dev/rtc-stop "(開發)停止 RTC" - :command.dev/show-block-ast "(開發)顯示區塊 AST" - :command.dev/show-block-data "(開發)顯示區塊資料" - :command.dev/show-page-data "(開發)顯示頁面資料" - :command.dev/validate-db "(開發)驗證資料庫" - ;; Editor commands :command.editor/add-property "添加屬性" :command.editor/add-property-deadline "新增截止日期屬性" @@ -1922,16 +1912,10 @@ :sidebar.right/resize-handle "右側邊欄調整大小" :sidebar.right/toggle "切換右側邊欄" - ;; Sidebar right - :sidebar.right.dev/profiler "(開發)Profiler" - :sidebar.right.dev/rtc "(開發)RTC" - :sidebar.right.dev/undo-redo "(開發)復原/重做" - ;; Context Menu :context-menu/developer-tools "開發者工具" :context-menu/make-a-flashcard "製作閃卡" :context-menu/set-icon "設定圖示" - :context-menu/show-block-content-history "(開發)顯示區塊內容歷史" :context-menu/toggle-number-list "切換編號列表" ;; Window