-
-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathen.json
More file actions
1368 lines (1368 loc) · 55.3 KB
/
en.json
File metadata and controls
1368 lines (1368 loc) · 55.3 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
{
"$schema": "../schema.json",
"seo": {
"home": {
"title": "npmx - Package Browser for the npm Registry",
"description": "a fast, modern browser for the npm registry. Search, browse, and explore packages with a modern interface."
}
},
"built_at": "built {0}",
"alt_logo": "npmx logo",
"tagline": "a fast, modern browser for the npm registry",
"non_affiliation_disclaimer": "not affiliated with npm, Inc.",
"trademark_disclaimer": "npm is a registered trademark of npm, Inc. This site is not affiliated with npm, Inc.",
"footer": {
"about": "about",
"blog": "blog",
"docs": "docs",
"source": "source",
"social": "social",
"chat": "chat",
"builders_chat": "builders",
"keyboard_shortcuts": "keyboard shortcuts"
},
"shortcuts": {
"section": {
"global": "Global",
"search": "Search",
"package": "Package"
},
"focus_search": "Focus search",
"show_kbd_hints": "Highlight keyboard hints",
"settings": "Open settings",
"compare": "Open compare",
"compare_from_package": "Open compare (prefilled with current package)",
"navigate_results": "Navigate results",
"go_to_result": "Go to result",
"open_code_view": "Open code view",
"open_docs": "Open docs",
"disable_shortcuts": "You can disable keyboard shortcuts in {settings}."
},
"search": {
"label": "Search npm packages",
"placeholder": "search packages...",
"button": "search",
"searching": "Searching...",
"found_packages": "No packages found | Found 1 package | Found {count} packages",
"found_packages_sorted": "No results found | Sorting top {count} result | Sorting top {count} results",
"updating": "(updating...)",
"no_results": "No packages found for \"{query}\"",
"rate_limited": "Hit npm rate limit, try again in a moment",
"title": "search",
"title_search": "search: {search}",
"title_packages": "search packages",
"meta_description": "Search results for '{search}'",
"meta_description_packages": "Search npm packages",
"not_taken": "{name} is not taken",
"claim_prompt": "Claim this package name on npm",
"claim_button": "Claim \"{name}\"",
"want_to_claim": "Want to claim this package name?",
"start_typing": "Start typing to search packages",
"algolia_disclaimer": "Powered by Algolia",
"exact_match": "exact",
"suggestion": {
"user": "user",
"org": "org",
"view_user_packages": "View packages by this user",
"view_org_packages": "View packages by this organization"
},
"instant_search": "Instant search",
"instant_search_on": "on",
"instant_search_off": "off",
"instant_search_turn_on": "turn on",
"instant_search_turn_off": "turn off",
"instant_search_advisory": "{label} {state} — {action}"
},
"nav": {
"main_navigation": "Main",
"popular_packages": "Popular packages",
"settings": "settings",
"compare": "compare",
"back": "back",
"menu": "Menu",
"mobile_menu": "Navigation menu",
"open_menu": "Open menu",
"links": "Links",
"tap_to_search": "Tap to search"
},
"blog": {
"title": "Blog",
"heading": "blog",
"meta_description": "Insights and updates from the npmx community",
"author": {
"view_profile": "View {name}'s profile on Bluesky"
},
"draft_badge": "Draft",
"draft_banner": "This is an unpublished draft. It may be incomplete or contain inaccuracies.",
"atproto": {
"view_on_bluesky": "View on Bluesky",
"reply_on_bluesky": "Reply on Bluesky",
"likes_on_bluesky": "Likes on Bluesky",
"like_or_reply_on_bluesky": "Like this post or add your comment on Bluesky",
"no_comments_yet": "No comments yet.",
"could_not_load_comments": "Could not load comments.",
"comments": "Comments",
"loading_comments": "Loading comments...",
"updating": "Updating...",
"reply_count": "{count} reply | {count} replies",
"like_count": "{count} like | {count} likes",
"repost_count": "{count} repost | {count} reposts",
"more_replies": "{count} more reply... | {count} more replies..."
}
},
"settings": {
"title": "settings",
"tagline": "customize your npmx experience",
"meta_description": "Customize your npmx.dev experience with theme, language, and display preferences.",
"sections": {
"appearance": "Appearance",
"display": "Display",
"search": "Search features",
"language": "Language",
"keyboard_shortcuts": "Keyboard shortcuts"
},
"data_source": {
"label": "Data source",
"description": "Choose where npmx gets search data. Individual package pages always use the npm registry directly.",
"npm": "npm Registry",
"npm_description": "Fetches search, org and user listings directly from the official npm registry. Authoritative, but can be slower.",
"algolia": "Algolia",
"algolia_description": "Uses Algolia for faster search, org and user pages."
},
"instant_search": "Instant search",
"instant_search_description": "Navigates to the search page and updates the results as you type.",
"relative_dates": "Relative dates",
"include_types": "Include {'@'}types in install",
"include_types_description": "Add {'@'}types package to install commands for untyped packages",
"hide_platform_packages": "Hide platform-specific packages in search",
"hide_platform_packages_description": "Hide native binary packages like {'@'}esbuild/linux-x64 from results",
"theme": "Theme",
"theme_light": "Light",
"theme_dark": "Dark",
"theme_system": "System",
"language": "Language",
"help_translate": "Help translate npmx",
"accent_colors": "Accent colors",
"clear_accent": "Clear accent color",
"translation_progress": "Translation progress",
"background_themes": "Background shade",
"keyboard_shortcuts_enabled": "Enable keyboard shortcuts",
"keyboard_shortcuts_enabled_description": "Keyboard shortcuts can be disabled if they conflict with other browser or system shortcuts"
},
"i18n": {
"missing_keys": "{count} missing translation | {count} missing translations",
"copy_keys": "Copy keys",
"show_more_keys": "Show {count} more...",
"contribute_hint": "Help improve this translation by adding the missing keys.",
"edit_on_github": "Edit on GitHub",
"view_guide": "Translation guide"
},
"error": {
"401": "Unauthorized",
"404": "Page not found",
"500": "Internal server error",
"503": "Service unavailable",
"default": "Something went wrong"
},
"common": {
"loading": "Loading...",
"loading_more": "Loading more...",
"loading_packages": "Loading packages...",
"end_of_results": "End of results",
"try_again": "Try again",
"close": "Close",
"or": "or",
"retry": "Retry",
"copy": "copy",
"copied": "copied!",
"skip_link": "Skip to main content",
"warnings": "Warnings:",
"go_back_home": "Go back home",
"per_week": "/ week",
"vanity_downloads_hint": "Vanity number: no packages displayed | Vanity number: for the displayed package | Vanity number: Sum of {count} displayed packages",
"sort": {
"name": "name",
"role": "role",
"members": "members"
},
"scroll_to_top": "Scroll to top",
"cancel": "Cancel",
"save": "Save",
"edit": "Edit",
"error": "Error",
"view_on": {
"npm": "view on npm",
"github": "View on GitHub",
"gitlab": "View on GitLab",
"bitbucket": "View on Bitbucket",
"codeberg": "View on Codeberg",
"git_repo": "View on Git repository",
"forgejo": "View on Forgejo",
"gitea": "View on Gitea",
"gitee": "View on Gitee",
"radicle": "View on Radicle",
"sourcehut": "View on SourceHut",
"tangled": "View on Tangled"
}
},
"profile": {
"display_name": "Display Name",
"description": "Description",
"no_description": "No description",
"website": "Website",
"website_placeholder": "https://example.com",
"likes": "Likes",
"seo_title": "{handle} - npmx",
"seo_description": "npmx profile by {handle}",
"not_found": "Profile Not Found",
"not_found_message": "The profile for {handle} could not be found.",
"invite": {
"message": "It doesn't look like they're using npmx yet. Want to tell them about it?",
"share_button": "Share on Bluesky",
"compose_text": "Hey {'@'}{handle}! Have you checked out npmx.dev yet? It's a browser for the npm registry that's fast, modern, and open-source.\nhttps://npmx.dev"
}
},
"package": {
"not_found": "Package Not Found",
"not_found_message": "The package could not be found.",
"no_description": "No description provided",
"not_latest": "(not latest)",
"verified_provenance": "Verified provenance",
"view_permalink": "View permalink for this version",
"navigation": "Package",
"copy_name": "Copy package name",
"copy_version": "Copy package version",
"deprecation": {
"package": "This package has been deprecated.",
"version": "This version has been deprecated.",
"no_reason": "No reason provided"
},
"size_increase": {
"title_size": "Significant size increase since v{version}",
"title_deps": "Significant dependency count increase since v{version}",
"title_both": "Significant size and dependency increase since v{version}",
"size": "Install size increased by {percent} ({size} larger)",
"deps": "{count} more dependencies"
},
"replacement": {
"title": "You might not need this dependency.",
"native": "This can be replaced with {replacement}, available since Node {nodeVersion}.",
"simple": "The {community} has flagged this package as redundant, with the advice: {replacement}.",
"documented": "The {community} has flagged this package as having more performant alternatives.",
"none": "This package has been flagged as no longer needed, and its functionality is likely available natively in all engines.",
"learn_more": "Learn more",
"learn_more_above": "Learn more above.",
"mdn": "MDN",
"community": "community",
"consider_no_dep": "+ Consider no dep?"
},
"stats": {
"license": "License",
"deps": "Deps",
"install_size": "Install Size",
"vulns": "Vulns",
"published": "Published",
"published_tooltip": "Date {package}{'@'}{version} was published",
"view_dependency_graph": "View dependency graph",
"inspect_dependency_tree": "Inspect dependency tree",
"size_tooltip": {
"unpacked": "{size} unpacked size (this package)",
"total": "{size} total unpacked size (including {count} dependency for linux-x64) | {size} total unpacked size (including all {count} dependencies for linux-x64)"
}
},
"skills": {
"title": "Agent Skills",
"skills_available": "{count} skill available | {count} skills available",
"compatible_with": "Compatible with {tool}",
"install": "Install",
"installation_method": "Installation method",
"learn_more": "Learn more",
"available_skills": "Available Skills",
"click_to_expand": "Click to expand",
"no_description": "No description",
"file_counts": {
"scripts": "{count} script | {count} scripts",
"refs": "{count} ref | {count} refs",
"assets": "{count} asset | {count} assets"
},
"view_source": "View source"
},
"links": {
"repo": "repo",
"homepage": "homepage",
"issues": "issues",
"jsr": "jsr",
"code": "code",
"docs": "docs",
"fund": "fund",
"compare": "compare"
},
"likes": {
"like": "Like this package",
"unlike": "Unlike this package"
},
"docs": {
"not_available": "Docs not available",
"not_available_detail": "We could not generate docs for this version."
},
"get_started": {
"title": "Get started",
"pm_label": "Package manager",
"copy_command": "Copy install command",
"copy_dev_command": "Copy dev install command",
"dev_dependency_hint": "Usually installed as a dev dependency",
"view_types": "View {package}"
},
"create": {
"title": "Create new project",
"copy_command": "Copy create command",
"view": "{packageName} has the same maintainer. Click for more details."
},
"run": {
"title": "Run",
"locally": "Run locally"
},
"readme": {
"title": "Readme",
"no_readme": "No README available.",
"toc_title": "Outline",
"callout": {
"note": "Note",
"tip": "Tip",
"important": "Important",
"warning": "Warning",
"caution": "Caution"
},
"copy_as_markdown": "Copy README as Markdown"
},
"provenance_section": {
"title": "Provenance",
"built_and_signed_on": "Built and signed on {provider}",
"view_build_summary": "View build summary",
"source_commit": "Source Commit",
"build_file": "Build File",
"public_ledger": "Public Ledger",
"transparency_log_entry": "Transparency log entry",
"view_more_details": "View more details",
"error_loading": "Failed to load provenance details"
},
"security_downgrade": {
"title": "Trust downgrade",
"description_to_none_provenance": "This version was published without {provenance}.",
"description_to_none_trustedPublisher": "This version was published without {trustedPublishing}.",
"description_to_provenance_trustedPublisher": "This version uses {provenance} but not {trustedPublishing}.",
"fallback_install_provenance": "Install commands are pinned to {version}, the last version with provenance.",
"fallback_install_trustedPublisher": "Install commands are pinned to {version}, the last version with trusted publishing.",
"provenance_link_text": "provenance",
"trusted_publishing_link_text": "trusted publishing"
},
"keywords_title": "Keywords",
"compatibility": "Compatibility",
"card": {
"publisher": "Publisher",
"published": "Published",
"weekly_downloads": "Weekly downloads",
"keywords": "Keywords",
"license": "License"
},
"versions": {
"title": "Versions",
"collapse": "Collapse {tag}",
"expand": "Expand {tag}",
"collapse_other": "Collapse other versions",
"expand_other": "Expand other versions",
"collapse_major": "Collapse major {major}",
"expand_major": "Expand major {major}",
"other_versions": "Other versions",
"more_tagged": "{count} more tagged",
"all_covered": "All versions are covered by tags above",
"deprecated_title": "{version} (deprecated)",
"view_all": "View {count} version | View all {count} versions",
"distribution_title": "Semver Group",
"distribution_modal_title": "Versions",
"distribution_range_date_same_year": "from {from} to {to}, {endYear}",
"distribution_range_date_multiple_years": "from {from}, {startYear} to {to}, {endYear}",
"grouping_major": "Major",
"grouping_minor": "Minor",
"grouping_versions_title": "Versions",
"grouping_versions_all": "All",
"grouping_versions_only_recent": "Only recent",
"grouping_usage_title": "Usage",
"grouping_usage_all": "All",
"grouping_usage_most_used": "Most used",
"recent_versions_only_tooltip": "Show only versions published within the last year.",
"show_low_usage_tooltip": "Include version groups with less than 1% of total downloads.",
"y_axis_label": "Downloads",
"filter_placeholder": "Filter by semver (e.g. ^3.0.0)",
"filter_invalid": "Invalid semver range",
"filter_help": "Semver range filter help",
"filter_tooltip": "Filter versions using a {link}. For example, ^3.0.0 shows all 3.x versions.",
"filter_tooltip_link": "semver range",
"no_matches": "No versions match this range",
"copy_alt": {
"per_version_analysis": "{version} version was downloaded {downloads} times",
"general_description": "Bar chart showing per-version downloads for {versions_count} {semver_grouping_mode} versions of the {package_name} package, {date_range_label} from the {first_version} version to the {last_version} version. The most downloaded version is {max_downloaded_version} with {max_version_downloads} downloads. {per_version_analysis}. {watermark}."
}
},
"dependencies": {
"title": "Dependency ({count}) | Dependencies ({count})",
"list_label": "Package dependencies",
"show_all": "show {count} dep | show all {count} deps",
"optional": "optional",
"view_vulnerabilities": "View vulnerabilities",
"outdated_major": "{count} major version behind (latest: {latest}) | {count} major versions behind (latest: {latest})",
"outdated_minor": "{count} minor version behind (latest: {latest}) | {count} minor versions behind (latest: {latest})",
"outdated_patch": "Patch update available (latest: {latest})",
"has_replacement": "This dependency has suggested replacements"
},
"peer_dependencies": {
"title": "Peer Dependency ({count}) | Peer Dependencies ({count})",
"list_label": "Package peer dependencies",
"show_all": "show {count} peer dep | show all {count} peer deps"
},
"optional_dependencies": {
"title": "Optional Dependency ({count}) | Optional Dependencies ({count})",
"list_label": "Package optional dependencies",
"show_all": "show {count} optional dep | show all {count} optional deps"
},
"maintainers": {
"title": "Maintainers",
"list_label": "Package maintainers",
"you": "(you)",
"via": "via {teams}",
"remove_owner": "Remove {name} as owner",
"username_to_add": "Username to add as owner",
"username_placeholder": "username...",
"add_button": "add",
"cancel_add": "Cancel adding owner",
"add_owner": "+ Add owner",
"show_more": "(show {count} more)",
"show_less": "(show fewer)"
},
"trends": {
"granularity": "Granularity",
"granularity_daily": "Daily",
"granularity_weekly": "Weekly",
"granularity_monthly": "Monthly",
"granularity_yearly": "Yearly",
"start_date": "Start",
"end_date": "End",
"loading": "Loading...",
"date_range": "{start} to {end}",
"date_range_multiline": "{start}\nto {end}",
"download_file": "Download {fileType}",
"toggle_annotator": "Toggle annotator",
"toggle_stack_mode": "Toggle stack mode",
"open_options": "Open options",
"close_options": "Close options",
"legend_estimation": "Estimation",
"no_data": "No data available",
"y_axis_label": "{granularity} {facet}",
"facet": "Facet",
"title": "Trends",
"contributors_skip": "Not shown in Contributors (no GitHub repo):",
"items": {
"downloads": "Downloads",
"likes": "Likes",
"contributors": "Contributors"
},
"data_correction": "Data correction",
"average_window": "Average window",
"smoothing": "Smoothing",
"prediction": "Prediction",
"known_anomalies": "Known anomalies",
"known_anomalies_description": "Interpolates over known download spikes caused by bots or CI issues.",
"known_anomalies_ranges": "Anomaly ranges",
"known_anomalies_range": "From {start} to {end}",
"known_anomalies_range_named": "{packageName}: from {start} to {end}",
"known_anomalies_none": "No known anomalies for this package. | No known anomalies for these packages.",
"known_anomalies_contribute": "Contribute anomaly data",
"apply_correction": "Apply correction",
"copy_alt": {
"trend_none": "mostly flat",
"trend_strong": "strong",
"trend_weak": "weak",
"trend_undefined": "undefined (insufficient data)",
"button_label": "Copy alt text",
"watermark": "At the bottom, a watermark reads \"./npmx a fast, modern browser for the npm registry\"",
"analysis": "{package_name} starts at {start_value} and ends at {end_value}, showing a {trend} trend with a slope of {downloads_slope} downloads per time interval",
"estimation": "The final value is an estimate based on partial data for the current period.",
"estimations": "The final values are estimates based on partial data for the current period.",
"compare": "Package download comparison line chart for: {packages}.",
"single_package": "Downloads line chart for the {package} package.",
"general_description": "The Y axis represents the number of downloads. The X axis represents the date range, from {start_date} to {end_date}, with a {granularity} time period.{estimation_notice} {packages_analysis}. {watermark}.",
"facet_bar_general_description": "Horizontal bar chart for: {packages}, comparing {facet} ({description}). {facet_analysis} {watermark}.",
"facet_bar_analysis": "{package_name} has a value of {value}."
}
},
"downloads": {
"title": "Weekly Downloads",
"community_distribution": "View community adoption distribution",
"subtitle": "Across all versions"
},
"install_scripts": {
"title": "Install Scripts",
"script_label": "(script)",
"npx_packages": "{count} npx package | {count} npx packages",
"currently": "currently {version}"
},
"playgrounds": {
"title": "Try it out",
"choose": "choose playground"
},
"metrics": {
"esm": "ES Modules supported",
"cjs": "CommonJS supported",
"no_esm": "No ES Modules support",
"types_label": "Types",
"types_included": "Types included",
"types_available": "Types available via {package}",
"no_types": "No TypeScript types"
},
"license": {
"view_spdx": "View license text on SPDX",
"none": "None"
},
"vulnerabilities": {
"tree_found": "{vulns} vulnerability in {packages}/{total} packages | {vulns} vulnerabilities in {packages}/{total} packages",
"show_all_packages": "show {count} affected package | show all {count} affected packages",
"path": "path",
"more": "+{count} more",
"packages_failed": "{count} package could not be checked | {count} packages could not be checked",
"scan_failed": "Could not scan for vulnerabilities",
"severity": {
"critical": "critical",
"high": "high",
"moderate": "moderate",
"low": "low"
},
"fixed_in_title": "Fixed in version {version}"
},
"deprecated": {
"label": "Deprecated",
"tree_found": "{count} deprecated dependency | {count} deprecated dependencies",
"show_all": "show {count} deprecated package | show all {count} deprecated packages"
},
"access": {
"title": "Team Access",
"refresh": "Refresh team access",
"list_label": "Team access list",
"owner": "owner",
"rw": "rw",
"ro": "ro",
"revoke_access": "Revoke {name} access",
"no_access": "No team access configured",
"select_team_label": "Select team",
"loading_teams": "Loading teams...",
"select_team": "Select team",
"permission_label": "Permission level",
"permission": {
"read_only": "read-only",
"read_write": "read-write"
},
"grant_button": "grant",
"cancel_grant": "Cancel granting access",
"grant_access": "+ Grant team access"
},
"list": {
"filter_label": "Filter packages",
"filter_placeholder": "Filter packages...",
"sort_label": "Sort packages",
"showing_count": "Showing {filtered} of {total} packages"
},
"skeleton": {
"loading": "Loading package details",
"maintainers": "Maintainers",
"keywords": "Keywords",
"versions": "Versions",
"dependencies": "Dependencies"
},
"sort": {
"downloads": "Most downloaded",
"published": "Recently published",
"name_asc": "Name (A-Z)",
"name_desc": "Name (Z-A)"
},
"size": {
"b": "{size} B",
"kb": "{size} kB",
"mb": "{size} MB"
}
},
"connector": {
"modal": {
"title": "Local Connector",
"connected": "Connected",
"connected_as_user": "Connected as ~{user}",
"connected_hint": "You can now manage packages and organizations from the web UI.",
"disconnect": "Disconnect",
"run_hint": "Run the connector on your machine to enable admin features.",
"copy_command": "Copy command",
"copied": "Copied",
"paste_token": "Then paste the token below to connect:",
"token_label": "Token",
"token_placeholder": "paste token here...",
"advanced": "Advanced options",
"port_label": "Port",
"warning": "WARNING",
"warning_text": "This allows npmx to access your npm CLI. Only connect to sites you trust.",
"connect": "Connect",
"connecting": "Connecting...",
"auto_open_url": "Automatically open auth page"
}
},
"operations": {
"queue": {
"title": "Operations Queue",
"clear_all": "clear all",
"refresh": "Refresh operations",
"empty": "No operations queued",
"empty_hint": "Add operations from package or org pages",
"active_label": "Active operations",
"otp_required": "OTP required",
"otp_prompt": "Enter OTP to continue",
"otp_placeholder": "Enter OTP code...",
"otp_label": "One-time password",
"retry_otp": "Retry with OTP",
"retry_web_auth": "Retry with web auth",
"retrying": "Retrying...",
"open_web_auth": "Open web auth link",
"approve_operation": "Approve operation",
"remove_operation": "Remove operation",
"approve_all": "Approve All",
"execute": "Execute",
"executing": "Executing...",
"log": "Log",
"log_label": "Completed operations log",
"remove_from_log": "Remove from log"
}
},
"org": {
"teams": {
"title": "Teams",
"refresh": "Refresh teams",
"filter_label": "Filter teams",
"filter_placeholder": "Filter teams...",
"sort_by": "Sort by",
"loading": "Loading teams...",
"no_teams": "No teams found",
"list_label": "Organization teams",
"delete_team": "Delete team {name}",
"member_count": "{count} member | {count} members",
"members_of": "Members of {team}",
"no_members": "No members",
"remove_user": "Remove {user} from team",
"username_to_add": "Username to add to {team}",
"username_placeholder": "username...",
"add_button": "add",
"cancel_add_user": "Cancel adding user",
"add_member": "+ Add member",
"team_name_label": "Team name",
"team_name_placeholder": "team-name...",
"create_button": "create",
"no_match": "No teams match \"{query}\"",
"cancel_create": "Cancel creating team",
"create_team": "+ Create team"
},
"members": {
"title": "Members",
"refresh": "Refresh members",
"filter_label": "Filter members",
"filter_placeholder": "Filter members...",
"filter_by_role": "Filter by role",
"filter_by_team": "Filter by team",
"all_teams": "all teams",
"sort_by": "Sort by",
"loading": "Loading members...",
"no_members": "No members found",
"list_label": "Organization members",
"change_role_for": "Change role for {name}",
"remove_from_org": "Remove {name} from org",
"view_team": "View {team} team",
"no_match": "No members match your filters",
"username_label": "Username",
"username_placeholder": "username...",
"role_label": "Role",
"role": {
"all": "all",
"developer": "developer",
"admin": "admin",
"owner": "owner"
},
"team_label": "Team",
"no_team": "no team",
"add_button": "add",
"cancel_add": "Cancel adding member",
"add_member": "+ Add member"
},
"public_packages": "{count} public package | {count} public packages",
"page": {
"packages_title": "Packages",
"members_tab": "Members",
"teams_tab": "Teams",
"no_packages": "No public packages found for",
"no_packages_hint": "This organization may not exist or has no public packages.",
"failed_to_load": "Failed to load organization packages",
"no_match": "No packages match \"{query}\"",
"not_found": "Organization not found",
"not_found_message": "The organization \"{'@'}{name}\" does not exist on npm"
}
},
"user": {
"combobox": {
"add_to_org_hint": "(will also add to org)",
"press_enter_to_add": "Press Enter to add {'@'}{username}",
"default_placeholder": "username...",
"suggestions_label": "User suggestions"
},
"page": {
"packages_title": "Packages",
"no_packages": "No public packages found for",
"no_packages_hint": "This user may not exist or has no public packages.",
"failed_to_load": "Failed to load user packages",
"no_match": "No packages match \"{query}\"",
"filter_placeholder": "Filter {count} package... | Filter {count} packages..."
},
"orgs_page": {
"title": "Organizations",
"back_to_profile": "Back to profile",
"connect_required": "Connect the local CLI to view your organizations.",
"connect_hint_prefix": "Run",
"connect_hint_suffix": "to get started.",
"own_orgs_only": "You can only view your own organizations.",
"view_your_orgs": "View your organizations",
"loading": "Loading organizations...",
"empty": "No organizations found.",
"empty_hint": "Organizations are detected from your scoped packages.",
"count": "{count} Organization | {count} Organizations",
"packages_count": "{count} package | {count} packages"
}
},
"claim": {
"modal": {
"title": "Claim Package Name",
"success": "Package claimed!",
"success_detail": "{name}{'@'}0.0.0 has been published to npm.",
"success_hint": "You can now publish new versions to this package using npm publish.",
"view_package": "View Package",
"invalid_name": "Invalid package name:",
"available": "This name is available!",
"taken": "This name is already taken.",
"missing_permission": "You do not have permission to add a package to scope {'@'}{scope}.",
"similar_warning": "Similar packages exist - npm may reject this name:",
"related": "Related packages:",
"scope_warning_title": "Consider using a scoped package instead",
"scope_warning_text": "Unscoped package names are a shared resource. Only claim a name if you intend to publish and maintain a package. For personal or organizational projects, use a scoped name like {'@'}{username}/{name}.",
"connect_required": "Connect to the local connector to claim this package name.",
"connect_button": "Connect to Connector",
"publish_hint": "This will publish a minimal placeholder package.",
"preview_json": "Preview package.json",
"claim_button": "Claim Package Name",
"publishing": "Publishing...",
"checking": "Checking availability...",
"failed_to_check": "Failed to check name availability",
"failed_to_claim": "Failed to claim package"
}
},
"code": {
"files_label": "Files",
"no_files": "No files in this directory",
"root": "root",
"lines": "{count} line | {count} lines",
"toggle_tree": "Toggle file tree",
"close_tree": "Close file tree",
"copy_link": "Copy link",
"raw": "Raw",
"view_raw": "View raw file",
"file_too_large": "File too large to preview",
"file_size_warning": "{size} exceeds the 500KB limit for syntax highlighting",
"failed_to_load": "Failed to load file",
"unavailable_hint": "The file may be too large or unavailable",
"version_required": "Version is required to browse code",
"go_to_package": "Go to package",
"loading_tree": "Loading file tree...",
"failed_to_load_tree": "Failed to load files for this package version",
"back_to_package": "Back to package",
"table": {
"name": "Name",
"size": "Size"
},
"markdown_view_mode": {
"preview": "preview",
"code": "code"
},
"file_path": "File path",
"scroll_to_top": "Scroll to top",
"word_wrap": "Word wrap"
},
"badges": {
"provenance": {
"verified": "verified",
"verified_title": "Verified provenance",
"verified_via": "Verified: published via {provider}"
},
"jsr": {
"title": "also available on JSR"
}
},
"filters": {
"title": "Filters",
"search": "Search",
"search_scope": "Search scope",
"search_placeholder_name": "Filter by package name...",
"search_placeholder_description": "Filter by description...",
"search_placeholder_keywords": "Filter by keywords...",
"search_placeholder_all": "Search all or use name: desc: kw:",
"scope_name": "Name",
"scope_name_description": "Search package names only",
"scope_description": "Description",
"scope_description_description": "Search descriptions only",
"scope_keywords": "Keywords",
"scope_keywords_description": "Search keywords only",
"scope_all": "All",
"scope_all_description": "Search all fields, supports name: desc: kw: operators",
"weekly_downloads": "Weekly downloads",
"updated_within": "Updated within",
"security": "Security",
"keywords": "Keywords",
"more_keywords": "+{count} more",
"clear_all": "Clear all",
"remove_filter": "Remove {label} filter",
"chips": {
"search": "Search",
"downloads": "Downloads",
"keyword": "Keyword",
"security": "Security",
"updated": "Updated"
},
"download_range": {
"any": "Any",
"lt100": "< 100",
"100_1k": "100 - 1K",
"1k_10k": "1K - 10K",
"10k_100k": "10K - 100K",
"gt100k": "> 100K"
},
"updated": {
"any": "Any time",
"week": "Past week",
"month": "Past month",
"quarter": "Past 3 months",
"year": "Past year"
},
"security_options": {
"all": "All packages",
"secure": "Without warnings",
"insecure": "With warnings"
},
"sort": {
"label": "Sort packages",
"toggle_direction": "Toggle sort direction",
"ascending": "Ascending",
"descending": "Descending",
"relevance": "Relevance",
"downloads_week": "Downloads/wk",
"downloads_day": "Downloads/day",
"downloads_month": "Downloads/mo",
"downloads_year": "Downloads/yr",
"published": "Last Published",
"name": "Name",
"quality": "Quality",
"popularity": "Popularity",
"maintenance": "Maintenance",
"score": "Score"
},
"columns": {
"title": "Columns",
"show": "Show columns",
"reset": "Reset to defaults",
"coming_soon": "Coming soon",
"name": "Name",
"version": "Version",
"description": "Description",
"downloads": "Downloads/wk",
"published": "Last Published",
"maintainers": "Maintainers",
"keywords": "Keywords",
"quality_score": "Quality score",
"popularity_score": "Popularity score",
"maintenance_score": "Maintenance score",
"combined_score": "Combined score",
"security": "Security"
},
"view_mode": {
"label": "View mode",
"cards": "Card view",
"table": "Table view"
},
"pagination": {
"mode_label": "Pagination mode",
"infinite": "Infinite",
"paginated": "Paginated",
"items_per_page": "Items per page",
"per_page": "{count} / page",
"showing": "{start}-{end} of {total}",
"previous": "Previous page",
"next": "Next page",
"nav_label": "Pagination"
},
"count": {
"showing_filtered": "{filtered} of {count} package | {filtered} of {count} packages",
"showing_all": "{count} package | {count} packages",
"showing_paginated": "{pageSize} of {count} package | {pageSize} of {count} packages"
},
"table": {
"security_warning": "Security warning",
"secure": "Secure",
"no_packages": "No packages found"
}
},
"about": {
"title": "About",
"heading": "about",
"meta_description": "npmx is a fast, modern browser for the npm registry. A better UX/DX for exploring npm packages.",
"what_we_are": {
"title": "What we are",
"better_ux_dx": "better UX/DX",
"admin_ui": "admin UI",
"description": "npmx is a {betterUxDx} for the npm package registry and tooling. We provide a fast, modern interface for exploring packages, with features like dark mode, keyboard navigation, code browsing, and connections to alternative registries like {jsr}.",
"admin_description": "We also aim to provide a better {adminUi} for managing your packages, teams, and organizations — all from the browser, powered by your local npm CLI."
},
"what_we_are_not": {
"title": "What we're not",
"not_package_manager": "Not a package manager.",
"not_registry": "Not a registry.",
"registry_description": "We don't host packages. We're just a better way to browse them.",
"package_managers_exist": "{already} {people} {building} {really} {cool} {package} {managers}.",
"words": {
"already": "There are",
"people": "already",
"building": "people",
"really": "building",
"cool": "really",
"package": "cool",
"managers": "package managers"
}
},
"sponsors": {
"title": "Sponsors"
},
"oss_partners": {
"title": "OSS Partners"
},
"team": {
"title": "Team",
"governance": "Governance",
"role_steward": "steward",
"role_maintainer": "maintainer",
"sponsor": "sponsor",
"sponsor_aria": "Sponsor {name} on GitHub"
},
"contributors": {
"title": "... and {count} more contributor | ... and {count} more contributors",
"description": "npmx is fully open source, built by an amazing community of contributors. Join us and let's build the npm browsing experience we always wanted, together.",
"loading": "Loading contributors...",
"error": "Failed to load contributors",
"view_profile": "View {name}'s GitHub profile"
},
"get_involved": {
"title": "Get involved",
"contribute": {
"title": "Contribute",
"description": "Help us build a better npm experience.",
"cta": "View on GitHub"
},
"community": {
"title": "Join the community",
"description": "Chat, ask questions, and share ideas.",
"cta": "Join Discord"
},
"builders": {
"title": "Help build npmx",
"description": "Join the builders shaping the future of npmx.",
"cta": "Join Builders Discord"
},
"follow": {
"title": "Stay updated",
"description": "Find out the latest on npmx.",
"cta": "Follow on Bluesky"
}
}
},
"account_menu": {
"connect": "connect",
"account": "Account",
"npm_cli": "npm CLI",
"atmosphere": "Atmosphere",
"npm_cli_desc": "Manage packages & orgs",
"atmosphere_desc": "Social features & identity",
"connect_npm_cli": "Connect to npm CLI",
"connect_atmosphere": "Connect to Atmosphere",