forked from Nriver/trilium-translation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
translations_cn.py
1597 lines (1595 loc) · 119 KB
/
translations_cn.py
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
translation_dict = {
# translate everything below
'translator': '翻译者',
'Trilium Notes': 'Trilium Notes',
'Trilium requires JavaScript to be enabled.': 'Trilium需要启用JavaScript.',
'Login': '登录',
'Trilium login': 'Trilium 登录',
'Username': '用户名',
'Password': '密码',
'Remember me': '记住我',
'Username and / or password are incorrect. Please try again.': '用户名或密码错误, 请重试.',
'Setup': '设置',
'Trilium Notes setup': 'Trilium Notes设置',
'Next': '下一个',
'New document': '新文件',
'Repeat password': '重复输入密码',
'Theme': '主题',
'white': '白色',
'light': '明亮',
'dark': '黑暗',
'black': '黑色',
'Theme can be later changed in Options -> Appearance.': '以后可以在 选项 -> 外观 中修改主题.',
'Back': '后退',
'Finish setup': '完成设置',
'Document initialization in progress': '正在进行文件初始化',
'You will be shortly redirected to the application.': '您将很快被重定向到该应用程序.',
'Sync from Desktop': '从桌面同步',
'This setup needs to be initiated from the desktop instance:': '此设置需要从桌面实例启动:',
'please open your desktop instance of Trilium Notes': '请打开您的Trilium Notes桌面应用',
'click on Options button in the top right': '单击右上角的"选项"按钮',
'click on Sync tab': '单击"同步"选项卡',
'configure server instance address to the: ': '服务器实例地址:',
' and click save.': '然后点击保存.',
'click on "Test sync" button': '点击"测试同步"按钮',
"once you've done all this, click ": '完成所有这些操作后,请点击',
'here': '这里',
'Sync from Server': '从服务器同步',
'Please enter Trilium server address and credentials below. This will download the whole Trilium document from server and setup sync to it. Depending on the document size and your connection speed, this may take a while.': '请在下面输入Trilium服务器地址和登录信息.',
'Trilium server address': 'Trilium服务器地址',
'Proxy server (optional)': '代理服务器(可选)',
'Note:': '备注:',
' If you leave proxy setting blank, system proxy will be used (applies to desktop/electron build only)': '代理设置留空则使用系统代理(仅桌面客户端有效)',
'Sync in progress': '正在进行同步',
"Sync has been correctly set up. It will take some time for the initial sync to finish. Once it's done, you'll be redirected to the login page.": '同步已正确设置. 同步数据需要一些时间. 同步完成后会自动跳转到登录页.',
'N/A': '不适用',
"I'm a new user, and I want to create new Trilium document for my notes": '我是新用户, 我想创建一个新的Trilium文档用来保存笔记',
'I have desktop instance already, and I want to set up sync with it': '我已经有一个Trilium桌面应用, 我想和它同步数据',
'I have server instance already, and I want to set up sync with it': '我已经有一个Trilium服务端, 我想和它同步数据',
"You're almost done with the setup. The last thing is to choose username and password using which you'll login to the application.": '设置快完成了. 最后你需要设置登录的用户名和密码.',
'This password is also used for generating encryption key which encrypts protected notes.': '这个密码也会被用于生成被保护笔记的密钥.',
'Choose alphanumeric username': '用户名可以使用数字或字母',
'Outstanding sync items': '未完成的同步项',
'Add "${params.misspelledWord}" to dictionary': '将 "${params.misspelledWord}" 加入字典',
'Cut': '剪切',
'Copy': '复制',
'Copy link': '复制链接',
'Paste': '粘贴',
'Paste as plain text': '粘贴为纯文本',
'Search for "${shortenedSelection}" with DuckDuckGo': '用DuckDuckGo搜索 "${shortenedSelection}"',
'About Trilium Notes': '关于 Trilium Notes',
'Homepage:': '项目主页',
'App version:': '应用版本:',
'DB version:': '数据库版本:',
'Sync version:': '同步版本:',
'Build date:': '编译日期:',
'Build revision:': '编译版本:',
'Data directory:': '数据目录:',
'Add link': '添加链接',
'Note': '笔记',
'Link title': '链接标题',
'enter': '回车',
'Help on links': '链接帮助',
'search for note by its name': '根据名称搜索笔记',
'Backend Log': '后台日志',
'Refresh': '刷新',
'Edit branch prefix': '编辑分支前缀',
'Prefix': '前缀',
'Save': '保存',
'Help on Tree prefix': '有关树前缀的帮助',
'Clone notes to ...': '克隆笔记到...',
'Notes to clone': '要克隆的笔记',
'Target parent note': '目标父级笔记',
'Prefix (optional)': '前缀(可选)',
'Clone to selected note ': '克隆到选定的笔记',
'Cloned note will be shown in note tree with given prefix': '克隆的笔记将显示在带有给定前缀的笔记树中',
'Confirmation': '确认',
'Cancel': '取消',
'OK': '好的',
'Delete notes preview': '删除笔记预览',
'Following notes will be deleted (': '以下笔记将被删除 (',
'Following relations will be broken and deleted (': '以下关系将被破坏并删除 (',
'delete also all clones': '同时删除所有克隆',
'Export note "': '导出笔记 "',
'this note and all of its descendants': '此笔记及其所有子笔记',
'HTML in ZIP archive - this is recommended since this preserves all the formatting.': 'ZIP压缩的HTML - 推荐, 因为会保留所有格式.',
'OPML v1.0 - plain text only': 'OPML v1.0 - 仅纯文本',
'OMPL v2.0 - allows also HTML': 'OMPL v2.0 - 还允许HTML',
'only this note without its descendants': '只包含这个笔记, 不包含子笔记',
'HTML - this is recommended since this preserves all the formatting.': 'HTML - 推荐, 可以保留所有格式.',
'Export': '导出',
'this preserves most of the formatting.': '会保留大部分格式.',
'outliner interchange format for text only. Formatting, images and files are not included.': '用来导出文本大纲, 其它的格式信息, 图片数据和文件都不会包含在内.',
'Help (full documentation is available ': '帮助 (完整',
'online': '在线文档',
'Note navigation': '笔记导航',
'UP': '上',
'DOWN': '下',
' - go up/down in the list of notes': '-在笔记列表中向上/向下',
'LEFT': '左',
'RIGHT': '右',
' - collapse/expand node': ' - 折叠/展开节点',
' - go back / forwards in the history': ' - 历史浏览记录后退/前进',
' - show ': '- 显示',
'"Jump to" dialog': '"跳转到"对话框',
' - scroll to active note': ' - 滚动到当前笔记',
'Backspace': '退格键',
' - jump to parent note': ' - 跳转到父级笔记',
' - collapse whole note tree': ' - 折叠整个笔记树',
' - collapse sub-tree': ' - 折叠子树',
'Tab shortcuts': '标签快捷方式',
'CTRL+click': 'CTRL+鼠标左键',
' (or middle mouse click) on note link opens note in a new tab': '(或单击鼠标中键)在新标签页中打开笔记链接',
' open empty tab': '打开空白标签',
' close active tab': '关闭活动标签',
' activate next tab': '激活下一个标签',
' activate previous tab': '激活上一个标签',
'Creating notes': '创建笔记',
' - create new note after the active note': '- 在当前笔记后创建新笔记',
' - create new sub-note into active note': '-在当前笔记中创建新的子笔记',
'Moving / cloning notes': '移动/克隆笔记',
' - move note up/down in the note list': ' - 在笔记列表中向上/向下移动笔记',
' - move note up in the hierarchy': ' - 在层次结构中向上移动笔记',
' - multi-select note above/below': ' - 多选上方/下方笔记',
' - select all notes in the current level': ' - 选择当前级别的所有笔记',
'Shift+click': 'Shift+鼠标左键',
' - select note': ' - 选择笔记',
' - copy active note (or current selection) into clipboard (used for ': ' - 将活动笔记(或当前选择)复制到剪贴板(用于 ',
'cloning': '克隆',
' - cut current (or current selection) note into clipboard (used for moving notes)': ' - 将当前(或当前选择)笔记剪切到剪贴板中(用于移动笔记)',
' - 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)': ' - 将笔记作为子笔记粘贴到活动笔记中(可以是移动还是克隆, 具体取决于它是被复制还是剪切到剪贴板中)',
' - delete note / sub-tree': ' - 删除笔记/子树',
'Editing notes': '编辑笔记',
' will switch back from editor to tree pane.': '将从编辑器切换回树状窗格.',
'Ctrl+K': 'Ctrl+K',
' - create / edit external link': ' - 创建/编辑外部链接',
' - create internal link': ' - 创建内部链接',
' - insert current date and time at caret position': ' - 在光标位置插入当前日期和时间',
' - jump away to the tree pane and scroll to active note': ' - 跳到树状窗格并滚动到活动笔记',
'Markdown-like autoformatting': '像Markdown一样的自动格式化',
' etc. followed by space for headings': '等, 然后加上标题空间',
' or ': '或者',
' followed by space for bullet list': '后面接着项目符号列表的空位',
' followed by space for numbered list': '后面接着编号列表的空位',
'start a line with ': '行首',
' followed by space for block quote': '后面接着引用块的空位',
'Troubleshooting': '故障排除',
' - reload Trilium frontend': ' - 重新加载Trilium前端',
' - show developer tools': ' - 显示开发人员工具',
' - show SQL console': ' - 显示SQL控制台',
'Other': '其他',
' - Zen mode - display only note editor, everything else is hidden': ' -禅宗模式- 仅显示笔记编辑器, 其他所有内容均被隐藏',
' - focus on quick search input': ' - 定位到快速搜索',
' - in page search': ' - 页内搜索',
'edit <a class="external" href="https://github.com/zadam/trilium/wiki/Tree concepts#prefix">prefix</a> of active note clone': '编辑活跃笔记的 <a class="external" href="https://github.com/zadam/trilium/wiki/Tree concepts#prefix">前缀</a>',
'Import into note': '导入到笔记',
'Choose import file': '选择导入文件',
'Content of the file will be imported as child note(s) into ': '文件内容将作为子笔记导入',
'Options:': '选项:',
'Options': '选项',
'Safe import': '安全导入',
'Read contents of <code>.zip</code>, <code>.enex</code> and <code>.opml</code> archives.': '读取 <code>.zip</code>, <code>.enex</code> 和 <code>.opml</code> 文件的内容.',
'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.': '如果您选中此选项, Trilium将尝试通过缩放和优化来压缩导入的图像, 这可能会影响您看到的图像质量.',
"This doesn't apply to ": '这不适用于',
' imports with metadata since it is assumed these files are already optimized.': '假定这些文件已经过优化, 使用元数据导入.',
'Shrink images': '压缩图像',
"Import HTML, Markdown and TXT as text notes if it's unclear from metadata": '如果无法从笔记的元数据识别类型, 则将HTML, Markdown 和 TXT导入为文本笔记',
"Import recognized code files (e.g. <code>.json</code>) as code notes if it's unclear from metadata": '如果无法从笔记的元数据识别类型, 则将导入可识别的代码文件(例如 <code>.json</code>) 为代码笔记',
'Import': '导入',
'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 tar archive is supposed to contain executable scripts and you completely trust the contents of the import file.': 'Trilium <code> .zip </ code>导出文件可以包含可执行脚本, 这些脚本可能包含有害行为. 安全导入会取消所有导入的脚本的执行. 只有在您完全确认脚本安全的情况下取消勾选 "安全导入".',
'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.': '如果选中此选项, 则Trilium将读取<code> .zip </ code>, <code> .enex </ code>和<code> .opml </ code>文件, 并从这些存档中的文件创建笔记.',
"<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>": '<p>如果选中此选项, 则Trilium将尝试通过缩放和优化来压缩导入的图像, 这可能会影响您看到的图像质量.',
'Replace underscores with spaces in imported note names': '将笔记名称中的下划线替换为空格',
'Include note': '包含笔记',
'Include note ': '包含笔记',
'Info message': '笔记信息',
'Jump to Note': '跳转到笔记',
'Jump to note': '跳转到笔记',
'Search in full text ': '全文搜索',
'Ctrl+Enter': 'Ctrl+回车',
'Link map': '链接地图',
'max notes:': '最多笔记:',
'Max number of displayed notes': '最大显示笔记数',
'Help on Link map': '链接地图帮助文档',
'Markdown import': '导入Markdown',
"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": '由于使用浏览器沙箱, 因此无法直接从JavaScript读取剪贴板.',
'Import ': '导入',
'Move notes to ...': '将笔记移至...',
'Notes to move': '要移动的笔记',
'Move to selected note ': '移至所选笔记',
'Note info': '笔记信息',
'Note ID': '笔记ID',
'Date created': '创建日期',
'Date modified': '修改日期',
'Type': '类型',
'MIME': 'MIME',
'Note revisions': '笔记修改历史',
'Note Revisions': '笔记修改历史',
'Delete all revisions': '删除所有历史',
'Dropdown trigger': '下拉触发',
'Delete all revisions of this note': '删除此笔记的所有历史',
'Help on Note revisions': '有关笔记历史的帮助',
'Note source': '笔记源代码',
'Appearance': '外观',
'Keyboard shortcuts': '快捷键',
'Code Notes': '代码笔记',
# 'Username & password': '用户和密码',
'Sync': '同步',
'Advanced': '高级',
'Prompt': '提示',
'OK ': '好的',
'To proceed with requested action you need to start protected session by entering password:': '输入密码进入保护会话以继续',
'Start protected session ': '开始受保护的会话',
'Help on Protected notes': '保护会话帮助文档',
'Sort children by ...': '根据...排列子笔记',
'Sorting criteria': '排序标准',
'Sorting direction': '排列顺序',
'Sort ': '排序',
'title': '标题',
'date created': '创建日期',
'date modified': '修改日期',
'ascending': '升序',
'descending': '降序',
'No link to add.': '缺少要添加的链接.',
'`Note "${clonedNote.title}" has been cloned into ${targetNote.title}`': '`笔记 "${clonedNote.title}" 已被克隆至 ${targetNote.title}`',
'No path to clone to.': '缺少要克隆到的路径.',
'Are you sure you want to remove the note "${title}" from relation map?': '你确定要从关系图中删除笔记"${title}"吗?',
"If you don't check this, note will be only removed from relation map, but will stay as a note.": '如果你不勾选这个, 只会从关系图中删除笔记的引用, 但保留笔记本身.',
'Also delete note': '连笔记一起删除',
'(to be deleted) is referenced by relation <code>${attr.name}</code> originating from': '(将被删除的)被一个关系引用<code>${attr.name}</code>, 来自笔记',
'Force full sync': '强制完全同步',
'Fill entity changes records': '填充变化记录',
'Consistency checks': '一致性检查',
'Find and fix consistency issues': '查找并解决一致性问题',
'Anonymize database': '匿名数据库',
'Save anonymized database': '保存匿名数据库',
'Backup database': '备份数据库',
'Trilium has automatic backup (daily, weekly, monthly), but you can also trigger a manual backup here.': 'Trilium有每天, 每周, 每月的自动备份, 你也可以在这里手动触发备份.',
'Vacuum database': '整理数据库',
'This will rebuild the database which will typically result in a smaller database file. No data will be actually changed.': '这会重建数据库, 通常会减少占用空间, 不会删除数据.',
'This action will create a new copy of the database and anonymize it (remove all note content and leave only structure and some non-sensitive metadata)\n for sharing online for debugging purposes without fear of leaking your personal data.': '这会创建一个数据库的副本并匿名化处理(删除所有笔记内容, 仅保留结构和一些非敏感的元数据信息)用来分享到网上做调试而不用担心泄漏你的个人资料.',
'Full sync triggered': '完全同步已触发',
'Sync rows filled successfully': '同步行已成功填充',
'Database has been vacuumed': '数据库已整理',
'Consistency issues should be fixed.': '一致性问题应该已经解决了.',
'Could not create anonymized database, check backend logs for details': '无法创建匿名化数据库, 详情请检查后台日志.',
'`Created anonymized database in ${resp.anonymizedFilePath}`': '`在 ${resp.anonymizedFilePath} 创建了匿名化数据库`',
'Settings on this options tab are saved automatically after each change.': '配置在每次修改后会自动保存.',
'Zoom factor (desktop build only)': '缩放系数(仅桌面客户端有效)',
'Native title bar (requires app restart)': '原生标题栏(需要重启)',
'enabled': '启用',
'disabled': '禁用',
'Heading style': '标题风格',
'Zooming can be controlled with CTRL+- and CTRL+= shortcuts as well.': '缩放可以通过 ctrl+- 和 ctrl+= 来控制.',
'Font sizes': '字体大小',
'Main font size': '主字体大小',
'Note tree font size': '笔记树字体大小',
'Note detail font size': '笔记详情字体大小',
'Note that tree and detail font sizing is relative to the main font size setting.': '注意树和详情字体的大小和主字体大小有关.',
'White': '白',
'Dark': '深色',
'Black': '黑',
'Plain': '纯文本',
'Markdown-style': 'Markdown风格',
'No changes yet ...': '还没有修改过...',
'Do you want to undelete this note and its sub-notes?': '确定要撤销删除这个笔记和它的子笔记吗?',
'undelete': '撤销删除',
'Branch prefix has been saved.': '分支前缀已保存.',
'Export status': '导出状态',
'Unrecognized type ': '未识别的类型 ',
'Choose export type first please': '请先选择导出类型',
'Export in progress:': '导出中:',
'Export finished successfully.': '导出成功.',
'No noteId to include.': '缺少要包含的noteId.',
'Markdown content has been imported into the document.': 'Markdown内容已导入到文档中.',
'`Selected notes have been moved into ${parentNote.title}`': '`选中的笔记已经被移动到 ${parentNote.title}`',
'No path to move to.': '缺少要移动到的路径.',
'Restore this revision': '恢复此历史版本',
'Delete this revision': '删除此历史版本',
'Download': '下载',
'This revision was last edited on': '这个历史版本最后编辑于',
'Do you want to restore this revision? This will overwrite current title/content of the note with this revision.': '确定要恢复这个历史版本吗? 这会覆盖掉当前版本的标题和内容.',
'Do you want to delete this revision? This action will delete revision title and content, but still preserve revision metadata.': '确定要删除这个历史版本吗? 这会删掉历史版本的标题和内容, 但元信息会保留.',
"Preview isn't available for this note type.": '这种类型的笔记无法预览.',
'Do you want to delete all revisions of this note? This action will erase revision title and content, but still preserve revision metadata.': '确定要删除这个笔记所有的历史版本吗? 这会删除所有历史版本的标题和内容, 但元信息会保留.',
'Note revision has been restored.': '笔记历史已被还原.',
'Note revision has been deleted.': '笔记历史已被删除.',
'Note revisions has been deleted.': '笔记历史已被删除.',
'Available MIME types in the dropdown': '下拉菜单可用的MIME文件类型',
'Your username is': '用户名',
'Change password': '修改密码',
'Old password': '旧密码',
'New password': '新密码',
'New password Confirmation': '新密码确认',
'Please take care to remember your new password. Password is used for logging into the web interface and\n to encrypt protected notes.': '请一定要记住你的新密码. 密码被用来登录和加密笔记.',
'New passwords are not the same.': '两次输入密码不一致.',
'Password has been changed. Trilium will be reloaded after you press OK.': '密码已修改. 点击OK重启Trilium.',
'Spellcheck': '拼写检查',
'Spell check': '拼写检查',
'These options apply only for desktop builds, browsers will use their own native spell check. App restart is required after change.': '这些选项只在桌面客户端有效, 浏览器会使用浏览器的拼写检查. 修改设置后需要重启应用.',
'Enable spellcheck': '开启拼写检查',
'Language code(s)': '语言码',
'Multiple languages can be separated by comma, e.g. ': '多个语言可以用逗号分隔, 例如: ',
'Changes to the spell check options will take effect after application restart': '修改拼写检查需要重启后生效',
'Available language codes: ': '可用的语言代码',
'Image compression': '图片压缩',
'Max width / height of an image in pixels (image will be resized if it exceeds this setting).': '图片的最大像素宽度和高度(超过限制会缩放).',
'JPEG quality (10 - worst quality, 100 best quality, 50 - 85 is recommended)': 'JPEG质量 (10最低, 100最好, 推荐设置为50-85之间)',
'Note erasure timeout': '笔记清理超时',
'Erase notes after X seconds': '超过X秒后清理笔记',
'You can also trigger erasing manually:': '手动触发清理',
'Erase deleted notes now': '清理已删除的笔记',
'Protected session timeout': '保护会话超时',
'Protected session timeout (in seconds)': '保护会话超时(单位:秒)',
'Note revisions snapshot interval': '笔记修改快照间隔',
'Note revision snapshot time interval is time in seconds after which a new note revision will be created for the note. See ': '这个是笔记修改后创建快照的时间. 详见:',
'Note revision snapshot time interval (in seconds)': '笔记修改快照间隔(单位:秒)',
'Deleted notes (and attributes, revisions...) are at first only marked as deleted and it is possible to recover them \n from Recent Notes dialog. After a period of time, deleted notes are "erased" which means \n their content is not recoverable anymore. This setting allows you to configure the length \n of the period between deleting and erasing the note.': '被删除的笔记(属性, 修改版本等)只是被标记为"删除", 是可以从"最近笔记"还原的. 过了一段时间这些笔记会被"清理", 被清理的笔记就无法还原了. 这个设置可以用来调整从"删除"到被"清理"的时间间隔',
"Protected session timeout is a time period after which the protected session is wiped from\n the browser's memory. This is measured from the last interaction with protected notes. See": '保护会话超时是从浏览器内存里清除保护会话的间隔, 这个时间从最后一次编辑保护的笔记开始计算. 详见',
'for more info.': '以获取更多信息',
'Changes to the spell check options will take effect after application restart.': '拼写检查选项的修改将在应用程序重新启动后生效.',
'Options changed have been saved.': '设置修改已保存.',
'Deleted notes have been erased.': '删除的笔记已被清理.',
'Sync configuration': '同步设置',
'Server instance address': '服务器地址',
'Sync timeout (milliseconds)': '同步超时(单位:毫秒)',
'Sync proxy server (optional)': '同步代理服务器(可选)',
'If you leave the proxy setting blank, the system proxy will be used (applies to desktop/electron build only)': '代理设置留空则使用系统代理(仅桌面客户端有效)',
'Help': '帮助',
'Sync test': '同步测试',
"This will test the connection and handshake to the sync server. If the sync server isn't initialized, this will set it up to sync with the local document.": '测试和同步服务器之间的连接. 如果同步服务器没有初始化, 会将本地文档同步到同步服务器上.',
'Test sync': '测试同步',
'Sync server handshake failed, error:': '和同步服务器握手失败, 错误:',
"Given current password doesn't match hash": '当前密码错误',
'Unrecognized depth condition value': '无法识别的深度条件取值',
"Subtree note '${this.ancestorNoteId}' was not not found.": "子笔记 '${this.ancestorNoteId}' 未找到.",
'resource': '资源',
'root': '根笔记',
'No connection to sync server.': '无法连接到同步服务器',
'Note is deleted.': '笔记已被删除.',
'Cannot move root note.': '无法移动根笔记.',
'Cannot move anything into root parent.': '无法移动到根笔记的父级',
'This note already exists in the target.': '这个笔记已经在目标路径下.',
'Moving/cloning note here would create cycle.': '移动/克隆笔记到这里会形成循环引用.',
'Branch "${note.branchId}" was not found in note cache.': '笔记缓存内没有找到分支"${note.branchId}".',
'`Cannot move note to deleted parent note ${parentNoteId}`': '`无法将笔记移动到被删除的父级笔记 ${parentNoteId}`',
'Cannot create a branch for ${noteId} which is deleted.': '无法为已删除的笔记 ${noteId} 创建分支.',
'new note': '新建笔记',
'Note "${origNote.title}" has been duplicated': '笔记 "${origNote.title}" 已被复制',
'Note ${this.noteId} is of type ${this.type} and mime ${this.mime} and thus cannot be executed': '笔记 ${this.noteId} 的类型为 ${this.type} 且 mime 为 ${this.mime}, 因此不能被执行',
'`Unrecognized env type ${env} for note ${this.noteId}`': '`笔记 ${this.noteId} 的环境类型 ${env} 无法识别`',
'Please wait for a couple of seconds for the save to finish, then you can try again.': '请等待几秒钟以完成保存, 然后可以重试.',
'Widget initialization failed: ': '小部件初始化失败: ',
'`Execution of JS note "${note.title}" with ID ${bundle.noteId} failed with error: ${e.message}`': '`执行 ID 为 ${bundle.noteId} 的JS笔记"${note.title}"失败, 错误: ${e.message}`',
'Note(s) have been copied into clipboard.': '笔记已复制到剪贴板.',
'Note(s) have been cut into clipboard.': '笔记已被剪切到剪贴板.',
'Unrecognized clipboard mode=': '未识别的剪贴板 mode=',
'Note executed': '笔记已执行',
'Shortcut': '快捷键',
'Could not find module note ': '找不到模块笔记 ',
'Sync finished successfully.': '同步成功.',
'Sync failed': '同步失败',
'Note added to sync queue.': '笔记已加入同步队列',
'`Cannot resolve note path ${inputNotePath}`': '`无法解析笔记路径 ${inputNotePath}`',
"Cannot find tabContext's note id='${this.noteId}'": "无法找到 tabContext 中 id='${this.noteId}' 的笔记 ",
'Info': '信息',
'Error': '错误',
"Can't parse date from": '无法解析日期',
'Sync check failed!': '同步检查失败!',
'Consistency checks failed! See logs for details.': '一致性检查失败! 详情请看日志.',
'Encountered error "${e.message}", check out the console.': '发生错误 "${e.message}", 请检查控制台.',
'Encountered error ${e.message}: ${e.stack}, reloading frontend.': '发生错误 ${e.message}: ${e.stack}, 重新加载界面.',
"Username can't be empty": '用户名不能为空',
"Password can't be empty": '密码不能为空',
'Both password fields need be identical.': '两次密码输入需要一致.',
"Trilium server address can't be empty": 'Trilium服务器地址不能为空',
'Sync setup failed': '同步设置失败',
'Requested note is outside of hoisted note subtree and you must unhoist to access the note. Do you want to proceed with unhoisting?': '请求的笔记在提升笔记的子树之外, 你必须取消提升才能访问笔记. 确定要取消提升来继续吗?',
'Import status': '导入状态',
'Import in progress:': '导入中:',
'Import finished successfully.': '导入成功.',
"Cannot find keyboard action '${actionName}'": "找不到键盘动作 '${actionName}'",
'`Cannot find action ${actionName}`': '`找不到动作 ${actionName}`',
'Open note in new tab': '在新标签页中打开笔记',
'Open note in new window': '在新窗口中打开笔记',
'Missing note path': '缺少笔记路径',
'Search tips': '搜索建议',
'also see': '参见',
'complete help on search': '搜索语法完整帮助文档',
'Just enter any text for full text search</li>\n <li><code>#abc</code> - returns notes with label abc</li>\n <li><code>#year = 2019</code> - matches notes with label <code>year</code> having value <code>2019</code></li>\n <li><code>#rock #pop</code> - matches notes which have both <code>rock</code> and <code>pop</code> labels</li>\n <li><code>#rock or #pop</code> - only one of the labels must be present</li>\n <li><code>#year <= 2000</code> - numerical comparison (also >, >=, <).</li>\n <li><code>note.dateCreated >= MONTH-1</code> - notes created in the last month</li>\n <li><code>=handler</code> - will execute script defined in <code>handler</code> relation to get results': '输入任意文字进行全文搜索</li>\n <li><code>#abc</code> - 会返回含有abc标签的笔记</li>\n <li><code>#year = 2019</code> - <code>year</code>并且值是<code>2019</code>的笔记</li>\n <li><code>#rock #pop</code> - 会匹配同时含有 <code>rock</code> 和 <code>pop</code> 标签的笔记</li>\n <li><code>#rock or #pop</code> - 含有其中任意一个标签的笔记</li>\n <li><code>#year <= 2000</code> - 可以用比较符号(比如 >, >=, <).</li>\n <li><code>note.dateCreated >= MONTH-1</code> - 上个月创建的笔记</li>\n <li><code>=handler</code> - 会执行<code>=handler</code>关联的代码来获取结果',
'Uncaught error:': '未捕获的错误:',
'No details available': '没有详细信息',
'Message:': '信息:',
'URL:': 'URL:',
'Line:': '行数:',
'Column:': '列数:',
'Error object:': '错误对象:',
'Stack:': '堆栈:',
'Plain text': '纯文本',
'GitHub Flavored Markdown': 'GitHub风格的Markdown',
'Java Server Pages': 'Java服务器页面',
'Properties files': '属性文件',
'Vue.js Component': 'Vue.js部件',
'JS frontend': 'JS 前端',
'JS backend': 'JS 后端',
'Open': '打开',
' Enter protected session': '进入受保护的会话',
' Leave protected session': '退出受保护的会话',
'This note is protected and to access it you need to enter password.': '此笔记受保护, 您需要输入密码来访问它.',
'Content of this note cannot be displayed in the book format': '该笔记的内容无法以书籍格式显示',
'Collapse all notes': '折叠所有笔记',
'Expand all children': '展开所有子笔记',
'List view': '列表显示',
'Grid view': '网格视图',
'`Invalid view type ${type}`': '`无效的视图类型 ${type}`',
'Note has been deleted.': '笔记已被删除.',
'Protected session has been started.': '受保护的会话已启动.',
'Wrong password.': '密码错误.',
'in progress:': '处理中:',
'finished successfully.': '成功.',
'Node is null': '节点为空',
'`Search note ${note.noteId} failed: ${searchResultNoteIds}`': '`搜索笔记 ${note.noteId} 失败: ${searchResultNoteIds}`',
'`Not existing branch ${branchId}`': '`不存在的分支 ${branchId}`',
'Ctrl+Click': 'CTRL+鼠标左键',
'Text': '文本',
'Code': '代码',
'Saved search': '保存的搜索',
'Saved Search': '保存的搜索',
'Relation Map': '关系图',
'Render HTML note': '渲染HTML笔记',
'Book': '书',
'Force note sync': '强制同步笔记',
'Protect subtree': '保护子树',
'Unprotect subtree': '取消保护子树',
'Open in a new tab ': '在新标签打开',
'Open in a new window': '在新窗口打开',
'Insert note after ': '在后面插入',
'Insert child note ': '插入子笔记',
'Delete ': '删除',
'Search in subtree ': '在子树搜索',
'Hoist note ': '提升笔记',
'Unhoist note ': '取消提升笔记',
'Edit branch prefix ': '编辑分支前缀',
'Expand subtree ': '展开子树',
'Collapse subtree ': '收起子树',
'Sort by ... ': '排序',
'Recent changes in subtree': '子树最近的修改',
'Copy / clone ': '复制/克隆',
'Clone to ... ': '克隆到...',
'Cut ': '剪切',
'Move to ... ': '移动到...',
'Paste into ': '粘贴',
'Paste after': '在后面粘贴',
'Duplicate subtree': '创建子树副本',
'Name:': '名称:',
'Value:': '值:',
'Target note:': '目标笔记:',
'Promoted:': '升级属性:',
'Multiplicity:': '多重性:',
'Single value': '单值',
'Multi value': '多值',
'Type:': '类型:',
'Number': '数字',
'Boolean': '布尔',
'Date': '日期',
'Precision:': '精度',
'digits': '位数',
'Inverse relation:': '逆关系',
'Inheritable:': '可继承',
'Other notes with this label': '其它含有这个标签的笔记',
'when Trilium frontend starts up (or is refreshed).': '当Trilium前端启动(或刷新)时.',
'when Trilium backend starts up': '当Trilium后端启动.',
'run once an hour. You can use additional label <code>runAtHour</code> to specify at which hour.': '每小时一次. 可以通过 <code>runAtHour</code> 标签来指定.',
'run once a day': '每天一次',
'Custom request handler': '自定义请求处理器',
'Cancel changes and close': '取消修改并关闭',
'Attribute name can be composed of alphanumeric characters, colon and underscore only': '属性名称只能由字母数字字符, 冒号和下划线组成',
'Relation is a named connection between source note and target note.': '关系是源笔记和目标笔记之间的命名连接.',
'Promoted attribute is displayed prominently on the note.': '升级的属性在笔记上突出显示.',
'Multiplicity defines how many attributes of the same name can be created - at max 1 or more than 1.': '多重性定义可以创建多少个相同名称的属性 - 最大值为1或大于1.',
'Type of the label will help Trilium to choose suitable interface to enter the label value.': '标签的类型将帮助Trilium选择合适的界面来输入标签值.',
'What number of digits after floating point should be available in the value setting interface.': '值设置界面中可以设置的小数点位数.',
'Optional setting to define to which relation is this one opposite. Example: Father - Son are inverse relations to each other.': '可选设置用于定义与此相对的关系. 比如 父-子 关系是互为父子.',
'Inheritable attribute will be inherited to all descendants under this tree.': '可继承属性将被继承给该树下的所有后代.',
'Other notes with ${this.attribute.type} name "${this.attribute.name}"': '其它含有${this.attribute.type}名为"${this.attribute.name}"的笔记',
'Save & close': '保存并关闭',
'Delete': '删除',
'Label detail': '标签详情',
'Label definition detail': '标签定义详情',
'Relation detail': '关系详情',
'Relation definition detail': '关系定义详情',
'disables auto-versioning. Useful for e.g. large, but unimportant notes - e.g. large JS libraries used for scripting': '禁用自动版本管理. 对于很大但是不重要的笔记有用, 比如编写脚本用的JS库文件.',
'marks note which should be used as root for day notes. Only one should be marked as such.': '把笔记标记为日记的根笔记, 这个标签只能有一个笔记有.',
"notes with this label won't be visible by default in search results (also in Jump To, Add Link dialogs etc).": '默认情况下, 带有此标签的笔记不会在搜索结果中(在跳转到, 添加链接等对话框中也不会显示).',
"notes (with their sub-tree) won't be included in any note export": '笔记(及其子树)不会包含在任何笔记导出中',
'defines on which events script should run. Possible values are:': '定义哪个事件脚本应该运行. 可取的值有:',
'Define which trilium instance should run this on. Default to all instances.': '定义应在哪个Trilium实例上运行. 默认是在所有实例上运行.',
'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.': '定义在什么时候运行. 需要和 <code>#run=hourly</code> 一起使用, 可以同时定义多个来实现一天内多次运行.',
"scripts with this label won't be included into parent script execution.": '父级脚本的执行过程中不会包含具有此标签的脚本.',
'keeps child notes sorted by title alphabetically': '使子笔记按标题按字母顺序排序',
'Hide promoted attributes on this note': '隐藏此笔记中的升级属性',
'editor is in read only mode. Works only for text and code notes.': '编辑器处于只读模式. 只对文本和代码笔记有效.',
'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': '文本/代码笔记过大时, 可以自动设置为阅读模式. 你可以通过给需要的每个笔记添加这个标签来单独禁用这个功能.',
"marks CSS notes which are loaded into the Trilium application and can thus be used to modify Trilium's looks.": '标记可以被Trilium加载用来修改Trilium的外观的CSS笔记.',
'marks CSS notes which are full Trilium themes and are thus available in Trilium options.': '标记可以被作为Trilium主题使用的CSS笔记, 这些笔记可以在Trilium的设置里看到.',
'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.': '这个标签的值会被当作CSS类加到对应的笔记中, 可以被用来单独设置笔记的主题. 这个标签也可以在模板笔记里使用.',
'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.': '这个标签的值作为CSS类添加到笔记上, 用来修改对应笔记的图标. 比如 bx bx-home 会使用 boxicons 相应的图标. 这个标签也可以在模板笔记里使用. ',
'number of items per page in note listing': '笔记清单中每页的个数',
'marks this note as a custom widget which will be added to the Trilium component tree': '将此笔记标记为自定义窗口小部件, 该窗口小部件会被添加到Trilium部件树中',
'marks this note as a workspace which allows easy hoisting': '将此笔记标记为可简单提升的工作区',
'defines box icon CSS class which will be used in tab when hoisted to this note': '提升此笔记时, 笔记标签页中使用的CSS图标',
'CSS color used in the note tab when hoisted to this note': '提升此笔记时, 笔记标签页中使用的CSS颜色',
'new search notes will be created as children of this note': '新的搜索记录将被创建为该笔记的子笔记',
'new search notes will be created as children of this note when hoisted to some ancestor of this note': '当笔记的某些父级笔记被提升时, 新的搜索记录将被创建为该笔记的子笔记',
'default inbox location for new notes': '新笔记的默认收件箱位置',
'default inbox location for new notes when hoisted to some ancestor of this note': '当笔记的某些父级笔记被提升时, 新笔记的默认收件箱位置',
'default location of SQL console notes': 'SQL控制台笔记的默认位置',
'executes when note is created on backend': '在后端创建笔记时执行',
'executes when note title is changed (includes note creation as well)': '笔记标题修改时执行(还包括笔记创建)',
'executes when note is changed (includes note creation as well)': '修改笔记时执行(还包括笔记创建)',
'executes when new note is created under this note': '在此笔记下创建新笔记时执行',
'executes when new attribute is created under this note': '在此笔记下创建新属性时执行',
'executes when attribute is changed under this note': '在此笔记下修改属性时执行',
"attached note's attributes will be inherited even without parent-child relationship. See template for details.": '即使没有父子关系, 附加笔记的属性也将被继承.',
'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': '类型为"渲染笔记"的笔记会被作为代码笔记(HTML或脚本)显示, 并且必须指定需要渲染的笔记关系.',
'target of this relation will be executed and rendered as a widget in the sidebar': '此关系的目标将被执行, 并在侧边栏中显示为小部件',
'see': '见',
'Add new label definition': '添加新标签定义',
'Add new relation definition': '添加新关系定义',
'Type the labels and relations here': '在这里输入标签和关系',
'Add new label': '添加新标签',
'Add new relation': '添加新关系',
'Save attributes <enter>': '保存属性<回车>',
'Add a new attribute': '添加新属性',
'<p>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></p> \n\n<p>For relation, type <code>~author = @</code> which should bring up an autocomplete where you can look up the desired note.</p>\n\n<p>Alternatively you can add label and relation using the <code>+</code> button on the right side.</p>': '<p>要添加标签,只需输入 <code>#rock</code> 或者如果你想设置一个值可以用 <code>#year = 2020</code></p> \n\n<p>添加关系则是类似 <code>~author = @</code>, 自动补全会帮你找到的想要的笔记.</p>\n\n<p>或者可以用右侧的<code>+</code>按钮添加标签和关系.</p>',
'Calendar': '日历',
'January': '一月',
'Febuary': '二月',
'February': '二月',
'March': '三月',
'April': '四月',
'May': '五月',
'June': '六月',
'July': '七月',
'August': '八月',
'September': '九月',
'October': '十月',
'November': '十一月',
'December': '十二月',
'Mon': '一',
'Tue': '二',
'Wed': '三',
'Thu': '四',
'Fri': '五',
'Sat': '六',
'Sun': '日',
'Collapsible Group Item': '可折叠小部件',
'Untitled widget': '未命名小部件',
'Minimize/maximize widget': '最小化/最大化小部件',
'Hide': '隐藏',
'Show': '显示',
'Quit': '退出',
'Edited notes on this day': '当天编辑的笔记',
'No edited notes on this day yet ...': '这天没有编辑过笔记...',
'This contains a list of notes created or updated on this day.': '这一天所有编辑过的笔记.',
'Link map shows incoming and outgoing links from/to the current note.': '链接图会显示当前笔记所有引用和被引用的关系.',
'Show full link map': '显示完整链接图',
'Created': '创建',
'Modified': '修改',
'Note size': '笔记大小',
'calculate': '计算',
"Note size provides rough estimate of storage requirements for this note. It takes into account note's content and content of its note revisions.": '估算这个笔记占用的空间, 包括笔记内容和笔记历史.',
'in ${subTreeResp.subTreeNoteCount} notes)': '共 ${subTreeResp.subTreeNoteCount} 条笔记)',
'No revisions yet...': '还没修改过',
'Note revisions track changes in the note across the time.': '笔记修改历史.',
'Show Note revisions dialog': '显示笔记历史窗口',
'What links here': '被这些笔记引用',
'Nothing links here yet ...': '还没有被引用过...',
'This list contains all notes which link to this note through links and relations.': '所有通过链接或关系引用到这个笔记的笔记列表.',
'more links ...': '更多链接...',
'Insert child note': '插入子笔记',
'Delete this note': '删除此笔记',
'`Cannot get branchId for notePath ${notePath}`': '`找不到notePath为 ${notePath} 的 branchId`',
'Unrecognized command': '未识别的命令',
'No plugin buttons loaded yet.': '尚未加载插件按钮.',
'Switch to desktop version': '切换到桌面版',
'Logout': '登出',
'New note': '新笔记',
'Collapse note tree': '折叠笔记树',
'Scroll to active note': '滚动到活动笔记',
'Plugin buttons': '插件按钮',
'Global actions': '全局动作',
'Alphanumeric characters, underscore and colon are allowed characters.': '允许使用字母数字字符,下划线和冒号.',
'Delete matched notes': '删除匹配的笔记',
'Delete 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.": '匹配的笔记的所有历史版本都会被删除, 笔记本身会被保留.',
'Delete relation:': '删除关系:',
'Execute script:': '执行脚本:',
'You can execute simple scripts on the matched notes.': '你可以在匹配的笔记上执行简单的脚本.',
"For example to append a string to a note's title, use this small script:": '比如在笔记标题后附加一串字符:',
"More complex example would be deleting all matched note's attributes:": '一个更复杂的例子, 删除所有匹配到笔记的属性:',
'Rename label from:': '重命名标签由:',
'To:': '为:',
'Rename relation from:': '重命名关系由:',
'Set label': '设置标签',
'to value': '为',
'On all matched notes:': '在所有匹配的笔记上:',
"create given label if note doesn't have one yet": '如果笔记还没有, 则创建给定标签',
'or change value of the existing label': '或修改现有标签的值',
'You can also call this method without value, in such case label will be assigned to the note without value.': '您也可以不带参数地调用这个方法, 这种情况下, 分配给笔记的标签就没有值.',
'Set relation': '设置关系',
'to': '为',
"create given relation if note doesn't have one yet": '如果笔记还没有关系, 则创建给定的关系',
'or change target note of the existing relation': '或修改现有关系的目标笔记',
'Ancestor:': '祖先:',
'depth:': '深度:',
"doesn't matter": '任意',
'is exactly 1 (direct children)': '正好是1(直接子代)',
'is exactly 2': '正好是2',
'is exactly 3': '正好是3',
'is exactly 4': '正好是4',
'is exactly 5': '正好是5',
'is exactly 6': '正好是6',
'is exactly 7': '正好是7',
'is exactly 8': '正好是8',
'is exactly 9': '正好是9',
'is greater than 1': '大于1',
'is greater than 2': '大于2',
'is greater than 3': '大于3',
'is greater than 4': '大于4',
'is greater than 5': '大于5',
'is greater than 6': '大于6',
'is greater than 7': '大于7',
'is greater than 8': '大于8',
'is greater than 9': '大于9',
'is less than 3': '小于3',
'is less than 4': '小于4',
'is less than 5': '小于5',
'is less than 6': '小于6',
'is less than 7': '小于7',
'is less than 8': '小于8',
'is less than 9': '小于9',
'Debug': '调试',
'Debug will print extra debugging information into the console to aid in debugging complex queries.': '调试会将更多调试信息打印到控制台中, 以帮助调试复杂的查询.',
'To access the debug information, execute query and click on "Show backend log" in top left corner.': '要访问调试信息, 请执行查询, 然后单击左上角的"显示后端日志".',
'Fast search option disables full text search of note contents which might speed up searching in large databases.': '"快速搜索"选项禁用了笔记内容的全文搜索, 这可能会加快大型数据库中的搜索速度.',
'Fast search': '快速搜索',
'Include archived notes': '包含已归档笔记',
'Limit': '限制',
'Take only first X specified results.': '只取前N条结果.',
'Order by': '排序',
'Relevancy (default)': '相关性 (默认)',
'Title': '标题',
'Date of last modification': '最后修改日期',
'Note content size': '笔记内容大小',
'Note content size including revisions': '笔记内容大小(包括历史)',
'Number of revisions': '历史数量',
'Number of children notes': '子笔记数',
'Number of clones': '克隆数',
'Number of labels': '标签数量',
'Number of relations': '关系数',
'Number of relations targeting the note': '指向笔记的关系数',
'Random order': '随机顺序',
'Ascending (default)': '升序(默认)',
'Descending': '降序',
"Search script allows to define search results by running a script. This provides maximal flexibility when standard search doesn't suffice.": '搜索脚本允许通过运行脚本来定义搜索结果.',
'Search script must be of type "code" and subtype "JavaScript backend". The script receives needs to return an array of noteIds or notes.': '搜索脚本的类型必须为"代码",子类型必须为" JavaScript后端".',
'See this example:': '请参阅以下示例:',
"Note that search script and search string can't be combined with each other.": '请注意,搜索脚本和搜索字符串不能一起使用.',
'Search script:': '搜索脚本',
"""Direction argument given as "${direction}", use either 'row' or 'column'""": """输入的方向参数为"${direction}", 请使用'row' 或者 'column'""",
'Open New Window': '新窗口',
'Open Dev Tools': '开发者工具',
'Open SQL Console': '打开SQL控制台',
'Open SQL Console History': '打开SQL控制台历史记录',
'Show Backend Log': '显示后台日志',
'Reload Frontend': '重新加载界面',
'Toggle Zen mode': '切换禅模式',
'Toggle Fullscreen': '切换全屏',
'Show Help': '显示帮助',
'Go to previous note.': '转到上一个笔记.',
'Go to next note.': '转到下一个笔记.',
'Revisions': '历史',
' Link map': '链接图',
' Note info': '笔记信息',
'Note is not protected, click to make it protected': '笔记不受保护, 点击以使其受保护',
'Note is protected, click to make it unprotected': '笔记已受保护, 点击以使其不受保护',
'Actions': '动作',
'Protect the note': '保护笔记',
'Unprotect the note': '取消保护笔记',
'Category:': '类别:',
'Search:': '搜索:',
'Reset to default icon': '重置为默认图标',
'Change note icon': '修改笔记图标',
'Note paths': '笔记路径',
'This path is outside of hoisted note and you would have to unhoist.': '该路径不在提升笔记的范围内,您必须取消提升.',
'Archived': '已归档',
'Search': '搜索',
'Clone note to new location...': '克隆到新路径...',
"type note's title here...": '输入笔记标题...',
'Save & apply changes': '保存并应用修改',
'Tree settings': '树设置',
'Images which are shown in the parent text note will not be displayed in the tree': '在父级文字笔记显示的图片不会在树里显示',
'Notes will be collapsed after period of inactivity to declutter the tree.': '一段时间不活跃的笔记会被折叠.',
'Unhoist': '取消提升',
'Hoist this note (workspace)': '提升这个笔记(工作区)',
'Refresh saved search results': '刷新保存的搜索结果',
'Create child note': '创建子笔记',
'Saved search note refreshed.': '保存的搜索结果已刷新.',
'Hide archived notes': '隐藏已归档笔记',
'Hide images included in a note': '隐藏笔记中的图片',
'Automatically collapse notes': '自动折叠笔记',
'Auto collapsing notes after inactivity...': '自动折叠一段时间不活跃的笔记...',
'Dropping notes into this location is not allowed.': '笔记不允许移动到这个地方.',
'Branch "${branch.branchId}" has no note "${branch.noteId}"': '分支 "${branch.branchId}" 没有笔记 "${branch.noteId}"',
'Unknown hitMode=': '未知 hitMode=',
'Cannot parse ${jsonStr} into notes for drop': '无法解析 ${jsonStr} 到目标笔记',
'`Cannot find branch=${branchId}`': '`找不到 branch=${branchId}`',
'Could not find run path for notePath:': '找不到运行路径, 对应notePath为:',
'File': '文件',
'Image': '图像',
'Render Note': '渲染笔记',
'It is not recommended to change note type when note content is not empty. Do you want to continue anyway?': '不建议在笔记有内容的情况下修改笔记类型, 是否要继续?',
'File ': '文件',
' has been last modified on ': '上次修改时间:',
'Upload modified file': '上传修改后的文件',
'Ignore this change': '忽略此修改',
'Searching ...': '正在搜索中...',
'No results found': '没有找到结果',
'... and ${searchResultNoteIds.length - MAX_DISPLAYED_NOTES} more results.': '... 以及另外 ${resultNoteIds.length - MAX_DISPLAYED_NOTES} 个结果',
'Show in full search': '在搜索中显示',
'Quick search': '快速搜索',
'Remove this search action': '去掉这个搜索动作',
'`Failed rendering search action: ${JSON.stringify(this.attribute.dto)} with error: ${e.message} ${e.stack}`': '`渲染搜索动作 ${JSON.stringify(this.attribute.dto)} 失败, 错误: ${e.message} ${e.stack}`',
'Remove this search option': '去掉这个搜索选项',
'`Failed rendering search option: ${JSON.stringify(this.attribute.dto)} with error: ${e.message} ${e.stack}`': '`渲染搜索选项 ${JSON.stringify(this.attribute.dto)} 失败, 错误: ${e.message} ${e.stack}`',
'Search string:': '搜索字符串:',
'Search syntax': '搜索语法',
'complete help on search syntax': '搜索语法完整帮助文档',
'Search: ': '搜索:',
'Just enter any text for full text search</li>\n <li><code>#abc</code> - returns notes with label abc</li>\n <li><code>#year = 2019</code> - matches notes with label <code>year</code> having value <code>2019</code></li>\n <li><code>#rock #pop</code> - matches notes which have both <code>rock</code> and <code>pop</code> labels</li>\n <li><code>#rock or #pop</code> - only one of the labels must be present</li>\n <li><code>#year <= 2000</code> - numerical comparison (also >, >=, <).</li>\n <li><code>note.dateCreated >= MONTH-1</code> - notes created in the last month': '输入任意文字进行全文搜索</li>\n <li><code>#abc</code> - 会返回含有abc标签的笔记</li>\n <li><code>#year = 2019</code> - <code>year</code>并且值是<code>2019</code>的笔记</li>\n <li><code>#rock #pop</code> - 会匹配同时含有 <code>rock</code> 和 <code>pop</code> 标签的笔记</li>\n <li><code>#rock or #pop</code> - 含有其中任意一个标签的笔记</li>\n <li><code>#year <= 2000</code> - 可以用比较符号(比如 >, >=, <).</li>\n <li><code>note.dateCreated >= MONTH-1</code> - 上个月创建的笔记',
"this.note.title.startsWith('Search: ')": "this.note.title.startsWith('Search:') || this.note.title.startsWith('搜索:')",
'fulltext keywords, #tag = value ...': '全文搜索关键字, #标签=值 ...',
'Hide sidebar': '隐藏侧边栏',
'Show sidebar': '显示侧边栏',
"""`${similarNotes.length} similar note${similarNotes.length === 1 ? '': "s"}`""": '`${similarNotes.length} 个相似的笔记`',
'This list contains notes which might be similar to the current note based on textual similarity of note title, its labels and relations.': '本列表显示的是和当前笔记标题, 标签, 关系相似的笔记.',
'Enter protected session': '进入保护会话',
'Leave protected session': '退出保护会话',
'Enter protected session to be able to find and view protected notes': '进入受保护的会话以能够查找和查看受保护的笔记',
'Leave protected session so that protected notes are not accessible any more.': '离开受保护的会话, 使受保护的笔记不再可用.',
'Sync status will be known once the next sync attempt starts.': '下次同步时可获取同步状态.',
'Click to trigger sync now.': '点击开始同步.',
'Connected to the sync server.': '已连接到同步服务器.',
'There are some outstanding changes yet to be synced.': '还有一些修改的数据需要同步.',
'Click to trigger sync.': '点击开始同步.',
'All changes have been already synced.': '所有的修改已经同步.',
'Establishing the connection to the sync server was unsuccessful.': '连接到同步服务器失败.',
'All known changes have been synced.': '所有的修改已经同步.',
'Sync with the server is in progress.': '同步中.',
'Sync update in progress': '同步更新中',
'Note ID:': '笔记ID:',
'Original file name:': '原始文件名:',
'File type:': '文件类型:',
'File size:': '文件大小:',
'Upload new revision': '上传新的修改',
'New file revision has been uploaded.': '新文件修改已上传.',
'Upload of a new file revision failed.': '上传新笔记修改是该:',
'Copy to clipboard': '复制到剪贴板',
'New image revision has been uploaded.': '新的图像修改已上传.',
'Upload of a new image revision failed:': '上传新图片修改失败:',
'Inherited attrs': '继承属性',
'This note was originally taken from': '笔记来源',
'Owned attrs': '笔记属性',
'Promoted attrs': '升级属性',
'Add search option:': '添加搜索选项',
'search string': '搜索字符串',
'search script': '搜索脚本',
'ancestor': '父级节点',
'fast search': '快速搜索',
'include archived': '包括归档笔记',
'order by': '排序',
'limit': '限制条数',
'debug': '调试',
'action': '动作',
'Delete note': '删除笔记',
'Delete label': '删除标签',
'Delete relation': '删除关系',
'Rename label': '重命名标签',
'Rename relation': '重命名关系',
'Set label value': '设置标签值',
'Set relation target': '设置关系目标',
'Execute script': '执行脚本',
'Search & Execute actions': '搜索并执行动作',
'Archived notes are by default excluded from search results, with this option they will be included.': '默认情况下, 归档的笔记不包括在搜索结果中, 使用此选项将包括这些笔记.',
'Limit number of results': '限制结果数',
'Debug will print extra debugging information into the console to aid in debugging complex queries': '调试会将更多调试信息打印到控制台中, 以帮助调试复杂的查询',
'Actions have been executed.': '动作已执行.',
'`Unknown search option ${searchOptionName}`': '`未知的搜索选项 ${searchOptionName}`',
"`Parsing of attribute: '${actionAttr.value}' failed with error: ${e.message}`": "`解析属性 '${actionAttr.value}' 失败, 错误: ${e.message}`",
"No action class for '${actionDef.name}' found.": "没有找到 '${actionDef.name}' 这个动作类.",
'No notes have been found for given search parameters.': '没有找到符合搜索条件的笔记.',
'Search has not been executed yet. Click on "Search" button above to see the results.': '点击上方的"搜索"按钮开始搜索',
'Move this tab to a new window': '把标签页移动到新窗口',
'Close all tabs': '关闭所有标签页',
'Close all tabs except for this': '关闭其它标签页',
'Close tab': '关闭标签',
'Add new tab': '添加新标签',
'New tab': '新标签页',
"""This note of type Book doesn't have any child notes so there's nothing to display. See <a href="https://github.com/zadam/trilium/wiki/Book-note">wiki</a> for details.""": '这个类型为"书"的笔记没有任何子笔记, 所以什么也不显示. 详见 <a href="https://github.com/zadam/trilium/wiki/Book-note">wiki</a>.',
'This note has been deleted.': '这个笔记已被删除.',
'Execute': '运行',
'Type the content of your note here ...': '在这里输入笔记内容',
"Open a note by typing the note's title into the input below or choose a note in the tree.": '在下方输入笔记名称或者点树形图来打开笔记.',
'search for a note by its name': '根据名称搜索笔记',
'Enter workspace': '进入工作空间',
'File preview is not available for this file format.': '这种文件格式不支持预览.',
'Image copied to the clipboard': '图片已复制到剪贴板',
'Could not copy the image to clipboard.': '无法将图片复制到剪贴板.',
'Showing protected note requires entering your password:': '查看受保护的笔记需要输入密码:',
'Edit this note': '编辑笔记',
'Open in new tab': '在新标签页中打开',
'Remove note': '删除笔记',
'Edit title': '编辑标题',
'Remove relation': '删除关系',
'Create new child note and add it into this relation map': '创建新的子笔记并将其添加到此关系图中',
'Reset pan & zoom to initial coordinates and magnification': '重置放大系数和座标',
'Enter title of new note': '输入新笔记的标题',
'Enter new note title:': '输入新的笔记标题:',
'Specify new relation name (allowed characters: alphanumeric, colon and underscore):': '指定新的关系名称(允许的字符: 字母数字,冒号和下划线):',
'Click on canvas to place new note': '在画布上单击以放置新笔记',
'''"Connection '" + name + "' between these notes already exists."''': '''"这些笔记的连接'" + name + "'已经存在."''',
'Start dragging relations from here and drop them on another note.': '从这里拖拽到别的笔记来创建关系.',
'Note "${note.title}" is already in the diagram.': '笔记 "${note.title}" 已经在图中.',
'Cannot match transform: ': '无法匹配变换: ',
'Are you sure you want to remove the relation?': '确定要删除这个关系吗?',
'Note ${noteId} not found!': '笔记 ${noteId} 未找到!',
"This help note is shown because this note of type Render HTML doesn't have required relation to function properly.": '之所以显示此帮助说明, 是因为该类型的渲染HTML没有设置好必须的关联关系.',
'Render HTML note type is used for <a class="external" href="https://github.com/zadam/trilium/wiki/Scripts">scripting</a>. In short, you have a HTML code note (optionally with some JavaScript) and this note will render it. To make it work, you need to define a <a class="external" href="https://github.com/zadam/trilium/wiki/Attributes">relation</a> called "renderNote" pointing to the HTML note to render.': '笔记类型: 渲染HTML 是用来<a class="external" href="https://github.com/zadam/trilium/wiki/Scripts">编写脚本</a>用的. 简单说就是你可以写HTML代码(或者加上一些JavaScript代码), 然后这个笔记会把页面渲染出来. 你得定义一个叫"renderNote"的<a class="external" href="https://github.com/zadam/trilium/wiki/Attributes">关系</a>来指向要渲染的HTML笔记.',
'Dim grey': '深灰',
'Grey': '灰',
'Light grey': '浅灰',
'Red': '红',
'Orange': '橙',
'Yellow': '黄',
'Light green': '浅绿',
'Green': '绿',
'Aquamarine': '海蓝',
'Turquoise': '蓝绿',
'Light blue': '浅蓝',
'Blue': '蓝',
'Purple': '紫',
'Diff': '差异',
'include note widget': '包含笔记小部件',
'Internal Trilium link': 'Trilium 内部链接',
'Markdown import from clipboard': '从剪贴板导入Markdown文本',
'Cut & paste selection to sub-note': '将选中剪切并粘贴到子笔记中',
'%0 of %1': '%1 中的 %0',
'Align cell text to the bottom': '将单元格文本底部对齐',
'Align cell text to the center': '将单元格文本居中对齐',
'Align cell text to the left': '将单元格文本向左对齐',
'Align cell text to the middle': '将单元格文本对齐到中间',
'Align cell text to the right': '将单元格文本向右对齐',
'Align cell text to the top': '将单元格文本对齐到顶部',
'Align table to the left': '将表格向左对齐',
'Align table to the right': '将表格向右对齐',
'Alignment': '对齐',
'Background': '背景',
'Big': '大',
'Block quote': '块引用',
'Bold': '加粗',
'Border': '边界',
'Bulleted List': '项目符号列表',
'Bulleted list styles toolbar': '项目符号列表样式工具栏',
'Cannot upload file:': '无法上传文件:',
'Cell properties': '单元格属性',
'Center table': '表格居中',
'Centered image': '图片居中',
'Change image text alternative': '修改图片文字',
'Choose heading': '选择标题',
'Circle': '圆',
'Color': '颜色',
'Color picker': '颜色选择器',
'Column': '列',
'Dashed': '虚线',
'Decimal': '小数',
'Decimal with leading zero': '含0开头的十进制',
'Decrease indent': '减少缩进',
'Default': '默认',
'Delete column': '删除列',
'Delete row': '删除行',
'Dimensions': '维度',
'Disc': '碟片',
'Document colors': '文件颜色',
'Dotted': '点',
'Double': '双倍的',
'Downloadable': '可下载的',
'Dropdown toolbar': '下拉工具栏',
'Edit block': '编辑块',
'Edit link': '编辑链接',
'Editor toolbar': '编辑器工具栏',
'Enter image caption': '输入图像标题',
'Font Background Color': '字体背景色',
'Font Color': '字体颜色',
'Font Family': '字体系列',
'Font Size': '字体大小',
'Full size image': '全尺寸图片',
'Groove': '槽',
'Header column': '标题栏',
'Header row': '标题行',
'Heading': '标题',
'Heading 1': '标题1',
'Heading 2': '标题2',
'Heading 3': '标题3',
'Heading 4': '标题4',
'Heading 5': '标题5',
'Heading 6': '标题6',
'Height': '高度',
'Horizontal line': '水平线',
'Horizontal text alignment toolbar': '水平文本对齐工具栏',
'Huge': '很大',
'Image resize list': '图像调整尺寸列表',
'Image toolbar': '图像工具栏',
'image widget': '图片小部件',
'Increase indent': '增加缩进',
'Insert code block': '插入代码块',
'Insert column left': '向左插入一列',
'Insert column right': '向右插入列',
'Insert image': '插入图片',
'Insert paragraph after block': '在块后插入段落',
'Insert paragraph before block': '在块之前插入段落',
'Insert row above': '在上方插入行',
'Insert row below': '在下方插入行',
'Insert table': '插入表格',
'Inset': '内框',
'Italic': '斜体',
'Justify cell text': '对齐单元格文本',
'Left aligned image': '左对齐图像',
'Link': '链接',
'Link URL': '链接网址',
'Lower-latin': '小写拉丁',
'Lower–roman': '小写罗马',
'Merge cell down': '合并单元格',
'Merge cell left': '合并单元格左',
'Merge cell right': '合并单元格右',
'Merge cell up': '合并单元格',
'Merge cells': '合并单元格',
'None': '无',
'Numbered List': '编号清单',
'Numbered list styles toolbar': '编号列表样式工具栏',
'Open in a new tab': '在新标签页中打开',
'Open link in new tab': '在新的标签页打开链接',
'Original': '原来的',
'Outset': '外框',
'Padding': '边距',
'Paragraph': '段落',
'Previous': '以前的',
'Redo': '重做',
'Remove color': '去除颜色',
'Remove Format': '删除格式',
'Resize image': '调整图片大小',
'Resize image to %0': '将图像调整为%0',
'Resize image to the original size': '将图像调整为原始尺寸',
'Rich Text Editor': '富文本编辑器',
'Rich Text Editor %0': '富文本编辑器%0',
'Ridge': '岭',
'Right aligned image': '右对齐图像',
'Row': '行',
'Select all': '全选',
'Select column': '选择列',
'Select row': '选择行',
'Show more items': '显示更多项目',
'Side image': '侧面图片',
'Small': '小',
'Solid': '坚硬的',
'Split cell horizontally': '水平拆分单元格',
'Split cell vertically': '垂直拆分单元格',
'Square': '正方形',
'Strikethrough': '删除线',
'Style': '风格',
'Subscript': '下标',
'Superscript': '上标',
'Table alignment toolbar': '表格对齐工具栏',
'Table cell text alignment': '表格单元格文字对齐',
'Table properties': '表属性',
'Table toolbar': '表格工具栏',
'Text alternative': '文字替代',
'This link has no URL': '此链接没有URL',
'Tiny': '很小',
'To-do List': '待办事项清单',
'Toggle the circle list style': '切换圈子列表样式',