-
-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathen-US.json
More file actions
1139 lines (1139 loc) · 44.2 KB
/
Copy pathen-US.json
File metadata and controls
1139 lines (1139 loc) · 44.2 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
{
"common": {
"requestFailed": "Request failed",
"save": "Save",
"saving": "Saving..."
},
"commonUi": {
"apply": "Apply",
"cancel": "Cancel",
"confirm": "Confirm",
"edit": "Edit",
"done": "Done",
"add": "Add",
"actions": "Actions",
"optional": "Optional",
"none": "N/A"
},
"editor": {
"tagPickerTooltip": "Pick tags",
"tagPickerEmpty": "No tags available yet.",
"tagPickerGoToManage": "Go to Tag Manager",
"tagPickerLimit": "Up to {max} tags allowed",
"mainPlaceholder": "Share what's on your mind~",
"preview": "Preview",
"showPreview": "Show preview",
"hidePreview": "Hide preview",
"imageLayoutPlaceholder": "Select layout",
"imageUrlPlaceholder": "Enter attachment URL...",
"mediaSectionTitle": "Insert media (image / audio / video)",
"mediaTypeLabel": "Media type:",
"mediaTypeImage": "Image",
"mediaTypeAudio": "Audio",
"mediaTypeVideo": "Video",
"mixedCategoryRejected": "An Echo can only contain files of a single type",
"categoryLockedHint": "Remove existing files before switching type",
"singleMediaLimit": "Only one audio / video per Echo — remove the current file before replacing it",
"imageAddMethod": "Select storage method:",
"imageSourceExternal": "URL",
"imageSourceLocal": "Local",
"imageSourceObject": "S3",
"imageLayout": "Select layout:",
"imageSmartCompress": "Smart compression:",
"currentUploadMode": "Current storage method:",
"uploadingSuffix": ", uploading...",
"addMoreImages": "Add more attachments",
"layoutWaterfall": "Waterfall",
"layoutGrid": "Grid",
"layoutCarousel": "Carousel",
"layoutHorizontal": "Horizontal",
"layoutStack": "Stack",
"musicUrlPlaceholder": "Music URL...",
"musicShare": "Music share",
"musicSupportHint": "Supports NetEase/QQ Music/Apple Music",
"musicVipHint": "Note: VIP-only songs are not supported; self-hosted API is recommended.",
"parseResult": "Parse result",
"parseSuccess": "Success",
"parseFailed": "Failed",
"videoUrlPlaceholder": "Bilibili/YouTube URL...",
"videoShare": "Video share (Bilibili, YouTube)",
"videoExtractHint": "Paste URL to auto-extract ID",
"videoId": "Video ID",
"githubUrlPlaceholder": "https://github.com/username/repo",
"githubShare": "GitHub project share",
"tweetShare": "X (Twitter) post share",
"tweetHint": "Paste an x.com or twitter.com post URL",
"tweetUrlPlaceholder": "https://x.com/username/status/1234567890",
"tweetUrlInvalid": "Invalid post URL",
"websiteTitlePlaceholder": "Website title...",
"websiteUrlPlaceholder": "https://example.com",
"websiteShare": "Website link share",
"fetchingTitle": "Fetching...",
"fetchTitle": "Fetch title",
"websiteInputRequired": "Please enter website URL first",
"fetchTitleSuccess": "Website title fetched",
"fetchTitleFailed": "Failed to fetch website title",
"tagManagerTitle": "Tag Manager",
"tagManagerHint": "Tip: Click a tag to filter by it or delete it",
"tagManagerEmpty": "No tags yet",
"filterByTag": "Filter by this tag",
"deleteTag": "Delete this tag",
"deleteTagConfirmTitle": "Delete this tag?",
"deleteTagConfirmDesc": "After deletion, all related content will no longer be linked to this tag",
"createTagPlaceholder": "New tag name",
"createTagButton": "Add",
"createTagSuccess": "Tag created",
"createTagEmpty": "Tag name cannot be empty",
"extraContent": "Extra extension content",
"addMusic": "Add music",
"addVideo": "Add video",
"addGithubProject": "Add GitHub project",
"addWebsiteLink": "Add website link",
"addLocation": "Add location",
"addTweet": "Add X post",
"locationShare": "Location",
"locationHint": "Click on the map or enter coordinates",
"locationUseCurrent": "Use current location",
"locationClear": "Clear location",
"locationGeolocating": "Locating…",
"locationGeolocationDenied": "Geolocation permission denied. Please pick a point on the map.",
"locationGeolocationUnsupported": "Geolocation is not supported in this browser",
"locationCoordInvalid": "Coordinates out of valid range",
"locationPlaceholderInput": "Where is this?",
"locationPlaceholderRequired": "Please name the place",
"locationLatPlaceholder": "Latitude (-90 ~ 90)",
"locationLngPlaceholder": "Longitude (-180 ~ 180)",
"locationLookingUp": "Resolving place name…",
"locationStatusSelected": "Location selected",
"locationStatusChoose": "Pick a point on the map",
"locationZoomIn": "Zoom in",
"locationZoomOut": "Zoom out",
"extLocation": "Location",
"more": "More",
"backToEditor": "Back to editor",
"addImage": "Add attachment",
"publishEcho": "Publish Echo",
"publishEchoPublic": "Publish as public",
"publishEchoPrivate": "Publish as private",
"exitUpdateMode": "Exit update mode",
"updateEcho": "Update Echo",
"extMusic": "Music",
"extVideo": "Video",
"extGithubProject": "GitHub Project",
"extWebsiteLink": "Website Link",
"extTweet": "X Post",
"extText": "Text",
"extImage": "Image",
"extGeneric": "Extension",
"removeImage": "Remove attachment",
"invalidImageIndex": "Invalid current attachment index; cannot remove",
"removeImageConfirmTitle": "Remove this attachment?",
"removeImageRemoteFailed": "Attachment removed from the editor, but the server delete failed; the file may remain on the backend",
"restoreDraftTitle": "Restore local draft",
"restoreDraftDesc": "An unpublished local draft was detected. Restore it?",
"restoreDraftRecovered": "Local draft restored",
"imageUrlRequired": "Attachment URL cannot be empty",
"externalRegisterFailed": "Failed to register external image, please retry",
"uploadNoPreviewUrl": "Upload finished but preview URL is missing, please retry",
"fileUploadingWait": "Attachments are still uploading. Please wait before publishing",
"attachmentMissingFileId": "There are attachments without bound file_id",
"updateEchoEmpty": "Echo to update cannot be empty!",
"addEchoEmpty": "Echo to publish cannot be empty!",
"publishing": "🚀 Publishing...",
"publishSuccess": "🎉 Published successfully!",
"publishFailed": "😭 Publish failed, please try again later!",
"noEchoToUpdate": "No Echo selected for update!",
"syncingFiles": "🔁 Syncing attachments...",
"updating": "🚀 Updating...",
"updateSuccess": "🎉 Updated successfully!",
"updateSuccessWithSync": "🔁 Attachments changed and Echo was synced automatically!",
"updateFailed": "😭 Update failed, please try again later!",
"websiteUrlRequired": "Website URL cannot be empty!",
"externalLink": "External link",
"exitUpdateModeSuccess": "Exited update mode",
"videoShareLinkInvalid": "Please enter a valid Bilibili/YouTube share URL!",
"enteredUpdateMode": "Entered update mode. Edit content and click update!",
"fullscreenEdit": "Fullscreen edit",
"exitFullscreen": "Exit fullscreen",
"bold": "Bold",
"italic": "Italic",
"heading": "Heading",
"quote": "Quote",
"unorderedList": "Unordered list",
"codeBlock": "Code block",
"addedLabel": "Added:",
"noContentAdded": "No content added yet"
},
"commentManager": {
"tabSetting": "Comment Settings",
"tabManage": "Comment Management",
"title": "Comment System Settings",
"subtitle": "Manage comment toggles, moderation policy, and captcha settings in one place.",
"listTitle": "Comment Management",
"listSubtitle": "View, moderate, and manage all comments.",
"enableCommentTitle": "Enable comments",
"enableCommentDesc": "When disabled, the public comment area is hidden.",
"requireApprovalTitle": "Guest comments require approval",
"requireApprovalDesc": "When enabled, guest comments enter pending review by default.",
"enableCaptchaTitle": "Enable captcha",
"enableCaptchaDesc": "When enabled, the built-in gocap verifier is used with no extra deployment.",
"searchPlaceholder": "Search nickname, email, or content",
"statusAll": "All statuses",
"status": "Status",
"statusPending": "Pending",
"statusApproved": "Approved",
"statusRejected": "Rejected",
"hotFilter": "Hot filter",
"hotColumn": "Hot",
"hotPicked": "Featured",
"hotNormal": "Normal",
"hotSet": "Set as hot",
"hotUnset": "Unset hot",
"hotAll": "All hot",
"hotOnly": "Hot only",
"hotOnlyNot": "Non-hot only",
"nickname": "Nickname",
"email": "Email",
"time": "Time",
"view": "View",
"detail": "Detail",
"approve": "Approve",
"reject": "Reject",
"delete": "Delete",
"empty": "No comment data",
"total": "{total} total",
"prevPage": "Previous",
"nextPage": "Next",
"pageInfo": "Page {page} / {total}",
"detailTitle": "Comment detail",
"close": "Close",
"website": "Website",
"source": "Source",
"settingUpdated": "Comment settings updated",
"selectFirst": "Please select comments first",
"batchSuccess": "Batch operation completed",
"echoIdMissing": "Original echo ID not found",
"query": "Search",
"batchApprove": "Approve selected",
"batchReject": "Reject selected",
"batchDelete": "Delete selected",
"testEmail": "Test email",
"testEmailSending": "Sending...",
"testEmailSuccess": "Test email sent",
"emailNotifyTitle": "Email notifications",
"emailNotifyDesc": "Notify owner only for new comments, moderation updates, and hot actions.",
"emailNotifyEnableFirst": "Please enable email notifications first",
"smtpHostPlaceholder": "SMTP host",
"smtpPortPlaceholder": "SMTP port",
"smtpUsernamePlaceholder": "SMTP username",
"smtpSenderPlaceholder": "Sender email (From)",
"smtpSenderHint": "Optional. If your SMTP username is not an email address, enter your sender email here.",
"smtpPasswordPlaceholder": "SMTP password",
"smtpPasswordKeepPlaceholder": "Leave blank to keep current password",
"smtpPasswordSavedHint": "Password is already saved; leaving this empty keeps it unchanged."
},
"storageFileList": {
"title": "File Manager",
"refresh": "Refresh",
"refreshing": "Refreshing...",
"localStorage": "Local Storage",
"objectStorage": "Object Storage",
"expanded": "Expanded",
"collapsed": "Collapsed",
"loading": "Loading...",
"loadFailed": "Load failed",
"retry": "Retry",
"emptyFiles": "No files",
"preview": "Preview",
"previewing": "Previewing",
"previewFailed": "Preview failed",
"previewFailedResponse": "Preview failed: server returned unexpected content",
"download": "Download",
"downloading": "Downloading",
"downloadFailed": "Download failed",
"downloadFailedResponse": "Download failed: server returned unexpected content"
},
"auth": {
"loginSuccess": "Signed in successfully, welcome back! 🎉",
"signupSuccess": "Sign up successful, please sign in."
},
"authPage": {
"login": "Login",
"register": "Register",
"usernamePlaceholder": "Enter username",
"passwordPlaceholder": "Enter password",
"backHome": "Back to home",
"passkeyLoginTitle": "Sign in with Passkey",
"oauth2LoginTitle": "Sign in with OAuth2",
"oauth2NotReady": "OAuth2 is not ready. Please complete auth boundary settings in Panel.",
"oauth2UrlUnavailable": "OAuth2 login URL is unavailable",
"invalidPublicKey": "The publicKey from server is invalid",
"passkeyNotReady": "Passkey is not ready. Please complete auth boundary settings in Panel.",
"getCredentialFailed": "Failed to get credential",
"passkeyLoginFailed": "Passkey login failed"
},
"init": {
"ownerEmailPlaceholder": "Owner email",
"ownerUsernamePlaceholder": "Owner username",
"ownerPasswordPlaceholder": "Owner password",
"initializing": "Initializing...",
"initialize": "Initialize",
"initDone": "Initialization completed",
"alreadyInitializedRedirect": "System already initialized, redirecting to login",
"initFailed": "Initialization failed"
},
"hub": {
"emptyList": "Hub list is empty. Add Connect entries in settings first.",
"noAvailableInstance": "No available Hub instances can be connected right now.",
"connectedCount": "Connected to {count} instance(s), loading Echos...",
"loading": "Loading...",
"emptyConnectHint": "No data yet. Add a Connect first.",
"noMoreData": "No more data"
},
"systemLog": {
"level": "Log level",
"allLevels": "All levels",
"keyword": "Keyword",
"keywordPlaceholder": "Enter keyword to filter logs",
"tail": "Tail size",
"tailTitle": "Read recent logs, range 50-1000",
"tailHint": "Read latest N entries (50-1000)",
"applyFilter": "Apply filter",
"clear": "Clear screen",
"autoScroll": "Auto scroll",
"connection": "Connection",
"empty": "No logs",
"sseFallback": "sse-fallback",
"sseParseFailed": "Failed to parse SSE log payload",
"processFailed": "Failed to process system log",
"rawLine": "Raw log line"
},
"dashboard": {
"echoTotal": "Total Echos",
"connectedNodes": "Connected nodes",
"todayEchoCount": "Today's Echos",
"currentVersion": "Current version",
"updateAvailable": "New version {version} available",
"alreadyLatest": "Already up to date",
"checkUpdateFailed": "Failed to check for updates",
"clickToCheckUpdate": "Click to check for updates",
"activityTitle": "Activity",
"activityAccent": "Log",
"visitorTitle": "Visitor",
"visitorAccent": "Stats",
"visitorPv": "Page Views",
"visitorUv": "Unique Visitors",
"visitorEmpty": "No visitor data yet"
},
"tagPileWidget": {
"title": "Tech",
"accent": "Stacks",
"empty": "No trending tags"
},
"panelPage": {
"friend": "friend",
"welcomeBack": "Welcome back, {username}",
"welcomeTip": "Capture one more spark of inspiration today",
"selectPage": "Select page",
"logout": "Logout",
"loginOrSignup": "Login / Signup",
"login": "Login",
"greetingEarlyMorning": "Good early morning",
"greetingMorning": "Good morning",
"greetingAfternoon": "Good afternoon",
"greetingEvening": "Good evening",
"notLogin": "You are not logged in",
"logoutConfirmTitle": "Are you sure you want to logout?",
"logoutSuccess": "Logged out"
},
"panelPageNav": {
"dashboard": "Dashboard",
"setting": "Settings",
"userCenter": "Users",
"storage": "Storage",
"dataManagement": "Data",
"comment": "Comments",
"sso": "SSO",
"extension": "Extensions",
"advance": "Integrations",
"systemLog": "Logs"
},
"homeNav": {
"themeToggleTitle": "Toggle theme (next: {mode})",
"localeToggleTitle": "Switch language",
"localeSyncFailed": "Failed to sync language preference",
"themeLight": "Light",
"themeDark": "Dark",
"themeSunny": "Sunny",
"githubAction": "GitHub"
},
"homeTop": {
"searchTitle": "Search",
"searchPlaceholder": "Search...",
"rssTitle": "RSS"
},
"zenMode": {
"tooltip": "Enter Zen Mode (immersive browse)",
"exit": "Exit Zen Mode",
"openDetail": "Open detail",
"bwOn": "Switch to monochrome (hover a card to restore color)",
"bwOff": "Restore color",
"bwToastOn": "Switched to black & white",
"bwToastOff": "Switched to color",
"empty": "No content yet",
"noMore": "You've reached the end"
},
"commandPalette": {
"title": "Quick search",
"placeholder": "Search content…",
"keywordLabel": "Keyword",
"dateRangeLabel": "Posted date",
"dateFromLabel": "From",
"dateToLabel": "To",
"dateRangeToday": "Today",
"dateRangeLast7Days": "Last 7 days",
"dateRangeLast30Days": "Last 30 days",
"dateRangeThisYear": "This year",
"tagsLabel": "Tags",
"tagsHint": "Match any",
"tagsEmpty": "No tags yet",
"tagsClear": "Clear tags",
"tagsMoreHidden": "{count} more",
"tagsShowLess": "Show less",
"apply": "Apply",
"reset": "Clear",
"close": "Close",
"kbdApply": "Apply",
"kbdClose": "Close",
"activeChipDatePrefix": "Date",
"rangeSeparator": "to",
"activeCountSuffix": "{count} filters active"
},
"homeSidebar": {
"home": "Feed",
"panel": "Settings",
"publish": "Publish",
"plaza": "Explore",
"status": "Status",
"tags": "Tags"
},
"homeBio": {
"tagline": "Welcome"
},
"homeFooter": {},
"homeFeed": {
"noMore": "No more data",
"noMoreFiltered": "No more data",
"loading": "Loading...",
"older": "Before",
"newer": "After"
},
"dateTime": {
"justNow": "Just now",
"minutesAgo": "{count}m ago",
"hoursAgo": "{count}h ago",
"daysAgo": "{count}d ago"
},
"connectWidget": {
"noConnections": "No active connections",
"loading": "Loading...",
"tooltipOwner": "Owner",
"tooltipTotal": "Total",
"tooltipToday": "Today",
"tooltipVersion": "Version",
"jumpToEchoDetail": "View related Echo details",
"randomCommentLoading": "Picking a featured comment...",
"noFeaturedComment": "No featured comments to show."
},
"heatmap": {
"tooltip": "{date}: {count} entries"
},
"echoDetail": {
"share": "Share",
"like": "Like",
"alreadyLiked": "You already liked this, thanks for the support!",
"likeSuccess": "Liked successfully!",
"copied": "Link copied to clipboard!",
"shareSuffix": "Shared via Ech0",
"sharePanelTitle": "Share this Ech0",
"shareSystem": "System share",
"shareCopyMarkdown": "Copy as Markdown",
"shareCopyLink": "Copy link",
"shareCopyFailed": "Copy failed, please try again.",
"shareMarkdownCopied": "Markdown copied to clipboard!",
"metaWordCountValue": "{count} words",
"metaPrivate": "Private"
},
"commentSection": {
"disabled": "Commenting is disabled.",
"loading": "Loading comments...",
"empty": "No comments yet. Be the first to leave one.",
"publishComment": "Post comment",
"commentCount": "{count} comments",
"markdownSupported": "Markdown supported",
"verifiedUser": "Registered user on this instance",
"livePreview": "Live preview",
"nicknameRequired": "Nickname (required)",
"emailRequired": "Email (required)",
"websiteOptional": "Website (optional)",
"commentPlaceholder": "Write your comment...",
"submitting": "Submitting...",
"submitComment": "Submit comment",
"reply": "Reply",
"replyingTo": "Replying to {'@'}{nickname}",
"cancelReply": "Cancel reply",
"inReplyTo": "Reply to {'@'}{nickname}",
"inReplyToFloor": "Reply to #{floor}",
"commentPublished": "Comment published",
"commentSubmittedPending": "Comment submitted, pending approval",
"you": "You",
"captchaLoadFailed": "Failed to load captcha widget, please try again later",
"captchaVerifyFailed": "Captcha verification failed, please retry",
"captchaWidgetError": "Captcha widget error, please refresh and retry",
"captchaLoading": "Captcha widget is loading, please retry shortly",
"completeCaptchaFirst": "Please complete captcha verification first",
"capInitialState": "Verify you're human",
"capVerifyingLabel": "Verifying...",
"capSolvedLabel": "You're human",
"capErrorLabel": "Error",
"capTroubleshootingLabel": "Troubleshooting",
"capWasmDisabled": "Enable WASM for significantly faster solving",
"capVerifyAriaLabel": "Click to verify you're a human",
"capVerifyingAriaLabel": "Verifying, please wait",
"capVerifiedAriaLabel": "Verified",
"capErrorAriaLabel": "An error occurred, please try again",
"publishedAt": "Published at {time}.",
"submittedAtPending": "Submitted at {time}. It will appear after approval."
},
"echoCard": {
"privateStatus": "Private status",
"moreActions": "Echo actions",
"delete": "Delete",
"update": "Update",
"deleteConfirmTitle": "Delete this Echo?",
"deleteConfirmDesc": "This action cannot be undone.",
"deleteSuccess": "Deleted successfully",
"exitUpdateModeFirst": "Please exit update mode first",
"openDetail": "Open detail"
},
"userSetting": {
"title": "User Center",
"avatarAlt": "Avatar",
"changeAvatar": "Change",
"username": "Username",
"email": "Email",
"password": "Password",
"locale": "Language",
"usernamePlaceholder": "Enter username",
"emailPlaceholder": "Enter email",
"passwordPlaceholder": "Enter password",
"avatarUploading": "Uploading avatar...",
"avatarUploadSuccess": "Avatar uploaded successfully!",
"uploadFailed": "Upload failed, please try again later"
},
"userManager": {
"title": "User Manager",
"loading": "Loading...",
"empty": "No other users...",
"username": "Username",
"email": "Email",
"isAdmin": "Admin",
"deleteUser": "Delete user",
"deleteConfirmTitle": "Are you sure to delete this user?",
"deleteConfirmDesc": "This action cannot be undone."
},
"systemSetting": {
"title": "System Settings",
"logoAlt": "Server logo",
"changeLogo": "Change",
"siteTitle": "Site title",
"siteTitlePlaceholder": "Enter site title",
"serverName": "Server name",
"serverNamePlaceholder": "Enter server name",
"serverUrl": "Server URL",
"serverUrlPlaceholder": "Enter server URL with http(s)",
"footerContent": "Footer content",
"footerContentPlaceholder": "Enter footer content",
"footerLink": "Footer link",
"footerLinkPlaceholder": "Optional, with http(s)",
"metingApi": "Meting API",
"metingApiPlaceholder": "Meting API URL with http(s)",
"customCss": "Custom CSS",
"customCssPlaceholder": "Enter custom CSS",
"customJs": "Custom JS",
"customJsPlaceholder": "Enter custom script",
"allowRegister": "Allow registration",
"defaultLocale": "Default language",
"logoUploading": "Uploading server logo...",
"logoUploadSuccess": "Server logo uploaded successfully!",
"uploadFailed": "Upload failed, please try again later"
},
"storageSetting": {
"title": "Object Storage Settings",
"enableS3": "Enable S3 storage",
"enableSsl": "Enable SSL",
"s3Provider": "S3 provider",
"usePathStyle": "Path-style access",
"usePathStyleHint": "Access objects as endpoint/bucket/key (usually required by self-hosted MinIO-like services)",
"endpoint": "S3 endpoint",
"endpointPlaceholder": "S3 endpoint URL",
"accessKey": "Access Key",
"accessKeyPlaceholder": "S3 Access Key",
"secretKey": "Secret Key",
"secretKeyPlaceholder": "S3 Secret Key",
"bucket": "S3 bucket",
"bucketPlaceholder": "S3 bucket name",
"pathPrefix": "Path prefix",
"pathPrefixPlaceholder": "S3 path prefix (optional)",
"region": "S3 region",
"regionPlaceholder": "S3 region",
"cdnDomain": "CDN domain",
"cdnPlaceholder": "S3 CDN domain (optional)",
"testConnection": "Test connection",
"testSuccess": "S3 connection OK",
"testFailed": "S3 connection failed: {detail}"
},
"passkeySetting": {
"description": "Use Passkey (WebAuthn) for passwordless sign-in across devices.",
"healthCheck": "Configuration health check",
"passkeyReady": "Passkey ready",
"ready": "Ready",
"notReady": "Not ready",
"missingItems": "Missing items",
"autofill": "Auto-fill recommended settings",
"securityBoundary": "Passkey security boundary",
"rpIdPlaceholder": "Example: example.com",
"originsPlaceholder": "Separate multiple origins with commas",
"deviceNamePlaceholder": "Device name (optional)",
"bind": "Bind",
"notSupported": "Current browser does not support Passkey / WebAuthn.",
"boundDevices": "Bound devices",
"noDevices": "No devices",
"deviceName": "Device name",
"time": "Time",
"unknown": "Unknown",
"lastUsed": "Last used",
"createdAt": "Created",
"rename": "Rename",
"delete": "Delete",
"invalidPublicKey": "Invalid publicKey returned from server",
"originsMustBeHttp": "WebAuthn Origins must be valid http/https URLs",
"autofillDone": "Recommended settings filled. Click \"Apply\" to save.",
"defaultDeviceName": "Passkey",
"createCredentialFailed": "Failed to create credential",
"bindSuccess": "Bound successfully",
"bindFailed": "Failed to bind",
"deleteConfirmTitle": "Are you sure you want to delete this device?",
"deleteConfirmDesc": "After deletion, this device can no longer be used to sign in.",
"deleted": "Deleted",
"newDeviceNamePrompt": "New device name",
"updated": "Updated"
},
"oauth2Setting": {
"title": "OAuth2 Settings",
"healthCheck": "Configuration health check",
"oauthReady": "OAuth ready",
"ready": "Ready",
"notReady": "Not ready",
"missingItems": "Missing items",
"autofill": "Auto-fill recommended settings",
"autofillDone": "Recommended settings filled. Click \"Apply\" to save.",
"enableOAuth2": "Enable OAuth2",
"template": "OAuth2 template",
"clientIdPlaceholder": "Enter Client ID",
"clientSecretPlaceholder": "Enter Client Secret",
"callbackPlaceholder": "Enter callback URL",
"authUrlPlaceholder": "Enter authorization URL",
"tokenUrlPlaceholder": "Enter token URL",
"userInfoUrlPlaceholder": "Enter user info URL",
"scopesPlaceholder": "Enter scopes, separated by commas",
"enableOidc": "Enable OIDC",
"issuerPlaceholder": "Enter issuer",
"jwksPlaceholder": "Enter JWKS URL",
"securityBoundary": "Authentication security boundary",
"multiUrlPlaceholder": "Separate multiple URLs with commas",
"multiOriginPlaceholder": "Separate multiple origins with commas",
"accountBind": "Account binding",
"bindNotice": "Note: Configure OAuth2 settings first.",
"bound": "Bound",
"bindGithub": "Bind GitHub account",
"bindGoogle": "Bind Google account",
"bindQQ": "Bind QQ account",
"bindCustom": "Bind custom {type} account",
"customAccount": "Custom {type} account",
"customTemplate": "Custom (supports OIDC)",
"redirectAllowlistInvalid": "Redirect Allowlist must be valid http/https URLs",
"corsOriginsInvalid": "CORS Origins must be valid http/https URLs",
"bindSuccess": "OAuth2 account linked successfully",
"bindFailed": "OAuth2 account linking failed, please retry"
},
"exportSetting": {
"title": "Data Export",
"description": "Export a system snapshot for offline archive and migration.",
"exportSnapshot": "Export Snapshot",
"loginRequired": "Please sign in first",
"exporting": "Exporting... please wait",
"exportStarted": "Export started!",
"exportFailed": "Export failed",
"jobTitle": "Snapshot export",
"artifactLabel": "Artifact",
"redownload": "Download again"
},
"agentSetting": {
"title": "Model",
"enableAgent": "Enable Agent",
"protocol": "API Protocol",
"protocolOpenAI": "OpenAI Compatible",
"protocolAnthropic": "Anthropic",
"modelName": "Model name",
"modelPlaceholder": "Enter model name",
"apiKey": "API Key",
"apiKeyPlaceholder": "Enter API Key",
"baseUrl": "Base URL",
"baseUrlPlaceholder": "Enter custom Base URL",
"prompt": "Prompt",
"promptPlaceholder": "Enter custom prompt",
"promptHint": "The custom prompt only applies to the recent summary; it is not used in chat conversations.",
"multimodal": "Multimodal support",
"multimodalHint": "When enabled, images from retrieved Echos are sent to the model so it can understand them (requires a vision-capable model).",
"contextWindow": "Context window",
"contextWindowPlaceholder": "e.g. 256k, 1m — empty defaults to 256k",
"contextWindowHint": "A larger window favors reading everything at once; a smaller one switches to layered summarization sooner. Accepts k / m units (256k = 256000, 1m = 1000000); empty is treated as 256k.",
"testConnection": "Test connection",
"testSuccess": "Connection OK",
"testFailed": "Connection failed: {detail}"
},
"webhookSetting": {
"title": "Webhook",
"description": "Manage event delivery endpoints and runtime status.",
"name": "Name",
"url": "URL",
"secret": "Secret",
"enableWebhook": "Enabled",
"enableWebhookHint": "Disable to pause event delivery to this endpoint",
"namePlaceholder": "Webhook name",
"urlPlaceholder": "Webhook URL (with https/http)",
"secretPlaceholder": "Optional: used for request signature",
"createWebhook": "Create",
"saveWebhook": "Save changes",
"empty": "No webhooks...",
"lastStatus": "Last status",
"statusSuccess": "Success",
"statusFailed": "Failed",
"statusUnknown": "Unknown",
"delete": "Delete webhook",
"fieldNameRequired": "Please provide webhook name",
"fieldUrlRequired": "Please provide webhook URL",
"invalidUrl": "Invalid webhook URL, only http/https are allowed",
"updateSuccess": "Webhook updated successfully",
"operateFailed": "Operation failed, please retry later",
"loading": "Loading webhooks...",
"loadFailed": "Failed to load webhooks",
"retryLoad": "Retry",
"openGuide": "View guide",
"backToManage": "Back",
"guideKicker": "Webhook Guide",
"guideTitle": "Webhook Quick Manual",
"guideDescription": "A concise overview of events, payload shape, signature validation, and failure handling.",
"guideEventsTitle": "Supported Events (Topics)",
"guideEventsDesc": "Only the topics below are forwarded to webhooks.",
"guideHeadersTitle": "Request Headers",
"guideHeaderEvent": "Event topic, for example echo.created",
"guideHeaderEventId": "Unique event id, recommended for idempotency",
"guideHeaderTimestamp": "Unix timestamp in UTC, recommended for replay protection",
"guideHeaderSignature": "Optional signature header in format sha256=<hex>",
"guideHeaderUserAgent": "Fixed value: Ech0-Webhook-Client",
"guideBodyTitle": "Request Body",
"guideBodyTopic": "Event topic",
"guideBodyEventName": "Event type name (backend event struct name)",
"guideBodyPayloadRaw": "Raw business payload",
"guideBodyMetadata": "Additional metadata",
"guideBodyOccurredAt": "Event occurrence time (UTC timestamp)",
"guideExampleTitle": "Request Example",
"guideExampleDesc": "A typical webhook JSON payload looks like this:",
"deleteConfirmTitle": "Delete this webhook?",
"deleteConfirmDesc": "This action cannot be undone.",
"deleteSuccess": "Webhook deleted successfully"
},
"accessTokenSetting": {
"title": "Access Tokens",
"empty": "No access tokens...",
"token": "Token",
"name": "Name",
"createdAt": "Created At",
"expiry": "Expiry",
"audience": "Audience",
"audiencePlaceholder": "Select audience",
"audiencePublicClient": "Public Client",
"audienceCli": "CLI",
"audienceIntegration": "Integration",
"audienceMcpRemote": "MCP (AI Agent)",
"scopes": "Scopes",
"scopesHint": "Select only the minimum scopes required for this token.",
"scopeGroupContent": "Content",
"scopeGroupFile": "Files",
"scopeGroupConnect": "Connect",
"scopeGroupProfile": "Profile",
"scopeGroupAdmin": "Admin",
"scopeEchoRead": "Read echoes",
"scopeEchoWrite": "Create/Edit echoes",
"scopeCommentRead": "Read comments",
"scopeCommentWrite": "Write comments",
"scopeCommentModerate": "Moderate comments",
"scopeFileRead": "Read files",
"scopeFileWrite": "Upload/Manage files",
"scopeConnectRead": "View peer connections",
"scopeConnectWrite": "Manage peer connections",
"scopeProfileRead": "Read profile",
"scopeProfileWrite": "Modify profile",
"scopeAdminSettings": "Manage system settings",
"scopeAdminUser": "Manage users",
"scopeAdminToken": "Manage tokens",
"copyToken": "Copy token",
"detail": "Detail",
"viewDetail": "View token detail",
"detailTitle": "Access Token Detail",
"detailOverview": "Overview",
"closeDetail": "Close",
"neverExpire": "Never expires",
"expiryOption8Hours": "8 Hours",
"expiryOption1Month": "1 Month",
"expiryOptionNever": "Never",
"deleteToken": "Delete token",
"namePlaceholder": "Token name",
"cancelAdd": "Cancel adding",
"addToken": "Add Access Token",
"fillName": "Please provide a token name",
"selectScopes": "Please select at least one scope",
"scopeEmpty": "No scope information",
"securityHint": "Tip: avoid granting admin scopes unless they are truly required.",
"createSuccess": "Access token created successfully",
"createFailed": "Failed to create access token, please check inputs and permissions",
"tokenEmpty": "Token is empty and cannot be copied",
"copySuccess": "Token copied to clipboard",
"copyFailed": "Copy failed, please check clipboard permission",
"deleteConfirmTitle": "Delete this access token?",
"deleteSuccess": "Access token deleted successfully"
},
"dataManagement": {
"tabImport": "Import",
"tabExport": "Export",
"tabSnapshot": "Snapshot"
},
"storageManagement": {
"tabObjectStorage": "Object Storage",
"tabFiles": "File Manager"
},
"ssoManagement": {
"tabOAuth2": "OAuth2",
"tabPasskey": "Passkey"
},
"extensionManagement": {
"tabConnect": "Connect",
"tabCopilot": "Copilot"
},
"userManagement": {
"tabAccount": "Account Settings",
"tabManage": "User Manager"
},
"settingManagement": {
"tabSystem": "System Settings",
"tabAccessToken": "Access Tokens"
},
"migrationSetting": {
"title": "Data Import",
"description": "Supports importing data from Ech0 v4 and Memos.",
"inDevelopment": "In development",
"sourceZip": "Source zip package",
"pickZip": "Choose zip file",
"noFileSelected": "No file selected",
"startMigration": "Start migration",
"refreshStatus": "Refresh status",
"cancelJob": "Cancel job",
"cleanup": "Finish/Cleanup migration",
"uploadingTip": "Uploading and extracting file, please wait...",
"creatingTip": "Upload completed, creating migration job...",
"jobTitle": "Migration Job",
"source": "Source",
"totalProcessed": "Processed",
"success": "Success",
"failed": "Failed",
"jobId": "Job ID",
"startedAt": "Started At",
"finishedAt": "Finished At",
"uploading": "Uploading...",
"creating": "Creating job...",
"processing": "Migration request is being processed, please wait",
"sourceInDevelopment": "{source} migration is under development",
"onlyZip": "Only zip files are supported",
"memosUnavailable": "Memos migration is under development",
"cleanupFirst": "Please finish/cleanup current migration first",
"selectZipFirst": "Please choose a zip file first",
"uploadingRequest": "Uploading migration package, do not close this page",
"uploadFailed": "Failed to upload migration package",
"createJobFailed": "Failed to create migration job",
"started": "Migration started",
"requestFailed": "Upload request failed, please check network or reverse proxy limits",
"refreshFailed": "Failed to query migration status",
"refreshed": "Status refreshed",
"noRunningJob": "No running migration job",
"cancelFailed": "Failed to cancel job",
"cancelled": "Migration cancelled",
"cleanupFailed": "Failed to cleanup migration",
"cleaned": "Migration records cleaned",
"sourceEch0": "Supports importing from Ech0",
"sourceMemos": "Supports Memos (in development)",
"statusIdle": "Idle",
"statusPending": "Pending",
"statusRunning": "Running",
"statusSuccess": "Completed",
"statusFailed": "Failed",
"statusCancelled": "Cancelled"
},
"connectSetting": {
"description": "Connect to other Ech0 nodes for federation.",
"addConnect": "Create",
"urlPlaceholder": "Enter Connect URL (with https/http)",
"connectHint": "Only http/https URLs are supported.",
"connect": "Connect",
"status": "Status",
"version": "Version",
"statusOnline": "Online",
"statusOffline": "Offline",
"statusChecking": "Checking",
"empty": "No connections...",
"connectUrl": "Connect URL",
"disconnect": "Disconnect",
"enterAddress": "Please enter a Connect URL",
"invalidUrl": "Invalid Connect URL format, only http/https is supported",
"disconnectConfirmTitle": "Are you sure you want to disconnect?"
},
"cronEditor": {
"frequency": "Frequency",
"freqDaily": "Daily",
"freqWeekly": "Weekly",
"freqMonthly": "Monthly",
"freqHourly": "Hourly",
"freqCustom": "Custom (Crontab)",
"time": "Time",
"weekday": "Weekday",
"dayOfMonth": "Day of month",
"everyInterval": "Interval",
"customExpression": "Expression",
"customPlaceholder": "e.g. 0 2 * * 0",
"weekdaySun": "Sunday",
"weekdayMon": "Monday",
"weekdayTue": "Tuesday",
"weekdayWed": "Wednesday",
"weekdayThu": "Thursday",
"weekdayFri": "Friday",
"weekdaySat": "Saturday",
"dayN": "Day {n}",
"everyNHours": "Every {n} hour(s)",
"humanDaily": "Runs every day at {time}",
"humanWeekly": "Runs every {weekday} at {time}",
"humanMonthly": "Runs on day {day} of every month at {time}",
"humanHourly": "Runs every {n} hour(s)",
"humanCustom": "Runs on a custom schedule"
},
"snapshotScheduleSetting": {
"title": "Scheduled Snapshot",
"description": "Configure automatic snapshot creation and trigger snapshots manually.",
"enableAutoSnapshot": "Auto create snapshots",
"crontab": "Snapshot schedule",
"manualLabel": "Manual",
"createNow": "Create snapshot now",
"creating": "Creating...",
"jobTitle": "Snapshot creation",
"createSuccess": "Snapshot created",
"createFailed": "Snapshot creation failed"
},
"uploader": {
"dropHere": "Drag, paste or click to select images",
"dropHereAudio": "Drag or click to select audio",
"dropHereVideo": "Drag or click to select video",
"dropHint": "Up to {max} files at a time",
"dropHintSingle": "Up to {max}",
"cancelAll": "Cancel all",
"retry": "Retry",
"removeItem": "Remove",
"reorderHint": "Drag to reorder images",
"compressionTooltip": "Before {from} → After {to}",
"compressionNone": "Original",
"compressionNoneTooltip": "Already optimal or format unsupported — no compression applied",
"statusPending": "Pending",
"statusCompressing": "Compressing",
"statusSuccess": "Uploaded",
"statusCancelled": "Cancelled",
"statusError": "Failed",
"uploadingProgress": "Uploading {active} file(s)...",
"maxFilesReached": "Max {max} files; extras ignored",
"fileTooLarge": "{name} exceeds the {max} per-file limit; skipped",
"uploadError": "An error occurred while uploading 😢",
"loginRequired": "Please log in before uploading 😢",
"missingFileIdentifier": "Upload response missing file identifier; cannot bind to Echo",
"fileMetaFillbackFailed": "Failed to write back file metadata"
},
"markdown": {
"expand": "Expand",
"collapse": "Collapse",
"copy": "Copy",
"copied": "Copied",
"taskCheckboxLabel": "Task checkbox"
},
"baseSelect": {
"empty": "No options",
"pleaseSelect": "Please select"
},
"commonNav": {
"backHome": "Back to home",
"back": "back"
},
"about": {
"linkAriaLabel": "About this Ech0 instance",
"fieldSource": "Source",
"viewSource": "View source on GitHub",
"viewSourceAtCommit": "View source {'@'} {commit} on GitHub",
"poweredBy": "Powered by Ech0"
},
"echoPage": {
"loadingDetail": "Loading Echo details..."