-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathtranslation.json
More file actions
2090 lines (2090 loc) · 110 KB
/
Copy pathtranslation.json
File metadata and controls
2090 lines (2090 loc) · 110 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"about": {
"title": "About Trilium Notes",
"homepage": "Homepage:",
"app_version": "App version:",
"db_version": "DB version:",
"sync_version": "Sync version:",
"build_date": "Build date:",
"build_revision": "Build revision:",
"data_directory": "Data directory:"
},
"toast": {
"critical-error": {
"title": "Critical error",
"message": "A critical error has occurred which prevents the client application from starting:\n\n{{message}}\n\nThis is most likely caused by a script failing in an unexpected way. Try starting the application in safe mode and addressing the issue."
},
"widget-error": {
"title": "Failed to initialize a widget",
"message-custom": "Custom widget from note with ID \"{{id}}\", titled \"{{title}}\" could not be initialized due to:\n\n{{message}}",
"message-unknown": "Unknown widget could not be initialized due to:\n\n{{message}}"
},
"bundle-error": {
"title": "Failed to load a custom script",
"message": "Script from note with ID \"{{id}}\", titled \"{{title}}\" could not be executed due to:\n\n{{message}}"
}
},
"add_link": {
"add_link": "Add link",
"help_on_links": "Help on links",
"note": "Note",
"search_note": "search for note by its name",
"link_title_mirrors": "link title mirrors the note's current title",
"link_title_arbitrary": "link title can be changed arbitrarily",
"link_title": "Link title",
"button_add_link": "Add link"
},
"branch_prefix": {
"edit_branch_prefix": "Edit branch prefix",
"help_on_tree_prefix": "Help on Tree prefix",
"prefix": "Prefix: ",
"save": "Save",
"branch_prefix_saved": "Branch prefix has been saved."
},
"bulk_actions": {
"bulk_actions": "Bulk actions",
"affected_notes": "Affected notes",
"include_descendants": "Include descendants of the selected notes",
"available_actions": "Available actions",
"chosen_actions": "Chosen actions",
"execute_bulk_actions": "Execute bulk actions",
"bulk_actions_executed": "Bulk actions have been executed successfully.",
"none_yet": "None yet... add an action by clicking one of the available ones above.",
"labels": "Labels",
"relations": "Relations",
"notes": "Notes",
"other": "Other"
},
"clone_to": {
"clone_notes_to": "Clone notes to...",
"help_on_links": "Help on links",
"notes_to_clone": "Notes to clone",
"target_parent_note": "Target parent note",
"search_for_note_by_its_name": "search for note by its name",
"cloned_note_prefix_title": "Cloned note will be shown in note tree with given prefix",
"prefix_optional": "Prefix (optional)",
"clone_to_selected_note": "Clone to selected note",
"no_path_to_clone_to": "No path to clone to.",
"note_cloned": "Note \"{{clonedTitle}}\" has been cloned into \"{{targetTitle}}\""
},
"confirm": {
"confirmation": "Confirmation",
"cancel": "Cancel",
"ok": "OK",
"are_you_sure_remove_note": "Are you sure you want to remove the note \"{{title}}\" from relation map? ",
"if_you_dont_check": "If you don't check this, the note will be only removed from the relation map.",
"also_delete_note": "Also delete the note"
},
"delete_notes": {
"delete_notes_preview": "Delete notes preview",
"close": "Close",
"delete_all_clones_description": "Delete also all clones (can be undone in recent changes)",
"erase_notes_description": "Normal (soft) deletion only marks the notes as deleted and they can be undeleted (in recent changes dialog) within a period of time. Checking this option will erase the notes immediately and it won't be possible to undelete the notes.",
"erase_notes_warning": "Erase notes permanently (can't be undone), including all clones. This will force application reload.",
"notes_to_be_deleted": "Following notes will be deleted ({{notesCount}})",
"no_note_to_delete": "No note will be deleted (only clones).",
"broken_relations_to_be_deleted": "Following relations will be broken and deleted ({{ relationCount}})",
"cancel": "Cancel",
"ok": "OK",
"deleted_relation_text": "Note {{- note}} (to be deleted) is referenced by relation {{- relation}} originating from {{- source}}."
},
"export": {
"export_note_title": "Export note",
"close": "Close",
"export_type_subtree": "This note and all of its descendants",
"format_html": "HTML - recommended as it keeps all format",
"format_html_zip": "HTML in ZIP archive - this is recommended since this preserves all the formatting.",
"format_markdown": "Markdown - this preserves most of the formatting.",
"format_opml": "OPML - outliner interchange format for text only. Formatting, images and files are not included.",
"opml_version_1": "OPML v1.0 - plain text only",
"opml_version_2": "OPML v2.0 - allows also HTML",
"export_type_single": "Only this note without its descendants",
"export": "Export",
"choose_export_type": "Choose export type first please",
"export_status": "Export status",
"export_in_progress": "Export in progress: {{progressCount}}",
"export_finished_successfully": "Export finished successfully.",
"format_pdf": "PDF - for printing or sharing purposes."
},
"help": {
"title": "Cheatsheet",
"noteNavigation": "Note navigation",
"goUpDown": "go up/down in the list of notes",
"collapseExpand": "collapse/expand node",
"notSet": "not set",
"goBackForwards": "go back / forwards in the history",
"showJumpToNoteDialog": "show <a class=\"external\" href=\"https://triliumnext.github.io/Docs/Wiki/note-navigation.html#jump-to-note\">\"Jump to\" dialog</a>",
"scrollToActiveNote": "scroll to active note",
"jumpToParentNote": "jump to parent note",
"collapseWholeTree": "collapse whole note tree",
"collapseSubTree": "collapse sub-tree",
"tabShortcuts": "Tab shortcuts",
"newTabNoteLink": "on note link opens note in a new tab",
"newTabWithActivationNoteLink": "on note link opens and activates the note in a new tab",
"onlyInDesktop": "Only in desktop (Electron build)",
"openEmptyTab": "open empty tab",
"closeActiveTab": "close active tab",
"activateNextTab": "activate next tab",
"activatePreviousTab": "activate previous tab",
"creatingNotes": "Creating notes",
"createNoteAfter": "create new note after the active note",
"createNoteInto": "create new sub-note into active note",
"editBranchPrefix": "edit <a class=\"external\" href=\"https://triliumnext.github.io/Docs/Wiki/tree-concepts.html#prefix\">prefix</a> of active note clone",
"movingCloningNotes": "Moving / cloning notes",
"moveNoteUpDown": "move note up/down in the note list",
"moveNoteUpHierarchy": "move note up in the hierarchy",
"multiSelectNote": "multi-select note above/below",
"selectAllNotes": "select all notes in the current level",
"selectNote": "select note",
"copyNotes": "copy active note (or current selection) into clipboard (used for <a class=\"external\" href=\"https://triliumnext.github.io/Docs/Wiki/cloning-notes.html#cloning-notes\">cloning</a>)",
"cutNotes": "cut current note (or current selection) into clipboard (used for moving notes)",
"pasteNotes": "paste note(s) as sub-note into active note (which is either move or clone depending on whether it was copied or cut into clipboard)",
"deleteNotes": "delete note / sub-tree",
"editingNotes": "Editing notes",
"editNoteTitle": "in tree pane will switch from tree pane into note title. Enter from note title will switch focus to text editor. <kbd>Ctrl+.</kbd> will switch back from editor to tree pane.",
"createEditLink": "create / edit external link",
"createInternalLink": "create internal link",
"followLink": "follow link under cursor",
"insertDateTime": "insert current date and time at caret position",
"jumpToTreePane": "jump away to the tree pane and scroll to active note",
"markdownAutoformat": "Markdown-like autoformatting",
"headings": "<code>##</code>, <code>###</code>, <code>####</code> etc. followed by space for headings",
"bulletList": "<code>*</code> or <code>-</code> followed by space for bullet list",
"numberedList": "<code>1.</code> or <code>1)</code> followed by space for numbered list",
"blockQuote": "start a line with <code>></code> followed by space for block quote",
"troubleshooting": "Troubleshooting",
"reloadFrontend": "reload Trilium frontend",
"showDevTools": "show developer tools",
"showSQLConsole": "show SQL console",
"other": "Other",
"quickSearch": "focus on quick search input",
"inPageSearch": "in-page search"
},
"import": {
"importIntoNote": "Import into note",
"chooseImportFile": "Choose import file",
"importDescription": "Content of the selected file(s) will be imported as child note(s) into",
"importZipRecommendation": "When importing a ZIP file, the note hierarchy will reflect the subdirectory structure within the archive.",
"options": "Options",
"safeImportTooltip": "Trilium <code>.zip</code> export files can contain executable scripts which may contain harmful behavior. Safe import will deactivate automatic execution of all imported scripts. Uncheck \"Safe import\" only if the imported archive is supposed to contain executable scripts and you completely trust the contents of the import file.",
"safeImport": "Safe import",
"explodeArchivesTooltip": "If this is checked then Trilium will read <code>.zip</code>, <code>.enex</code> and <code>.opml</code> files and create notes from files insides those archives. If unchecked, then Trilium will attach the archives themselves to the note.",
"explodeArchives": "Read contents of <code>.zip</code>, <code>.enex</code> and <code>.opml</code> archives.",
"shrinkImagesTooltip": "<p>If you check this option, Trilium will attempt to shrink the imported images by scaling and optimization which may affect the perceived image quality. If unchecked, images will be imported without changes.</p><p>This doesn't apply to <code>.zip</code> imports with metadata since it is assumed these files are already optimized.</p>",
"shrinkImages": "Shrink images",
"textImportedAsText": "Import HTML, Markdown and TXT as text notes if it's unclear from metadata",
"codeImportedAsCode": "Import recognized code files (e.g. <code>.json</code>) as code notes if it's unclear from metadata",
"replaceUnderscoresWithSpaces": "Replace underscores with spaces in imported note names",
"import": "Import",
"failed": "Import failed: {{message}}.",
"html_import_tags": {
"title": "HTML Import Tags",
"description": "Configure which HTML tags should be preserved when importing notes. Tags not in this list will be removed during import. Some tags (like 'script') are always removed for security.",
"placeholder": "Enter HTML tags, one per line",
"reset_button": "Reset to Default List"
},
"import-status": "Import status",
"in-progress": "Import in progress: {{progress}}",
"successful": "Import finished successfully."
},
"include_note": {
"dialog_title": "Include note",
"label_note": "Note",
"placeholder_search": "search for note by its name",
"box_size_prompt": "Box size of the included note:",
"box_size_small": "small (~ 10 lines)",
"box_size_medium": "medium (~ 30 lines)",
"box_size_full": "full (box shows complete text)",
"button_include": "Include note"
},
"info": {
"modalTitle": "Info message",
"closeButton": "Close",
"okButton": "OK"
},
"jump_to_note": {
"search_placeholder": "Search for note by its name or type > for commands...",
"search_button": "Search in full text"
},
"markdown_import": {
"dialog_title": "Markdown import",
"modal_body_text": "Because of browser sandbox it's not possible to directly read clipboard from JavaScript. Please paste the Markdown to import to textarea below and click on Import button",
"import_button": "Import",
"import_success": "Markdown content has been imported into the document."
},
"move_to": {
"dialog_title": "Move notes to ...",
"notes_to_move": "Notes to move",
"target_parent_note": "Target parent note",
"search_placeholder": "search for note by its name",
"move_button": "Move to selected note",
"error_no_path": "No path to move to.",
"move_success_message": "Selected notes have been moved into "
},
"note_type_chooser": {
"change_path_prompt": "Change where to create the new note:",
"search_placeholder": "search path by name (default if empty)",
"modal_title": "Choose note type",
"modal_body": "Choose note type / template of the new note:",
"templates": "Templates",
"builtin_templates": "Built-in Templates"
},
"password_not_set": {
"title": "Password is not set",
"body1": "Protected notes are encrypted using a user password, but password has not been set yet.",
"body2": "To be able to protect notes, click the button below to open the Options dialog and set your password.",
"go_to_password_options": "Go to Password options"
},
"prompt": {
"title": "Prompt",
"ok": "OK",
"defaultTitle": "Prompt"
},
"protected_session_password": {
"modal_title": "Protected session",
"help_title": "Help on Protected notes",
"close_label": "Close",
"form_label": "To proceed with requested action you need to start protected session by entering password:",
"start_button": "Start protected session"
},
"recent_changes": {
"title": "Recent changes",
"erase_notes_button": "Erase deleted notes now",
"deleted_notes_message": "Deleted notes have been erased.",
"no_changes_message": "No changes yet...",
"undelete_link": "undelete",
"confirm_undelete": "Do you want to undelete this note and its sub-notes?"
},
"revisions": {
"note_revisions": "Note Revisions",
"delete_all_revisions": "Delete all revisions of this note",
"delete_all_button": "Delete all revisions",
"help_title": "Help on Note Revisions",
"revision_last_edited": "This revision was last edited on {{date}}",
"confirm_delete_all": "Do you want to delete all revisions of this note?",
"no_revisions": "No revisions for this note yet...",
"restore_button": "Restore",
"diff_on": "Show diff",
"diff_off": "Show content",
"diff_on_hint": "Click to show note source diff",
"diff_off_hint": "Click to show note content",
"diff_not_available": "Diff isn't available.",
"confirm_restore": "Do you want to restore this revision? This will overwrite the current title and content of the note with this revision.",
"delete_button": "Delete",
"confirm_delete": "Do you want to delete this revision?",
"revisions_deleted": "Note revisions have been deleted.",
"revision_restored": "Note revision has been restored.",
"revision_deleted": "Note revision has been deleted.",
"snapshot_interval": "Note Revision Snapshot Interval: {{seconds}}s.",
"maximum_revisions": "Note Revision Snapshot Limit: {{number}}.",
"settings": "Note Revision Settings",
"download_button": "Download",
"mime": "MIME: ",
"file_size": "File size:",
"preview": "Preview:",
"preview_not_available": "Preview isn't available for this note type."
},
"sort_child_notes": {
"sort_children_by": "Sort children by...",
"sorting_criteria": "Sorting criteria",
"title": "title",
"date_created": "date created",
"date_modified": "date modified",
"sorting_direction": "Sorting direction",
"ascending": "ascending",
"descending": "descending",
"folders": "Folders",
"sort_folders_at_top": "sort folders at the top",
"natural_sort": "Natural Sort",
"sort_with_respect_to_different_character_sorting": "sort with respect to different character sorting and collation rules in different languages or regions.",
"natural_sort_language": "Natural sort language",
"the_language_code_for_natural_sort": "The language code for natural sort, e.g. \"zh-CN\" for Chinese.",
"sort": "Sort"
},
"upload_attachments": {
"upload_attachments_to_note": "Upload attachments to note",
"choose_files": "Choose files",
"files_will_be_uploaded": "Files will be uploaded as attachments into {{noteTitle}}",
"options": "Options",
"shrink_images": "Shrink images",
"upload": "Upload",
"tooltip": "If you check this option, Trilium will attempt to shrink the uploaded images by scaling and optimization which may affect the perceived image quality. If unchecked, images will be uploaded without changes."
},
"attribute_detail": {
"attr_detail_title": "Attribute Detail Title",
"close_button_title": "Cancel changes and close",
"attr_is_owned_by": "Attribute is owned by",
"attr_name_title": "Attribute name can be composed of alphanumeric characters, colon and underscore only",
"name": "Name",
"value": "Value",
"target_note_title": "Relation is a named connection between source note and target note.",
"target_note": "Target note",
"promoted_title": "Promoted attribute is displayed prominently on the note.",
"promoted": "Promoted",
"promoted_alias_title": "The name to be displayed in the promoted attributes UI.",
"promoted_alias": "Alias",
"multiplicity_title": "Multiplicity defines how many attributes of the same name can be created - at max 1 or more than 1.",
"multiplicity": "Multiplicity",
"single_value": "Single value",
"multi_value": "Multi value",
"label_type_title": "Type of the label will help Trilium to choose suitable interface to enter the label value.",
"label_type": "Type",
"text": "Text",
"number": "Number",
"boolean": "Boolean",
"date": "Date",
"date_time": "Date & Time",
"time": "Time",
"url": "URL",
"precision_title": "What number of digits after floating point should be available in the value setting interface.",
"precision": "Precision",
"digits": "digits",
"inverse_relation_title": "Optional setting to define to which relation is this one opposite. Example: Father - Son are inverse relations to each other.",
"inverse_relation": "Inverse relation",
"inheritable_title": "Inheritable attribute will be inherited to all descendants under this tree.",
"inheritable": "Inheritable",
"save_and_close": "Save & close <kbd>Ctrl+Enter</kbd>",
"delete": "Delete",
"related_notes_title": "Other notes with this label",
"more_notes": "More notes",
"label": "Label detail",
"label_definition": "Label definition detail",
"relation": "Relation detail",
"relation_definition": "Relation definition detail",
"disable_versioning": "disables auto-versioning. Useful for e.g. large, but unimportant notes - e.g. large JS libraries used for scripting",
"calendar_root": "marks note which should be used as root for day notes. Only one should be marked as such.",
"archived": "notes with this label won't be visible by default in search results (also in Jump To, Add Link dialogs etc).",
"exclude_from_export": "notes (with their sub-tree) won't be included in any note export",
"run": "defines on which events script should run. Possible values are:\n<ul>\n<li>frontendStartup - when Trilium frontend starts up (or is refreshed), but not on mobile.</li>\n<li>mobileStartup - when Trilium frontend starts up (or is refreshed), on mobile.</li>\n<li>backendStartup - when Trilium backend starts up</li>\n<li>hourly - run once an hour. You can use additional label <code>runAtHour</code> to specify at which hour.</li>\n<li>daily - run once a day</li>\n</ul>",
"run_on_instance": "Define which trilium instance should run this on. Default to all instances.",
"run_at_hour": "On which hour should this run. Should be used together with <code>#run=hourly</code>. Can be defined multiple times for more runs during the day.",
"disable_inclusion": "scripts with this label won't be included into parent script execution.",
"sorted": "keeps child notes sorted by title alphabetically",
"sort_direction": "ASC (the default) or DESC",
"sort_folders_first": "Folders (notes with children) should be sorted on top",
"top": "keep given note on top in its parent (applies only on sorted parents)",
"hide_promoted_attributes": "Hide promoted attributes on this note",
"read_only": "editor is in read only mode. Works only for text and code notes.",
"auto_read_only_disabled": "text/code notes can be set automatically into read mode when they are too large. You can disable this behavior on per-note basis by adding this label to the note",
"app_css": "marks CSS notes which are loaded into the Trilium application and can thus be used to modify Trilium's looks.",
"app_theme": "marks CSS notes which are full Trilium themes and are thus available in Trilium options.",
"app_theme_base": "set to \"next\", \"next-light\", or \"next-dark\" to use the corresponding TriliumNext theme (auto, light or dark) as the base for a custom theme, instead of the legacy one.",
"css_class": "value of this label is then added as CSS class to the node representing given note in the tree. This can be useful for advanced theming. Can be used in template notes.",
"icon_class": "value of this label is added as a CSS class to the icon on the tree which can help visually distinguish the notes in the tree. Example might be bx bx-home - icons are taken from boxicons. Can be used in template notes.",
"page_size": "number of items per page in note listing",
"custom_request_handler": "see <a href=\"javascript:\" data-help-page=\"custom-request-handler.html\">Custom request handler</a>",
"custom_resource_provider": "see <a href=\"javascript:\" data-help-page=\"custom-request-handler.html\">Custom request handler</a>",
"widget": "marks this note as a custom widget which will be added to the Trilium component tree",
"workspace": "marks this note as a workspace which allows easy hoisting",
"workspace_icon_class": "defines box icon CSS class which will be used in tab when hoisted to this note",
"workspace_tab_background_color": "CSS color used in the note tab when hoisted to this note",
"workspace_calendar_root": "Defines per-workspace calendar root",
"workspace_template": "This note will appear in the selection of available template when creating new note, but only when hoisted into a workspace containing this template",
"search_home": "new search notes will be created as children of this note",
"workspace_search_home": "new search notes will be created as children of this note when hoisted to some ancestor of this workspace note",
"inbox": "default inbox location for new notes - when you create a note using \"new note\" button in the sidebar, notes will be created as child notes in the note marked as with <code>#inbox</code> label.",
"workspace_inbox": "default inbox location for new notes when hoisted to some ancestor of this workspace note",
"sql_console_home": "default location of SQL console notes",
"bookmark_folder": "note with this label will appear in bookmarks as folder (allowing access to its children)",
"share_hidden_from_tree": "this note is hidden from left navigation tree, but still accessible with its URL",
"share_external_link": "note will act as a link to an external website in the share tree",
"share_alias": "define an alias using which the note will be available under https://your_trilium_host/share/[your_alias]",
"share_omit_default_css": "default share page CSS will be omitted. Use when you make extensive styling changes.",
"share_root": "marks note which is served on /share root.",
"share_description": "define text to be added to the HTML meta tag for description",
"share_raw": "note will be served in its raw format, without HTML wrapper",
"share_disallow_robot_indexing": "will forbid robot indexing of this note via <code>X-Robots-Tag: noindex</code> header",
"share_credentials": "require credentials to access this shared note. Value is expected to be in format 'username:password'. Don't forget to make this inheritable to apply to child-notes/images.",
"share_index": "note with this label will list all roots of shared notes",
"display_relations": "comma delimited names of relations which should be displayed. All other ones will be hidden.",
"hide_relations": "comma delimited names of relations which should be hidden. All other ones will be displayed.",
"title_template": "default title of notes created as children of this note. The value is evaluated as JavaScript string \n and thus can be enriched with dynamic content via the injected <code>now</code> and <code>parentNote</code> variables. Examples:\n \n <ul>\n <li><code>${parentNote.getLabelValue('authorName')}'s literary works</code></li>\n <li><code>Log for ${now.format('YYYY-MM-DD HH:mm:ss')}</code></li>\n </ul>\n \n See <a href=\"https://triliumnext.github.io/Docs/Wiki/default-note-title.html\">wiki with details</a>, API docs for <a href=\"https://zadam.github.io/trilium/backend_api/Note.html\">parentNote</a> and <a href=\"https://day.js.org/docs/en/display/format\">now</a> for details.",
"template": "This note will appear in the selection of available template when creating new note",
"toc": "<code>#toc</code> or <code>#toc=show</code> will force the Table of Contents to be shown, <code>#toc=hide</code> will force hiding it. If the label doesn't exist, the global setting is observed",
"color": "defines color of the note in note tree, links etc. Use any valid CSS color value like 'red' or #a13d5f",
"keyboard_shortcut": "Defines a keyboard shortcut which will immediately jump to this note. Example: 'ctrl+alt+e'. Requires frontend reload for the change to take effect.",
"keep_current_hoisting": "Opening this link won't change hoisting even if the note is not displayable in the current hoisted subtree.",
"execute_button": "Title of the button which will execute the current code note",
"execute_description": "Longer description of the current code note displayed together with the execute button",
"exclude_from_note_map": "Notes with this label will be hidden from the Note Map",
"new_notes_on_top": "New notes will be created at the top of the parent note, not on the bottom.",
"hide_highlight_widget": "Hide Highlight List widget",
"run_on_note_creation": "executes when note is created on backend. Use this relation if you want to run the script for all notes created under a specific subtree. In that case, create it on the subtree root note and make it inheritable. A new note created within the subtree (any depth) will trigger the script.",
"run_on_child_note_creation": "executes when new note is created under the note where this relation is defined",
"run_on_note_title_change": "executes when note title is changed (includes note creation as well)",
"run_on_note_content_change": "executes when note content is changed (includes note creation as well).",
"run_on_note_change": "executes when note is changed (includes note creation as well). Does not include content changes",
"run_on_note_deletion": "executes when note is being deleted",
"run_on_branch_creation": "executes when a branch is created. Branch is a link between parent note and child note and is created e.g. when cloning or moving note.",
"run_on_branch_change": "executes when a branch is updated.",
"run_on_branch_deletion": "executes when a branch is deleted. Branch is a link between parent note and child note and is deleted e.g. when moving note (old branch/link is deleted).",
"run_on_attribute_creation": "executes when new attribute is created for the note which defines this relation",
"run_on_attribute_change": " executes when the attribute is changed of a note which defines this relation. This is triggered also when the attribute is deleted",
"relation_template": "note's attributes will be inherited even without a parent-child relationship, note's content and subtree will be added to instance notes if empty. See documentation for details.",
"inherit": "note's attributes will be inherited even without a parent-child relationship. See template relation for a similar concept. See attribute inheritance in the documentation.",
"render_note": "notes of type \"render HTML note\" will be rendered using a code note (HTML or script) and it is necessary to point using this relation to which note should be rendered",
"widget_relation": "target of this relation will be executed and rendered as a widget in the sidebar",
"share_css": "CSS note which will be injected into the share page. CSS note must be in the shared sub-tree as well. Consider using 'share_hidden_from_tree' and 'share_omit_default_css' as well.",
"share_js": "JavaScript note which will be injected into the share page. JS note must be in the shared sub-tree as well. Consider using 'share_hidden_from_tree'.",
"share_template": "Embedded JavaScript note that will be used as the template for displaying the shared note. Falls back to the default template. Consider using 'share_hidden_from_tree'.",
"share_favicon": "Favicon note to be set in the shared page. Typically you want to set it to share root and make it inheritable. Favicon note must be in the shared sub-tree as well. Consider using 'share_hidden_from_tree'.",
"is_owned_by_note": "is owned by note",
"other_notes_with_name": "Other notes with {{attributeType}} name \"{{attributeName}}\"",
"and_more": "... and {{count}} more.",
"print_landscape": "When exporting to PDF, changes the orientation of the page to landscape instead of portrait.",
"print_page_size": "When exporting to PDF, changes the size of the page. Supported values: <code>A0</code>, <code>A1</code>, <code>A2</code>, <code>A3</code>, <code>A4</code>, <code>A5</code>, <code>A6</code>, <code>Legal</code>, <code>Letter</code>, <code>Tabloid</code>, <code>Ledger</code>.",
"color_type": "Color"
},
"attribute_editor": {
"help_text_body1": "To add label, just type e.g. <code>#rock</code> or if you want to add also value then e.g. <code>#year = 2020</code>",
"help_text_body2": "For relation, type <code>~author = @</code> which should bring up an autocomplete where you can look up the desired note.",
"help_text_body3": "Alternatively you can add label and relation using the <code>+</code> button on the right side.",
"save_attributes": "Save attributes <enter>",
"add_a_new_attribute": "Add a new attribute",
"add_new_label": "Add new label <kbd data-command=\"addNewLabel\"></kbd>",
"add_new_relation": "Add new relation <kbd data-command=\"addNewRelation\"></kbd>",
"add_new_label_definition": "Add new label definition",
"add_new_relation_definition": "Add new relation definition",
"placeholder": "Type the labels and relations here"
},
"abstract_bulk_action": {
"remove_this_search_action": "Remove this search action"
},
"execute_script": {
"execute_script": "Execute script",
"help_text": "You can execute simple scripts on the matched notes.",
"example_1": "For example to append a string to a note's title, use this small script:",
"example_2": "More complex example would be deleting all matched note's attributes:"
},
"add_label": {
"add_label": "Add label",
"label_name_placeholder": "label name",
"label_name_title": "Alphanumeric characters, underscore and colon are allowed characters.",
"to_value": "to value",
"new_value_placeholder": "new value",
"help_text": "On all matched notes:",
"help_text_item1": "create given label if note doesn't have one yet",
"help_text_item2": "or change value of the existing label",
"help_text_note": "You can also call this method without value, in such case label will be assigned to the note without value."
},
"delete_label": {
"delete_label": "Delete label",
"label_name_placeholder": "label name",
"label_name_title": "Alphanumeric characters, underscore and colon are allowed characters."
},
"rename_label": {
"rename_label": "Rename label",
"rename_label_from": "Rename label from",
"old_name_placeholder": "old name",
"to": "To",
"new_name_placeholder": "new name",
"name_title": "Alphanumeric characters, underscore and colon are allowed characters."
},
"update_label_value": {
"update_label_value": "Update label value",
"label_name_placeholder": "label name",
"label_name_title": "Alphanumeric characters, underscore and colon are allowed characters.",
"to_value": "to value",
"new_value_placeholder": "new value",
"help_text": "On all matched notes, change value of the existing label.",
"help_text_note": "You can also call this method without value, in such case label will be assigned to the note without value."
},
"delete_note": {
"delete_note": "Delete note",
"delete_matched_notes": "Delete matched notes",
"delete_matched_notes_description": "This will delete matched notes.",
"undelete_notes_instruction": "After the deletion, it's possible to undelete them from Recent Changes dialog.",
"erase_notes_instruction": "To erase notes permanently, you can go after the deletion to the Option -> Other and click the \"Erase deleted notes now\" button."
},
"delete_revisions": {
"delete_note_revisions": "Delete note revisions",
"all_past_note_revisions": "All past note revisions of matched notes will be deleted. Note itself will be fully preserved. In other terms, note's history will be removed."
},
"move_note": {
"move_note": "Move note",
"to": "to",
"target_parent_note": "target parent note",
"on_all_matched_notes": "On all matched notes",
"move_note_new_parent": "move note to the new parent if note has only one parent (i.e. the old branch is removed and new branch into the new parent is created)",
"clone_note_new_parent": "clone note to the new parent if note has multiple clones/branches (it's not clear which branch should be removed)",
"nothing_will_happen": "nothing will happen if note cannot be moved to the target note (i.e. this would create a tree cycle)"
},
"rename_note": {
"rename_note": "Rename note",
"rename_note_title_to": "Rename note title to",
"new_note_title": "new note title",
"click_help_icon": "Click help icon on the right to see all the options",
"evaluated_as_js_string": "The given value is evaluated as JavaScript string and thus can be enriched with dynamic content via the injected <code>note</code> variable (note being renamed). Examples:",
"example_note": "<code>Note</code> - all matched notes are renamed to 'Note'",
"example_new_title": "<code>NEW: ${note.title}</code> - matched notes titles are prefixed with 'NEW: '",
"example_date_prefix": "<code>${note.dateCreatedObj.format('MM-DD:')}: ${note.title}</code> - matched notes are prefixed with note's creation month-date",
"api_docs": "See API docs for <a href='https://zadam.github.io/trilium/backend_api/Note.html'>note</a> and its <a href='https://day.js.org/docs/en/display/format'>dateCreatedObj / utcDateCreatedObj properties</a> for details."
},
"add_relation": {
"add_relation": "Add relation",
"relation_name": "relation name",
"allowed_characters": "Alphanumeric characters, underscore and colon are allowed characters.",
"to": "to",
"target_note": "target note",
"create_relation_on_all_matched_notes": "On all matched notes create given relation."
},
"delete_relation": {
"delete_relation": "Delete relation",
"relation_name": "relation name",
"allowed_characters": "Alphanumeric characters, underscore and colon are allowed characters."
},
"rename_relation": {
"rename_relation": "Rename relation",
"rename_relation_from": "Rename relation from",
"old_name": "old name",
"to": "To",
"new_name": "new name",
"allowed_characters": "Alphanumeric characters, underscore and colon are allowed characters."
},
"update_relation_target": {
"update_relation": "Update relation",
"relation_name": "relation name",
"allowed_characters": "Alphanumeric characters, underscore and colon are allowed characters.",
"to": "to",
"target_note": "target note",
"on_all_matched_notes": "On all matched notes",
"change_target_note": "change target note of the existing relation",
"update_relation_target": "Update relation target"
},
"attachments_actions": {
"open_externally": "Open externally",
"open_externally_title": "File will be open in an external application and watched for changes. You'll then be able to upload the modified version back to Trilium.",
"open_custom": "Open custom",
"open_custom_title": "File will be open in an external application and watched for changes. You'll then be able to upload the modified version back to Trilium.",
"download": "Download",
"rename_attachment": "Rename attachment",
"upload_new_revision": "Upload new revision",
"copy_link_to_clipboard": "Copy link to clipboard",
"convert_attachment_into_note": "Convert attachment into note",
"delete_attachment": "Delete attachment",
"upload_success": "New attachment revision has been uploaded.",
"upload_failed": "Upload of a new attachment revision failed.",
"open_externally_detail_page": "Opening attachment externally is available only from the detail page, please first click on the attachment detail first and repeat the action.",
"open_custom_client_only": "Custom opening of attachments can only be done from the desktop client.",
"delete_confirm": "Are you sure you want to delete attachment '{{title}}'?",
"delete_success": "Attachment '{{title}}' has been deleted.",
"convert_confirm": "Are you sure you want to convert attachment '{{title}}' into a separate note?",
"convert_success": "Attachment '{{title}}' has been converted to note.",
"enter_new_name": "Please enter new attachment's name"
},
"calendar": {
"mon": "Mon",
"tue": "Tue",
"wed": "Wed",
"thu": "Thu",
"fri": "Fri",
"sat": "Sat",
"sun": "Sun",
"cannot_find_day_note": "Cannot find day note",
"cannot_find_week_note": "Cannot find week note",
"january": "January",
"february": "February",
"march": "March",
"april": "April",
"may": "May",
"june": "June",
"july": "July",
"august": "August",
"september": "September",
"october": "October",
"november": "November",
"december": "December",
"week": "Week",
"week_previous": "Previous week",
"week_next": "Next week",
"month": "Month",
"month_previous": "Previous month",
"month_next": "Next month",
"year": "Year",
"year_previous": "Previous year",
"year_next": "Next year",
"list": "List",
"today": "Today"
},
"close_pane_button": {
"close_this_pane": "Close this pane"
},
"create_pane_button": {
"create_new_split": "Create new split"
},
"edit_button": {
"edit_this_note": "Edit this note"
},
"show_toc_widget_button": {
"show_toc": "Show Table of Contents"
},
"show_highlights_list_widget_button": {
"show_highlights_list": "Show Highlights List"
},
"global_menu": {
"menu": "Menu",
"options": "Options",
"open_new_window": "Open New Window",
"switch_to_mobile_version": "Switch to Mobile Version",
"switch_to_desktop_version": "Switch to Desktop Version",
"zoom": "Zoom",
"toggle_fullscreen": "Toggle Fullscreen",
"zoom_out": "Zoom Out",
"reset_zoom_level": "Reset Zoom Level",
"zoom_in": "Zoom In",
"configure_launchbar": "Configure Launchbar",
"show_shared_notes_subtree": "Show Shared Notes Subtree",
"advanced": "Advanced",
"open_dev_tools": "Open Dev Tools",
"open_sql_console": "Open SQL Console",
"open_sql_console_history": "Open SQL Console History",
"open_search_history": "Open Search History",
"show_backend_log": "Show Backend Log",
"reload_hint": "Reload can help with some visual glitches without restarting the whole app.",
"reload_frontend": "Reload Frontend",
"show_hidden_subtree": "Show Hidden Subtree",
"show_help": "Show Help",
"about": "About Trilium Notes",
"logout": "Logout",
"show-cheatsheet": "Show Cheatsheet",
"toggle-zen-mode": "Zen Mode",
"new-version-available": "New Update Available",
"download-update": "Get Version {{latestVersion}}"
},
"zen_mode": {
"button_exit": "Exit Zen Mode"
},
"sync_status": {
"unknown": "<p>Sync status will be known once the next sync attempt starts.</p><p>Click to trigger sync now.</p>",
"connected_with_changes": "<p>Connected to the sync server. <br>There are some outstanding changes yet to be synced.</p><p>Click to trigger sync.</p>",
"connected_no_changes": "<p>Connected to the sync server.<br>All changes have been already synced.</p><p>Click to trigger sync.</p>",
"disconnected_with_changes": "<p>Establishing the connection to the sync server was unsuccessful.<br>There are some outstanding changes yet to be synced.</p><p>Click to trigger sync.</p>",
"disconnected_no_changes": "<p>Establishing the connection to the sync server was unsuccessful.<br>All known changes have been synced.</p><p>Click to trigger sync.</p>",
"in_progress": "Sync with the server is in progress."
},
"left_pane_toggle": {
"show_panel": "Show panel",
"hide_panel": "Hide panel"
},
"move_pane_button": {
"move_left": "Move left",
"move_right": "Move right"
},
"note_actions": {
"convert_into_attachment": "Convert into attachment",
"re_render_note": "Re-render note",
"search_in_note": "Search in note",
"note_source": "Note source",
"note_attachments": "Note attachments",
"open_note_externally": "Open note externally",
"open_note_externally_title": "File will be open in an external application and watched for changes. You'll then be able to upload the modified version back to Trilium.",
"open_note_custom": "Open note custom",
"open_note_on_server": "Open note on server",
"import_files": "Import files",
"export_note": "Export note",
"delete_note": "Delete note",
"print_note": "Print note",
"save_revision": "Save revision",
"convert_into_attachment_failed": "Converting note '{{title}}' failed.",
"convert_into_attachment_successful": "Note '{{title}}' has been converted to attachment.",
"convert_into_attachment_prompt": "Are you sure you want to convert note '{{title}}' into an attachment of the parent note?",
"print_pdf": "Export as PDF..."
},
"onclick_button": {
"no_click_handler": "Button widget '{{componentId}}' has no defined click handler"
},
"protected_session_status": {
"active": "Protected session is active. Click to leave protected session.",
"inactive": "Click to enter protected session"
},
"revisions_button": {
"note_revisions": "Note Revisions"
},
"update_available": {
"update_available": "Update available"
},
"note_launcher": {
"this_launcher_doesnt_define_target_note": "This launcher doesn't define target note."
},
"code_buttons": {
"execute_button_title": "Execute script",
"trilium_api_docs_button_title": "Open Trilium API docs",
"save_to_note_button_title": "Save to note",
"opening_api_docs_message": "Opening API docs...",
"sql_console_saved_message": "SQL Console note has been saved into {{note_path}}"
},
"copy_image_reference_button": {
"button_title": "Copy image reference to the clipboard, can be pasted into a text note."
},
"hide_floating_buttons_button": {
"button_title": "Hide buttons"
},
"show_floating_buttons_button": {
"button_title": "Show buttons"
},
"svg_export_button": {
"button_title": "Export diagram as SVG"
},
"relation_map_buttons": {
"create_child_note_title": "Create new child note and add it into this relation map",
"reset_pan_zoom_title": "Reset pan & zoom to initial coordinates and magnification",
"zoom_in_title": "Zoom In",
"zoom_out_title": "Zoom Out"
},
"zpetne_odkazy": {
"backlink": "{{count}} Backlink",
"backlinks": "{{count}} Backlinks",
"relation": "relation"
},
"mobile_detail_menu": {
"insert_child_note": "Insert child note",
"delete_this_note": "Delete this note",
"note_revisions": "Note revisions",
"error_cannot_get_branch_id": "Cannot get branchId for notePath '{{notePath}}'",
"error_unrecognized_command": "Unrecognized command {{command}}"
},
"note_icon": {
"change_note_icon": "Change note icon",
"category": "Category:",
"search": "Search:",
"reset-default": "Reset to default icon"
},
"basic_properties": {
"note_type": "Note type",
"editable": "Editable",
"basic_properties": "Basic Properties",
"language": "Language",
"configure_code_notes": "Configure code notes..."
},
"book_properties": {
"view_type": "View type",
"grid": "Grid",
"list": "List",
"collapse_all_notes": "Collapse all notes",
"expand_all_children": "Expand all children",
"collapse": "Collapse",
"expand": "Expand",
"book_properties": "Collection Properties",
"invalid_view_type": "Invalid view type '{{type}}'",
"calendar": "Calendar",
"table": "Table",
"geo-map": "Geo Map",
"board": "Board",
"presentation": "Presentation",
"include_archived_notes": "Show archived notes"
},
"edited_notes": {
"no_edited_notes_found": "No edited notes on this day yet...",
"title": "Edited Notes",
"deleted": "(deleted)"
},
"file_properties": {
"note_id": "Note ID",
"original_file_name": "Original file name",
"file_type": "File type",
"file_size": "File size",
"download": "Download",
"open": "Open",
"upload_new_revision": "Upload new revision",
"upload_success": "New file revision has been uploaded.",
"upload_failed": "Upload of a new file revision failed.",
"title": "File"
},
"image_properties": {
"original_file_name": "Original file name",
"file_type": "File type",
"file_size": "File size",
"download": "Download",
"open": "Open",
"copy_reference_to_clipboard": "Copy reference to clipboard",
"upload_new_revision": "Upload new revision",
"upload_success": "New image revision has been uploaded.",
"upload_failed": "Upload of a new image revision failed: {{message}}",
"title": "Image"
},
"inherited_attribute_list": {
"title": "Inherited Attributes",
"no_inherited_attributes": "No inherited attributes."
},
"note_info_widget": {
"note_id": "Note ID",
"created": "Created",
"modified": "Modified",
"type": "Type",
"note_size": "Note size",
"note_size_info": "Note size provides rough estimate of storage requirements for this note. It takes into account note's content and content of its note revisions.",
"calculate": "calculate",
"subtree_size": "(subtree size: {{size}} in {{count}} notes)",
"title": "Note Info"
},
"note_map": {
"open_full": "Expand to full",
"collapse": "Collapse to normal size",
"title": "Note Map",
"fix-nodes": "Fix nodes",
"link-distance": "Link distance"
},
"note_paths": {
"title": "Note Paths",
"clone_button": "Clone note to new location...",
"intro_placed": "This note is placed into the following paths:",
"intro_not_placed": "This note is not yet placed into the note tree.",
"outside_hoisted": "This path is outside of hoisted note and you would have to unhoist.",
"archived": "Archived",
"search": "Search"
},
"note_properties": {
"this_note_was_originally_taken_from": "This note was originally taken from:",
"info": "Info"
},
"owned_attribute_list": {
"owned_attributes": "Owned Attributes"
},
"promoted_attributes": {
"promoted_attributes": "Promoted Attributes",
"unset-field-placeholder": "not set",
"url_placeholder": "http://website...",
"open_external_link": "Open external link",
"unknown_label_type": "Unknown label type '{{type}}'",
"unknown_attribute_type": "Unknown attribute type '{{type}}'",
"add_new_attribute": "Add new attribute",
"remove_this_attribute": "Remove this attribute",
"remove_color": "Remove the color label"
},
"script_executor": {
"query": "Query",
"script": "Script",
"execute_query": "Execute Query",
"execute_script": "Execute Script"
},
"search_definition": {
"add_search_option": "Add search option:",
"search_string": "search string",
"search_script": "search script",
"ancestor": "ancestor",
"fast_search": "fast search",
"fast_search_description": "Fast search option disables full text search of note contents which might speed up searching in large databases.",
"include_archived": "include archived",
"include_archived_notes_description": "Archived notes are by default excluded from search results, with this option they will be included.",
"order_by": "order by",
"limit": "limit",
"limit_description": "Limit number of results",
"debug": "debug",
"debug_description": "Debug will print extra debugging information into the console to aid in debugging complex queries",
"action": "action",
"search_button": "Search",
"search_execute": "Search & Execute actions",
"save_to_note": "Save to note",
"search_parameters": "Search Parameters",
"unknown_search_option": "Unknown search option {{searchOptionName}}",
"search_note_saved": "Search note has been saved into {{- notePathTitle}}",
"actions_executed": "Actions have been executed."
},
"similar_notes": {
"title": "Similar Notes",
"no_similar_notes_found": "No similar notes found."
},
"abstract_search_option": {
"remove_this_search_option": "Remove this search option",
"failed_rendering": "Failed rendering search option: {{dto}} with error: {{error}} {{stack}}"
},
"ancestor": {
"label": "Ancestor",
"placeholder": "search for note by its name",
"depth_label": "depth",
"depth_doesnt_matter": "doesn't matter",
"depth_eq": "is exactly {{count}}",
"direct_children": "direct children",
"depth_gt": "is greater than {{count}}",
"depth_lt": "is less than {{count}}"
},
"debug": {
"debug": "Debug",
"debug_info": "Debug will print extra debugging information into the console to aid in debugging complex queries.",
"access_info": "To access the debug information, execute query and click on \"Show backend log\" in top left corner."
},
"fast_search": {
"fast_search": "Fast search",
"description": "Fast search option disables full text search of note contents which might speed up searching in large databases."
},
"include_archived_notes": {
"include_archived_notes": "Include archived notes"
},
"limit": {
"limit": "Limit",
"take_first_x_results": "Take only first X specified results."
},
"order_by": {
"order_by": "Order by",
"relevancy": "Relevancy (default)",
"title": "Title",
"date_created": "Date created",
"date_modified": "Date of last modification",
"content_size": "Note content size",
"content_and_attachments_size": "Note content size including attachments",
"content_and_attachments_and_revisions_size": "Note content size including attachments and revisions",
"revision_count": "Number of revisions",
"children_count": "Number of children notes",
"parent_count": "Number of clones",
"owned_label_count": "Number of labels",
"owned_relation_count": "Number of relations",
"target_relation_count": "Number of relations targeting the note",
"random": "Random order",
"asc": "Ascending (default)",
"desc": "Descending"
},
"search_script": {
"title": "Search script:",
"placeholder": "search for note by its name",
"description1": "Search script allows to define search results by running a script. This provides maximal flexibility when standard search doesn't suffice.",
"description2": "Search script must be of type \"code\" and subtype \"JavaScript backend\". The script needs to return an array of noteIds or notes.",
"example_title": "See this example:",
"example_code": "// 1. prefiltering using standard search\nconst candidateNotes = api.searchForNotes(\"#journal\"); \n\n// 2. applying custom search criteria\nconst matchedNotes = candidateNotes\n .filter(note => note.title.match(/[0-9]{1,2}\\. ?[0-9]{1,2}\\. ?[0-9]{4}/));\n\nreturn matchedNotes;",
"note": "Note that search script and search string can't be combined with each other."
},
"search_string": {
"title_column": "Search string:",
"placeholder": "fulltext keywords, #tag = value...",
"search_syntax": "Search syntax",
"also_see": "also see",
"complete_help": "complete help on search syntax",
"full_text_search": "Just enter any text for full text search",
"label_abc": "returns notes with label abc",
"label_year": "matches notes with label year having value 2019",
"label_rock_pop": "matches notes which have both rock and pop labels",
"label_rock_or_pop": "only one of the labels must be present",
"label_year_comparison": "numerical comparison (also >, >=, <).",
"label_date_created": "notes created in the last month",
"error": "Search error: {{error}}",
"search_prefix": "Search:"
},
"attachment_detail": {
"open_help_page": "Open help page on attachments",
"owning_note": "Owning note: ",
"you_can_also_open": ", you can also open the ",
"list_of_all_attachments": "List of all attachments",
"attachment_deleted": "This attachment has been deleted."
},
"attachment_list": {
"open_help_page": "Open help page on attachments",
"owning_note": "Owning note: ",
"upload_attachments": "Upload attachments",
"no_attachments": "This note has no attachments."
},
"book": {
"no_children_help": "This collection doesn't have any child notes so there's nothing to display. See <a href=\"https://triliumnext.github.io/Docs/Wiki/book-note.html\">wiki</a> for details.",
"drag_locked_title": "Locked for editing",
"drag_locked_message": "Dragging not allowed since the collection is locked for editing."
},
"editable_code": {
"placeholder": "Type the content of your code note here..."
},
"editable_text": {
"placeholder": "Type the content of your note here..."
},
"empty": {
"open_note_instruction": "Open a note by typing the note's title into the input below or choose a note in the tree.",
"search_placeholder": "search for a note by its name",
"enter_workspace": "Enter workspace {{title}}"
},
"file": {
"file_preview_not_available": "File preview is not available for this file format.",
"too_big": "The preview only shows the first {{maxNumChars}} characters of the file for performance reasons. Download the file and open it externally to be able to see the entire content."
},
"protected_session": {
"enter_password_instruction": "Showing protected note requires entering your password:",
"start_session_button": "Start protected session <kbd>enter</kbd>",
"started": "Protected session has been started.",
"wrong_password": "Wrong password.",
"protecting-finished-successfully": "Protecting finished successfully.",
"unprotecting-finished-successfully": "Unprotecting finished successfully.",