chore(command_palette): change placeholder

This commit is contained in:
Elian Doran 2025-07-28 11:21:18 +03:00
parent 1d1a0ac4fd
commit e341de70c0
No known key found for this signature in database
8 changed files with 8 additions and 8 deletions

View File

@ -210,7 +210,7 @@
"okButton": "确定"
},
"jump_to_note": {
"search_placeholder": "按笔记名称搜索",
"search_placeholder": "",
"close": "关闭",
"search_button": "全文搜索 <kbd>Ctrl+回车</kbd>"
},

View File

@ -210,7 +210,7 @@
"okButton": "OK"
},
"jump_to_note": {
"search_placeholder": "Suche nach einer Notiz anhand ihres Namens",
"search_placeholder": "",
"close": "Schließen",
"search_button": "Suche im Volltext: <kbd>Strg+Eingabetaste</kbd>"
},

View File

@ -211,7 +211,7 @@
"okButton": "OK"
},
"jump_to_note": {
"search_placeholder": "search for note by its name",
"search_placeholder": "Search for note by its name or type > for commands...",
"close": "Close",
"search_button": "Search in full text <kbd>Ctrl+Enter</kbd>"
},

View File

@ -211,7 +211,7 @@
"okButton": "Aceptar"
},
"jump_to_note": {
"search_placeholder": "buscar nota por su nombre",
"search_placeholder": "",
"close": "Cerrar",
"search_button": "Buscar en texto completo <kbd>Ctrl+Enter</kbd>"
},

View File

@ -210,7 +210,7 @@
"okButton": "OK"
},
"jump_to_note": {
"search_placeholder": "rechercher une note par son nom",
"search_placeholder": "",
"close": "Fermer",
"search_button": "Rechercher dans le texte intégral <kbd>Ctrl+Entrée</kbd>"
},

View File

@ -755,7 +755,7 @@
},
"jump_to_note": {
"search_button": "Caută în întregul conținut <kbd>Ctrl+Enter</kbd>",
"search_placeholder": "căutați o notiță după denumirea ei",
"search_placeholder": "",
"close": "Închide"
},
"left_pane_toggle": {

View File

@ -194,7 +194,7 @@
"okButton": "確定"
},
"jump_to_note": {
"search_placeholder": "按筆記名稱搜尋",
"search_placeholder": "",
"search_button": "全文搜尋 <kbd>Ctrl+Enter</kbd>"
},
"markdown_import": {

View File

@ -13,7 +13,7 @@ const TPL = /*html*/`<div class="jump-to-note-dialog modal mx-auto" tabindex="-1
<div class="modal-content">
<div class="modal-header">
<div class="input-group">
<input class="jump-to-note-autocomplete form-control" placeholder="${t("jump_to_note.search_placeholder", { defaultValue: "Search notes or type > for commands..." })}">
<input class="jump-to-note-autocomplete form-control" placeholder="${t("jump_to_note.search_placeholder")}">
</div>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="${t("jump_to_note.close")}"></button>
</div>