mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 15:19:01 +02:00
chore(command_palette): change placeholder
This commit is contained in:
parent
1d1a0ac4fd
commit
e341de70c0
@ -210,7 +210,7 @@
|
|||||||
"okButton": "确定"
|
"okButton": "确定"
|
||||||
},
|
},
|
||||||
"jump_to_note": {
|
"jump_to_note": {
|
||||||
"search_placeholder": "按笔记名称搜索",
|
"search_placeholder": "",
|
||||||
"close": "关闭",
|
"close": "关闭",
|
||||||
"search_button": "全文搜索 <kbd>Ctrl+回车</kbd>"
|
"search_button": "全文搜索 <kbd>Ctrl+回车</kbd>"
|
||||||
},
|
},
|
||||||
|
@ -210,7 +210,7 @@
|
|||||||
"okButton": "OK"
|
"okButton": "OK"
|
||||||
},
|
},
|
||||||
"jump_to_note": {
|
"jump_to_note": {
|
||||||
"search_placeholder": "Suche nach einer Notiz anhand ihres Namens",
|
"search_placeholder": "",
|
||||||
"close": "Schließen",
|
"close": "Schließen",
|
||||||
"search_button": "Suche im Volltext: <kbd>Strg+Eingabetaste</kbd>"
|
"search_button": "Suche im Volltext: <kbd>Strg+Eingabetaste</kbd>"
|
||||||
},
|
},
|
||||||
|
@ -211,7 +211,7 @@
|
|||||||
"okButton": "OK"
|
"okButton": "OK"
|
||||||
},
|
},
|
||||||
"jump_to_note": {
|
"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",
|
"close": "Close",
|
||||||
"search_button": "Search in full text <kbd>Ctrl+Enter</kbd>"
|
"search_button": "Search in full text <kbd>Ctrl+Enter</kbd>"
|
||||||
},
|
},
|
||||||
|
@ -211,7 +211,7 @@
|
|||||||
"okButton": "Aceptar"
|
"okButton": "Aceptar"
|
||||||
},
|
},
|
||||||
"jump_to_note": {
|
"jump_to_note": {
|
||||||
"search_placeholder": "buscar nota por su nombre",
|
"search_placeholder": "",
|
||||||
"close": "Cerrar",
|
"close": "Cerrar",
|
||||||
"search_button": "Buscar en texto completo <kbd>Ctrl+Enter</kbd>"
|
"search_button": "Buscar en texto completo <kbd>Ctrl+Enter</kbd>"
|
||||||
},
|
},
|
||||||
|
@ -210,7 +210,7 @@
|
|||||||
"okButton": "OK"
|
"okButton": "OK"
|
||||||
},
|
},
|
||||||
"jump_to_note": {
|
"jump_to_note": {
|
||||||
"search_placeholder": "rechercher une note par son nom",
|
"search_placeholder": "",
|
||||||
"close": "Fermer",
|
"close": "Fermer",
|
||||||
"search_button": "Rechercher dans le texte intégral <kbd>Ctrl+Entrée</kbd>"
|
"search_button": "Rechercher dans le texte intégral <kbd>Ctrl+Entrée</kbd>"
|
||||||
},
|
},
|
||||||
|
@ -755,7 +755,7 @@
|
|||||||
},
|
},
|
||||||
"jump_to_note": {
|
"jump_to_note": {
|
||||||
"search_button": "Caută în întregul conținut <kbd>Ctrl+Enter</kbd>",
|
"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"
|
"close": "Închide"
|
||||||
},
|
},
|
||||||
"left_pane_toggle": {
|
"left_pane_toggle": {
|
||||||
|
@ -194,7 +194,7 @@
|
|||||||
"okButton": "確定"
|
"okButton": "確定"
|
||||||
},
|
},
|
||||||
"jump_to_note": {
|
"jump_to_note": {
|
||||||
"search_placeholder": "按筆記名稱搜尋",
|
"search_placeholder": "",
|
||||||
"search_button": "全文搜尋 <kbd>Ctrl+Enter</kbd>"
|
"search_button": "全文搜尋 <kbd>Ctrl+Enter</kbd>"
|
||||||
},
|
},
|
||||||
"markdown_import": {
|
"markdown_import": {
|
||||||
|
@ -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-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<div class="input-group">
|
<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>
|
</div>
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="${t("jump_to_note.close")}"></button>
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="${t("jump_to_note.close")}"></button>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user