keep developer-only English labels outside i18n scope

This commit is contained in:
Mega Yu
2026-04-15 20:48:34 +08:00
parent 5d244dd93b
commit 5598ac1287
30 changed files with 53 additions and 409 deletions

View File

@@ -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,}$",

View File

@@ -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/<invoke-db-worker :thread-api/rtc-get-block-content-versions token graph-uuid block-id)]
(prn :Dev-show-block-content-history)
(prn :dev/show-block-content-history)
(doseq [[block-uuid versions] blocks-versions]
(prn :block-uuid block-uuid)
(pp/print-table [:content :created-at]
@@ -338,7 +339,7 @@
{:created-at (tc/from-long (* (:created-at version) 1000))
:content (:value version)})
versions))))))}
(t :context-menu/show-block-content-history))))])]))))
"(Dev) Show block content history")))])]))))
(rum/defc block-ref-custom-context-menu-content
[block block-ref-id]

View File

@@ -10,6 +10,7 @@
[frontend.handler.page :as page-handler]
[frontend.handler.publish :as publish-handler]
[frontend.mobile.util :as mobile-util]
[frontend.modules.shortcut.data-helper :as shortcut-dh]
[frontend.state :as state]
[frontend.util :as util]
[logseq.db :as ldb]
@@ -150,7 +151,7 @@
(db-page-handler/convert-tag-to-page! page))}})
(when developer-mode?
{:title (t :command.dev/show-page-data)
{:title (shortcut-dh/shortcut-desc-by-id :dev/show-page-data)
:options {:on-click (fn []
(dev-common-handler/show-entity-data (:db/id page)))}})]
(flatten)

View File

@@ -151,15 +151,15 @@
(shortcut-settings)]
:rtc
[[:.flex.items-center (ui/icon "cloud" {:class "text-md mr-2"}) (t :sidebar.right.dev/rtc)]
[[:.flex.items-center (ui/icon "cloud" {:class "text-md mr-2"}) "(Dev) RTC"]
(rtc-debug-ui/rtc-debug-ui)]
:undo-redo
[[:.flex.items-center (ui/icon "rotate-clockwise" {:class "text-md mr-2"}) (t :sidebar.right.dev/undo-redo)]
[[:.flex.items-center (ui/icon "rotate-clockwise" {:class "text-md mr-2"}) "(Dev) Undo/Redo"]
(undo-redo-debug-ui/undo-redo-debug-ui)]
:profiler
[[:.flex.items-center (ui/icon "cloud" {:class "text-md mr-2"}) (t :sidebar.right.dev/profiler)]
[[:.flex.items-center (ui/icon "cloud" {:class "text-md mr-2"}) "(Dev) Profiler"]
(profiler/profiler)]
["" [:span]])))
@@ -176,13 +176,13 @@
[developer-mode?]
(cond-> []
(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]

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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