-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Expand file tree
/
Copy pathen.json
More file actions
2352 lines (2352 loc) · 105 KB
/
en.json
File metadata and controls
2352 lines (2352 loc) · 105 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
{
"action": {
"add": "Add",
"autoscroll": "Autoscroll",
"cancel": "Cancel",
"choose_file": "Choose a file",
"choose_workspace": "Choose a workspace",
"choose_collection": "Choose a collection",
"select_workspace": "Select a workspace",
"clear": "Clear",
"clear_all": "Clear all",
"clear_cache": "Clear Cache",
"clear_history": "Clear all History",
"clear_unpinned": "Clear Unpinned",
"clear_response": "Clear Response",
"close": "Close",
"confirm": "Confirm",
"connect": "Connect",
"connecting": "Connecting",
"copy": "Copy",
"create": "Create",
"delete": "Delete",
"disconnect": "Disconnect",
"dismiss": "Dismiss",
"done": "Done",
"dont_save": "Don't save",
"download_file": "Download file",
"download_test_report": "Download test report",
"drag_to_reorder": "Drag to reorder",
"duplicate": "Duplicate",
"edit": "Edit",
"filter": "Filter",
"go_back": "Go back",
"go_forward": "Go forward",
"group_by": "Group by",
"hide_secret": "Hide secret",
"label": "Label",
"learn_more": "Learn more",
"download_here": "Download here",
"less": "Less",
"more": "More",
"new": "New",
"no": "No",
"open": "Open",
"open_workspace": "Open workspace",
"paste": "Paste",
"prettify": "Prettify",
"properties": "Properties",
"register": "Register",
"remove": "Remove",
"remove_instance": "Remove instance",
"rename": "Rename",
"restore": "Restore",
"retry": "Retry",
"save": "Save",
"save_as_example": "Save as example",
"add_example": "Add example",
"invalid_request": "Invalid request data",
"scroll_to_bottom": "Scroll to bottom",
"scroll_to_top": "Scroll to top",
"search": "Search",
"send": "Send",
"share": "Share",
"show_secret": "Show secret",
"sort": "Sort",
"start": "Start",
"starting": "Starting",
"stop": "Stop",
"to_close": "to close",
"to_navigate": "to navigate",
"to_select": "to select",
"turn_off": "Turn off",
"turn_on": "Turn on",
"undo": "Undo",
"unpublish": "Unpublish",
"yes": "Yes",
"verify": "Verify",
"enable": "Enable",
"disable": "Disable",
"assign": "Assign"
},
"activity_logs": {
"ACTIVITY_LOG_DELETE": "Activity log has been deleted",
"WORKSPACE_CREATE": "Created new workspace {name}",
"WORKSPACE_RENAME": "Renamed workspace from {old_name} to {new_name}",
"WORKSPACE_USER_ADD": "{user} was added to the workspace as {role}",
"WORKSPACE_USER_INVITE": "{user} was invited by {inviteeEmail} as {role}",
"WORKSPACE_USER_INVITE_REVOKE": "Revoked invitation of {inviteeEmail} as {inviteeRole}",
"WORKSPACE_USER_INVITE_ACCEPT": "{inviteeEmail} accepted the invitation as {inviteeRole}",
"WORKSPACE_USER_REMOVE": "{user} was removed from the workspace",
"WORKSPACE_USER_ROLE_UPDATE": "{user}'s role was updated from {old_role} to {new_role}",
"COLLECTION_CREATE": "Created new collection {title}",
"COLLECTION_RENAME": "Renamed collection from {old_title} to {new_title}",
"COLLECTION_IMPORT": "Imported {count} collection(s)",
"COLLECTION_DELETE": "Deleted collection {title}",
"COLLECTION_DUPLICATE": "Duplicated collection {parentTitle}",
"REQUEST_CREATE": "Created new request {title}",
"REQUEST_RENAME": "Renamed request from {old_title} to {new_title}",
"REQUEST_DELETE": "Deleted request {title}"
},
"add": {
"new": "Add new",
"star": "Add star"
},
"agent": {
"registration_instruction": "Please register Hoppscotch Agent with your web client to continue.",
"enter_otp_instruction": "Please enter the verification code generated by Hoppscotch Agent and complete the registration",
"otp_label": "Verification Code",
"processing": "Processing your request...",
"not_running_title": "Agent not detected",
"registration_title": "Agent registration",
"verify_ssl_certs": "Verify SSL Certificates",
"ca_certs": "CA Certificates",
"client_certs": "Client Certificates",
"use_http_proxy": "Use HTTP Proxy",
"proxy_capabilities": "Hoppscotch Agent supports HTTP/HTTPS/SOCKS proxies along with NTLM and Basic Auth in those proxies. Include the username and password for the proxy authentication in the URL itself.",
"add_cert_file": "Add Certificate File",
"add_client_cert": "Add Client Certificate",
"add_key_file": "Add Key File",
"domain": "Domain",
"cert": "Certificate",
"key": "Key",
"pfx_or_pkcs": "PFX/PKCS12",
"pfx_or_pkcs_file": "PFX/PKCS12 File",
"add_pfx_or_pkcs_file": "Add PFX/PKCS12 File"
},
"app": {
"additional_links": {
"macOS": "macOS",
"windows": "Windows",
"linux": "Linux",
"web_app": "Web App",
"cli": "CLI"
},
"downloads": "Downloads",
"chat_with_us": "Chat with us",
"contact_us": "Contact us",
"cookies": "Cookies",
"copy": "Copy",
"copy_interface_type": "Copy interface type",
"copy_user_id": "Copy User Auth Token",
"developer_option": "Developer options",
"developer_option_description": "Developer tools which helps in development and maintenance of Hoppscotch.",
"discord": "Discord",
"documentation": "Documentation",
"github": "GitHub",
"help": "Help & feedback",
"home": "Home",
"invite": "Invite",
"invite_description": "Hoppscotch is an open source API development ecosystem. We designed a simple and intuitive interface for creating and managing your APIs. Hoppscotch is a tool that helps you build, test, document and share your APIs.",
"invite_your_friends": "Invite your friends",
"join_discord_community": "Join our Discord community",
"keyboard_shortcuts": "Keyboard shortcuts",
"name": "Hoppscotch",
"new_version_found": "New version found. Refresh to update.",
"open_in_hoppscotch": "Open in Hoppscotch",
"options": "Options",
"powered_by": "Powered by Hoppscotch",
"proxy_privacy_policy": "Proxy privacy policy",
"reload": "Reload",
"search": "Search and commands",
"share": "Share",
"shortcuts": "Shortcuts",
"social_description": "Follow us on social media to stay updated with the latest news, updates and releases.",
"social_links": "Social links",
"spotlight": "Spotlight",
"status": "Status",
"status_description": "Check the status of the website",
"terms_and_privacy": "Terms and privacy",
"twitter": "Twitter",
"type_a_command_search": "Type a command or search…",
"we_use_cookies": "We use cookies",
"updated_text": "Hoppscotch has been updated to v{version} 🎉",
"whats_new": "What's new?",
"see_whats_new": "See what's new",
"wiki": "Wiki",
"collapse_sidebar": "Collapse Sidebar",
"continue_to_dashboard": "Continue to Dashboard",
"expand_sidebar": "Expand Sidebar",
"no_name": "No name",
"open_navigation": "Open Navigation",
"read_documentation": "Read Documentation",
"default": "default: {value}"
},
"auth": {
"account_deactivated": "Your account has been deactivated. Contact the admin to get access.",
"account_exists": "Account exists with different credential - Login to link both accounts",
"all_sign_in_options": "All sign in options",
"continue_with_auth_provider": "Continue with {provider}",
"continue_with_email": "Continue with Email",
"continue_with_github": "Continue with GitHub",
"continue_with_github_enterprise": "Continue with GitHub Enterprise",
"continue_with_google": "Continue with Google",
"continue_with_microsoft": "Continue with Microsoft",
"email": "Email",
"logged_out": "Logged out",
"login": "Login",
"login_success": "Successfully logged in",
"login_to_hoppscotch": "Login to Hoppscotch",
"logout": "Logout",
"re_enter_email": "Re-enter email",
"send_magic_link": "Send a magic link",
"sync": "Sync",
"we_sent_magic_link": "We sent you a magic link!",
"we_sent_magic_link_description": "Check your inbox - we sent an email to {email}. It contains a magic link that will log you in."
},
"authorization": {
"generate_token": "Generate Token",
"refresh_token": "Refresh Token",
"graphql_headers": "Authorization Headers are sent as part of the payload to connection_init",
"include_in_url": "Include in URL",
"inherited_from": "Inherited {auth} from parent collection {collection} ",
"learn": "Learn how",
"oauth": {
"redirect_auth_server_returned_error": "Auth Server returned an error state",
"redirect_auth_token_request_failed": "Request to get the auth token failed",
"redirect_auth_token_request_invalid_response": "Invalid Response from the Token Endpoint when requesting for an auth token",
"redirect_invalid_state": "Invalid State value present in the redirect",
"redirect_no_auth_code": "No Authorization Code present in the redirect",
"redirect_no_client_id": "No Client ID defined",
"redirect_no_client_secret": "No Client Secret Defined",
"redirect_no_code_verifier": "No Code Verifier Defined",
"redirect_no_token_endpoint": "No Token Endpoint Defined",
"something_went_wrong_on_oauth_redirect": "Something went wrong during OAuth Redirect",
"something_went_wrong_on_token_generation": "Something went wrong on token generation",
"token_generation_oidc_discovery_failed": "Failure on token generation: OpenID Connect Discovery Failed",
"grant_type": "Grant Type",
"grant_type_auth_code": "Authorization Code",
"token_fetched_successfully": "Token fetched successfully",
"token_fetch_failed": "Failed to fetch token",
"validation_failed": "Validation Failed, please check the form fields",
"no_refresh_token_present": "No Refresh Token present. Please run the token generation flow again",
"refresh_token_request_failed": "Refresh token request failed",
"token_refreshed_successfully": "Token refreshed successfully",
"label_authorization_endpoint": "Authorization Endpoint",
"label_client_id": "Client ID",
"label_client_secret": "Client Secret",
"label_code_challenge": "Code Challenge",
"label_code_challenge_method": "Code Challenge Method",
"label_code_verifier": "Code Verifier",
"label_scopes": "Scopes",
"label_token_endpoint": "Token Endpoint",
"label_use_pkce": "Use PKCE",
"label_implicit": "Implicit",
"label_password": "Password",
"label_username": "Username",
"label_auth_code": "Authorization Code",
"label_client_credentials": "Client Credentials",
"label_send_as": "Client Authentication",
"label_send_in_body": "Send Credentials in Body",
"label_send_as_basic_auth": "Send Credentials as Basic Auth",
"enter_value": "Enter value",
"auth_request": "Auth Request",
"token_request": "Token Request",
"refresh_request": "Refresh Request",
"send_in": "Send In"
},
"pass_key_by": "Pass by",
"pass_by_query_params_label": "Query Parameters",
"pass_by_headers_label": "Headers",
"password": "Password",
"save_to_inherit": "Please save this request in any collection to inherit the authorization",
"token": "Token",
"access_token": "Access Token",
"client_token": "Client Token",
"client_secret": "Client Secret",
"timestamp": "Timestamp",
"host": "Host",
"type": "Authorization Type",
"username": "Username",
"advance_config": "Advanced Configuration",
"advance_config_description": "Hoppscotch automatically assigns default values to certain fields if no explicit value is provided",
"algorithm": "Algorithm",
"payload": "Payload",
"secret": "Secret",
"aws_signature": {
"access_key": "Access Key",
"secret_key": "Secret Key",
"service_name": "Service Name",
"aws_region": "AWS Region",
"service_token": "Service Token"
},
"digest": {
"realm": "Realm",
"nonce": "Nonce",
"algorithm": "Algorithm",
"qop": "qop",
"nonce_count": "Nonce Count",
"client_nonce": "Client Nonce",
"opaque": "Opaque",
"disable_retry": "Disable Retrying Request"
},
"akamai": {
"headers_to_sign": "Headers to Sign",
"max_body_size": "Max Body Size"
},
"hawk": {
"id": "HAWK Auth ID",
"key": "HAWK Auth Key",
"ext": "ext",
"app": "app",
"dlg": "dlg",
"include": "Include Payload Hash"
},
"jwt": {
"params_name": "Params Name",
"param_name": "Parameter Name",
"header_prefix": "Header Prefix",
"placeholder_request_header": "Request header prefix",
"placeholder_request_param": "Request params name",
"secret_base64_encoded": "Secret Base64 Encoded",
"headers": "JWT Headers",
"private_key": "Private Key",
"placeholder_headers": "JWT Headers"
},
"ntlm": {
"domain": "Domain",
"workstation": "Workstation",
"disable_retrying_request": "Disable Retrying Request"
},
"asap": {
"issuer": "Issuer",
"audience": "Audience",
"expires_in": "Expires In",
"key_id": "Key ID",
"optional_config": "Optional Configuration",
"subject": "Subject",
"additional_claims": "Additional Claims"
}
},
"collection": {
"title": "Collection",
"run": "Run Collection",
"created": "Collection created",
"different_parent": "Cannot reorder collection with different parent",
"edit": "Edit Collection",
"import_or_create": "Import or create a collection",
"import_collection": "Import Collection",
"invalid_name": "Please provide a name for the collection",
"invalid_root_move": "Collection already in the root",
"moved": "Moved Successfully",
"my_collections": "Personal Collections",
"name": "My New Collection",
"name_length_insufficient": "Collection name should be at least 3 characters long",
"new": "New Collection",
"order_changed": "Collection Order Updated",
"properties": "Collection Properties",
"properties_updated": "Collection Properties Updated",
"renamed": "Collection renamed",
"request_in_use": "Request in use",
"save_as": "Save as",
"save_to_collection": "Save to Collection",
"select": "Select a Collection",
"select_location": "Select location",
"sorted": "Collection sorted",
"details": "Details",
"duplicated": "Collection duplicated"
},
"confirm": {
"close_unsaved_tab": "Are you sure you want to close this tab?",
"close_unsaved_tabs": "Are you sure you want to close all tabs? {count} unsaved tabs will be lost.",
"delete_all_activity_logs": "Are you sure you want to delete all activity logs?",
"exit_team": "Are you sure you want to leave this workspace?",
"logout": "Are you sure you want to logout?",
"remove_collection": "Are you sure you want to permanently delete this collection?",
"remove_environment": "Are you sure you want to permanently delete this environment?",
"remove_folder": "Are you sure you want to permanently delete this folder?",
"remove_history": "Are you sure you want to permanently delete all history?",
"remove_request": "Are you sure you want to permanently delete this request?",
"remove_response": "Are you sure you want to permanently delete this response?",
"remove_shared_request": "Are you sure you want to permanently delete this shared request?",
"remove_team": "Are you sure you want to delete this workspace?",
"remove_telemetry": "Are you sure you want to opt-out of Telemetry?",
"request_change": "Are you sure you want to discard current request, unsaved changes will be lost.",
"save_unsaved_tab": "Do you want to save changes made in this tab?",
"sync": "Would you like to restore your workspace from cloud? This will discard your local progress.",
"delete_access_token": "Are you sure you want to delete the access token {tokenLabel}?",
"delete_mock_server": "Are you sure you want to delete this mock server?"
},
"context_menu": {
"add_parameters": "Add to parameters",
"open_request_in_new_tab": "Open request in new tab",
"set_environment_variable": "Set as variable",
"encode_uri_component": "Encode URL component",
"decode_uri_component": "Decode URL component"
},
"cookies": {
"modal": {
"cookie_expires": "Expires",
"cookie_name": "Name",
"cookie_path": "Path",
"cookie_string": "Cookie string",
"cookie_value": "Value",
"empty_domain": "Domain is empty",
"empty_domains": "Domain list is empty",
"enter_cookie_string": "Enter cookie string",
"interceptor_no_support": "Your currently selected interceptor does not support cookies. Select a different Interceptor and try again.",
"managed_tab": "Managed",
"new_domain_name": "New domain name",
"no_cookies_in_domain": "No cookies set for this domain",
"raw_tab": "Raw",
"set": "Set a cookie"
}
},
"count": {
"currentValue": "Current value {count}",
"description": "Description {count}",
"header": "Header {count}",
"initialValue": "Initial value {count}",
"key": "Key {count}",
"message": "Message {count}",
"parameter": "Parameter {count}",
"protocol": "Protocol {count}",
"value": "Value {count}",
"variable": "Variable {count}"
},
"documentation": {
"add_description": "Add description for this collection here...",
"add_description_placeholder": "Add description here...",
"add_request_description": "Add description for request here...",
"auth": {
"access_key": "Access Key",
"access_token": "Access Token",
"add_to": "Add to",
"akamai_edgegrid": "Akamai EdgeGrid",
"algorithm": "Algorithm",
"api_key": "API Key",
"app_id": "App ID",
"auth_id": "Auth ID",
"auth_key": "Auth Key",
"auth_url": "Auth URL",
"aws_signature": "AWS Signature",
"basic_auth": "Basic Auth",
"bearer_token": "Bearer Token",
"client_id": "Client ID",
"client_nonce": "Client Nonce",
"client_secret": "Client Secret",
"client_token": "Client Token",
"delegation": "Delegation",
"digest_auth": "Digest Auth",
"extra_data": "Extra Data",
"grant_type": "Grant Type",
"hawk_auth": "HAWK Auth",
"headers_to_sign": "Headers to Sign",
"host": "Host",
"include_payload_hash": "Include Payload Hash",
"jwt_auth": "JWT Auth",
"max_body_size": "Max Body Size",
"no_auth": "No authentication",
"nonce": "Nonce",
"oauth_2": "OAuth 2.0",
"opaque": "Opaque",
"password": "Password",
"payload": "Payload",
"qop": "QOP",
"realm": "Realm",
"region": "Region",
"scope": "Scope",
"secret_key": "Secret Key",
"service_name": "Service Name",
"timestamp": "Timestamp",
"title": "Authentication",
"token_url": "Token URL",
"user": "User",
"username": "Username"
},
"body": {
"content_type": "Content Type",
"no_body": "No body defined",
"title": "Body"
},
"copied_to_clipboard": "Copied to clipboard!",
"curl": {
"click_to_load": "Click to load cURL command",
"copied": "cURL command copied to clipboard!",
"copy_to_clipboard": "Copy to clipboard",
"generating": "Generating cURL command...",
"load": "Load cURL",
"title": "cURL"
},
"description": "Description",
"error_rendering_markdown": "Error rendering markdown:",
"fetching_documentation": "Fetching Documentation...",
"generate": "Generate documentation",
"generate_message": "Import any Hoppscotch collection to generate API documentation on-the-go.",
"headers": {
"no_headers": "No headers defined",
"title": "Headers"
},
"hide_all_documentation": "Hide All Documentation",
"inherited_from": "Inherited from {name}",
"inherited_with_type": "Inherited {type} from {name}",
"key": "Key",
"loading": "Loading...",
"loading_collection_data": "Loading Collection Data...",
"no": "No",
"no_collection_data": "No collection data available",
"no_documentation_found": "No documentation found for folders or requests",
"no_request_data": "No request data available",
"no_requests_or_folders": "No requests or folders",
"not_set": "Not set",
"open_request_in_new_tab": "Open request in new tab",
"parameters": {
"no_params": "No parameters defined",
"title": "Parameters"
},
"percent_complete": "% complete",
"processing_documentation": "Processing Documentation",
"publish": {
"already_published": "This collection is already published",
"auto_sync": "Auto-sync with collection",
"auto_sync_description": "Automatically update published docs when collection changes",
"button": "Publish",
"copy_url": "Copy URL",
"delete": "Delete Documentation",
"unpublish_doc": "Are you sure you want to unpublish the documentation?",
"delete_success": "Published documentation deleted successfully",
"doc_title": "Title",
"doc_version": "Version",
"edit_published_doc": "Edit Published Doc",
"last_updated": "Last Updated",
"metadata": "Metadata (JSON)",
"open_published_doc": "Open Published Documentation in new tab",
"publish_error": "Failed to publish documentation",
"publish_success": "Documentation published successfully!",
"published": "Published",
"published_url": "Published URL",
"title": "Publish Documentation",
"update_button": "Update",
"update_error": "Failed to update documentation",
"update_published_docs": "Update Published Docs",
"update_success": "Documentation updated successfully!",
"unpublish": "Unpublish",
"update_title": "Update Published Documentation",
"url_copied": "URL copied to clipboard!",
"view_published": "View Published Docs",
"view_title": "Published Documentation Snapshot",
"versions": "Versions",
"create_new_version": "Create New Version",
"invalid_version": "Version must only contain alphanumeric characters, dots, and hyphens",
"live": "Live",
"snapshot": "Snapshot",
"version_immutable": "Published versions are read-only snapshots",
"view_snapshot": "View Snapshot",
"current_version": "CURRENT",
"not_found": "Published documentation not found",
"no_doc_id": "No document ID provided",
"version_label": "v{version}",
"unpublish_version": "Unpublish this version",
"loading_snapshot": "Loading snapshot...",
"retry_snapshot": "Retry",
"sensitive_data_warning": "Please make sure no sensitive data is exposed in the published documentation.",
"snapshot_preview": "Snapshot Preview",
"snapshot_load_error": "Failed to load snapshot preview",
"snapshot_empty": "No requests or folders in this snapshot",
"snapshot_item_count": "{count} items",
"auto_sync_live_notice": "This version auto-syncs with the live collection",
"snapshot_promote_warning": "Enabling auto-sync will replace this frozen snapshot with the live collection tree. This cannot be undone.",
"live_freeze_notice": "Auto-sync will be turned off and this version will be frozen at the current collection state.",
"untitled_project": "Untitled Project",
"environment": "Environment",
"no_environment": "No environment",
"environment_description": "Attach an environment to resolve variables in the published documentation"
},
"request_opened_in_new_tab": "Request opened in new tab!",
"response": {
"body": "Response Body",
"copy": "Copy response",
"example_copied": "Response example copied to clipboard!",
"example_copy_failed": "Failed to copy response example",
"headers": "Response Headers",
"no_examples": "No response examples available",
"title": "Response Examples"
},
"save_error": "Error saving documentation",
"save_success": "Documentation saved successfully",
"saved_items_status": "Saved {success} items. Failed to save {failure} items.",
"show_all_documentation": "Show All Documentation",
"source": "Source",
"title": "Documentation",
"unsaved_changes": "You have {count} unsaved changes. Please save before closing.",
"untitled_collection": "Untitled Collection",
"untitled_request": "Untitled Request",
"value": "Value",
"variables": {
"no_vars": "No variables defined",
"title": "Variables"
},
"yes": "Yes"
},
"empty": {
"activity_logs": "No activity logs found",
"authorization": "This request does not use any authorization",
"body": "This request does not have a body",
"collection": "Collection is empty",
"collections": "Collections are empty",
"documentation": "Connect to a GraphQL endpoint to view documentation",
"empty_schema": "No schema found",
"endpoint": "Endpoint cannot be empty",
"environments": "Environments are empty",
"collection_variables": "Collection variables are empty",
"folder": "Folder is empty",
"headers": "This request does not have any headers",
"history": "History is empty",
"invites": "Invite list is empty",
"members": "Workspace is empty",
"parameters": "This request does not have any parameters",
"pending_invites": "There are no pending invites for this workspace",
"profile": "Login to view your profile",
"protocols": "Protocols are empty",
"request_variables": "This request does not have any request variables",
"schema": "Connect to a GraphQL endpoint to view schema",
"search_environment": "No matching environment found for",
"secret_environments": "Secrets are not synced to Hoppscotch",
"shared_requests": "Shared requests are empty",
"shared_requests_logout": "Login to view your shared requests or create a new one",
"subscription": "Subscriptions are empty",
"team_name": "Workspace name empty",
"teams": "You don't belong to any workspaces",
"tests": "There are no tests for this request",
"access_tokens": "Access tokens are empty",
"response": "No response received",
"mock_servers": "No mock servers found"
},
"environment": {
"heading": "Environment",
"add_to_global": "Add to Global",
"added": "Environment variable added",
"create_new": "Create new environment",
"created": "Environment created",
"current_value": "Current value",
"deleted": "Environment variable deleted",
"duplicated": "Environment duplicated",
"edit": "Edit Environment",
"empty_variables": "No variables",
"global": "Global",
"global_variables": "Global variables",
"import_or_create": "Import or create an environment",
"initial_value": "Initial value",
"invalid_name": "Please provide a name for the environment",
"list": "Environment variables",
"my_environments": "Personal Environments",
"name": "Name",
"nested_overflow": "Nested environment variables are limited to 10 levels",
"new": "New Environment",
"no_active_environment": "No active environment",
"no_environment": "No environment",
"no_environment_description": "No environments were selected. Choose what to do with the following variables.",
"quick_peek": "Environment Quick Peek",
"replace_all_current_with_initial": "Replace all current with initial",
"replace_all_initial_with_current": "Replace all initial with current",
"replace_current_with_initial": "Replace with initial",
"replace_initial_with_current": "Replace with current",
"replace_with_variable": "Replace with variable",
"scope": "Scope",
"secrets": "Secrets",
"secret_value": "Secret value",
"select": "Select environment",
"set": "Set environment",
"set_as_environment": "Set as environment",
"short_name": "Environment needs to have minimum 1 character in its name",
"team_environments": "Workspace Environments",
"title": "Environments",
"updated": "Environment updated",
"value": "Value",
"variable": "Variable",
"variables": "Variables",
"variable_list": "Variable List",
"properties": "Environment Properties",
"details": "Details"
},
"error": {
"network": {
"heading": "Network Error",
"description": "Network connection failed. {message}: {cause}"
},
"timeout": {
"heading": "Timeout Error",
"description": "Request timed out during {phase}. {message}"
},
"certificate": {
"heading": "Certificate Error",
"description": "Invalid certificate. {message}: {cause}"
},
"auth": {
"heading": "Authentication Error",
"description": "Access denied. {message}: {cause}"
},
"proxy": {
"heading": "Proxy Error",
"description": "Proxy connection failed. {message}: {cause}"
},
"parse": {
"heading": "Parse Error",
"description": "Failed to parse response. {message}: {cause}"
},
"version": {
"heading": "Version Error",
"description": "Incompatible versions. {message}: {cause}"
},
"abort": {
"heading": "Request Aborted",
"description": "Operation cancelled. {message}: {cause}"
},
"unknown": {
"heading": "Unknown Error",
"description": "An unknown error occurred.",
"cause": "Unknown cause"
},
"extension": {
"heading": "Extension error",
"description": "Failed running request on extension"
},
"authproviders_load_error": "Unable to load auth providers",
"browser_support_sse": "This browser doesn't seems to have Server Sent Events support.",
"check_console_details": "Check console log for details.",
"check_how_to_add_origin": "Check how you can add an origin",
"curl_invalid_format": "cURL is not formatted properly",
"danger_zone": "Danger zone",
"delete_account": "Your account is currently the sole owner in these workspaces:",
"delete_account_description": "You must either remove yourself, transfer ownership, or delete these workspaces before you can delete your account.",
"delete_activity_log": "Failed to delete activity log",
"delete_all_activity_logs": "Failed to delete all activity logs",
"email_already_exists": "This email already exists with a different account. Please set a different email address.",
"empty_email_address": "Email Address cannot be empty",
"empty_profile_name": "Profile name cannot be empty",
"empty_req_name": "Empty Request Name",
"fetch_activity_logs": "Failed to fetch activity logs",
"f12_details": "(F12 for details)",
"gql_prettify_invalid_query": "Couldn't prettify an invalid query, solve query syntax errors and try again",
"incomplete_config_urls": "Incomplete configuration URLs",
"incorrect_email": "Incorrect email",
"invalid_file_type": "Invalid file type for `{filename}`.",
"invalid_link": "Invalid link",
"invalid_link_description": "The link you clicked is invalid or expired.",
"invalid_embed_link": "The embed does not exist or is invalid.",
"json_parsing_failed": "Invalid JSON",
"json_prettify_invalid_body": "Couldn't prettify an invalid body, solve json syntax errors and try again",
"network_error": "There seems to be a network error. Please try again.",
"network_fail": "Could not send request",
"no_collections_to_export": "No collections to export. Please create a collection to get started.",
"no_duration": "No duration",
"no_environments_to_export": "No environments to export. Please create an environment to get started.",
"no_results_found": "No matches found",
"page_not_found": "This page could not be found",
"please_install_extension": "Please install the extension and add origin to the extension.",
"proxy_error": "Proxy error",
"same_email_address": "Updated email address is same as the current email address",
"same_profile_name": "Updated profile name is same as the current profile name",
"script_fail": "Could not execute pre-request script",
"something_went_wrong": "Something went wrong",
"subscription_error": "Failed to subscribe to the topic: {error}",
"post_request_script_fail": "Could not execute post-request script",
"reading_files": "Error while reading one or more files.",
"fetching_access_tokens_list": "Something went wrong while fetching the list of tokens",
"generate_access_token": "Something went wrong while generating the access token",
"delete_access_token": "Something went wrong while deleting the access token",
"extension_not_found": "Extension not found",
"invalid_request": "Invalid request data"
},
"export": {
"as_json": "Export as JSON",
"create_secret_gist": "Create secret Gist",
"create_secret_gist_tooltip_text": "Export as secret Gist",
"failed": "Something went wrong while exporting",
"secret_gist_success": "Successfully exported as secret Gist",
"require_github": "Login with GitHub to create secret gist",
"title": "Export",
"success": "Successfully exported"
},
"file_upload": {
"choose_file": "Choose file",
"max_size_format": "Max 5MB. Supports JPEG, PNG, GIF, WebP",
"profile_photo_updated": "Profile photo updated successfully",
"profile_photo_removed": "Profile photo removed successfully",
"org_logo_updated": "Organization logo updated successfully",
"error_size_limit": "File size must be less than 5MB",
"error_invalid_format": "File must be an image (JPEG, PNG, GIF, or WebP)",
"error_invalid_upload_type": "Invalid upload type",
"error_invalid_org_id": "Invalid organization ID format",
"error_upload_failed": "Upload failed. Please try again",
"error_network_failed": "Network error. Please check your connection",
"error_timeout": "Upload timed out after 30 seconds. Please try again",
"error_missing_backend_url": "Backend URL is not configured. Please set the VITE_BACKEND_API_URL environment variable in your environment settings",
"error_invalid_backend_url": "Invalid backend URL configuration"
},
"filename": {
"cookie_key_value_pairs": "Cookie",
"codegen": "{request_name} - code",
"graphql_response": "GraphQL-Response",
"lens": "{request_name} - response",
"realtime_response": "Realtime-Response",
"response_interface": "Response-Interface"
},
"filter": {
"all": "All",
"none": "None",
"starred": "Starred"
},
"folder": {
"created": "Folder created",
"edit": "Edit Folder",
"invalid_name": "Please provide a name for the folder",
"name_length_insufficient": "Folder name should be at least 3 characters long",
"new": "New Folder",
"run": "Run Folder",
"renamed": "Folder renamed",
"sorted": "Folder sorted"
},
"graphql": {
"arguments": "Arguments",
"connection_switch_confirm": "Do you want to connect with the latest GraphQL endpoint?",
"connection_error_http": "Failed to fetch GraphQL Schema due to network error.",
"connection_switch_new_url": "Switching to a tab will disconnected you from the active GraphQL connection. New connection URL is",
"connection_switch_url": "You're connected to a GraphQL endpoint the connection URL is",
"deprecated": "Deprecated",
"fields": "Fields",
"mutation": "Mutation",
"mutations": "Mutations",
"schema": "Schema",
"show_depricated_values": "Show deprecated values",
"subscription": "Subscription",
"subscriptions": "Subscriptions",
"switch_connection": "Switch connection",
"url_placeholder": "Enter a GraphQL endpoint URL",
"query": "Query"
},
"graphql_collections": {
"title": "GraphQL Collections"
},
"group": {
"time": "Time",
"url": "URL"
},
"header": {
"install_pwa": "Install app",
"login": "Login",
"save_workspace": "Save My Workspace"
},
"helpers": {
"authorization": "The authorization header will be automatically generated when you send the request.",
"collection_properties_authorization": " This authorization will be set for every request in this collection.",
"collection_properties_header": "This header will be set for every request in this collection.",
"collection_properties_scripts": "These scripts will run for every request in this collection. Pre-request scripts run before the request, test scripts run after the response.",
"generate_documentation_first": "Generate documentation first",
"network_fail": "Unable to reach the API endpoint. Check your network connection or select a different Interceptor and try again.",
"offline": "You're using Hoppscotch offline. Updates will sync when you're online, based on workspace settings.",
"offline_short": "You're using Hoppscotch offline.",
"post_request_tests": "Post-request scripts are written in JavaScript, and are run after the response is received.",
"pre_request_script": "Pre-request scripts are written in JavaScript, and are run before the request is sent.",
"script_fail": "It seems there is a glitch in the pre-request script. Check the error below and fix the script accordingly.",
"post_request_script_fail": "There seems to be an error with post-request script. Please fix the errors and run tests again",
"post_request_script": "Write a post-request script to automate debugging."
},
"hide": {
"collection": "Collapse Collection Panel",
"more": "Hide more",
"preview": "Hide Preview",
"sidebar": "Collapse sidebar",
"password": "Hide Password"
},
"import": {
"collections": "Import collections",
"curl": "Import cURL",
"environments_from_gist": "Import From Gist",
"environments_from_gist_description": "Import Hoppscotch Environments From Gist",
"failed": "Error while importing: format not recognized",
"from_file": "Import from File",
"from_gist": "Import from Gist",
"from_gist_description": "Import from Gist URL",
"from_gist_import_summary": "All hoppscotch features are imported.",
"from_hoppscotch_importer_summary": "All hoppscotch features are imported.",
"from_insomnia": "Import from Insomnia",
"from_insomnia_description": "Import from Insomnia collection",
"from_insomnia_import_summary": "Collections and Requests will be imported.",
"from_json": "Import from Hoppscotch",
"from_json_description": "Import from Hoppscotch collection file",
"from_my_collections": "Import from Personal Collections",
"from_my_collections_description": "Import from Personal Collections file",
"from_all_collections": "Import from Another Workspace",
"from_all_collections_description": "Import any collection from Another Workspace to the current workspace",
"from_openapi": "Import from OpenAPI",
"from_openapi_description": "Import from OpenAPI specification file (YML/JSON)",
"from_openapi_import_summary": "Collections ( will be created from tags ), Requests and response examples will be imported.",
"from_postman": "Import from Postman",
"from_postman_description": "Import from Postman collection",
"from_postman_import_summary": "Collections, Requests and response examples will be imported.",
"import_scripts": "Import scripts",
"import_scripts_description": "Supports Postman Collection v2.0/v2.1.",
"from_url": "Import from URL",
"gist_url": "Enter Gist URL",
"from_har": "Import from HAR",
"from_har_description": "Import from HAR file",
"from_har_import_summary": "Requests will be imported to a default collection.",
"gql_collections_from_gist_description": "Import GraphQL Collections From Gist",
"hoppscotch_environment": "Hoppscotch Environment",
"hoppscotch_environment_description": "Import Hoppscotch Environment JSON file",
"import_from_url_invalid_fetch": "Couldn't get data from the url",
"import_from_url_invalid_file_format": "Error while importing collections",
"import_from_url_invalid_type": "Unsupported type. accepted values are 'hoppscotch', 'openapi', 'postman', 'insomnia'",
"import_from_url_success": "Collections Imported",
"insomnia_environment_description": "Import Insomnia Environment from a JSON/YAML file",
"json_description": "Import collections from a Hoppscotch Collections JSON file",
"postman_environment": "Postman Environment",
"postman_environment_description": "Import Postman Environment from a JSON file",
"title": "Import",
"file_size_limit_exceeded_warning_multiple_files": "Chosen files exceed the recommended limit of {sizeLimit}MB. Only the first {files} selected will be imported",
"file_size_limit_exceeded_warning_single_file": "The currently chosen file exceeds the recommended limit of {sizeLimit}MB. Please select another file.",
"success": "Successfully imported",
"import_summary_collections_title": "Collections",
"import_summary_requests_title": "Requests",
"import_summary_responses_title": "Responses",
"import_summary_pre_request_scripts_title": "Pre-request scripts",
"import_summary_post_request_scripts_title": "Post request scripts",
"import_summary_not_supported_by_hoppscotch_import": "We do not support importing {featureLabel} from this source right now.",
"import_summary_script_found": "script found but not imported",
"import_summary_scripts_found": "scripts found but not imported",
"import_summary_enable_experimental_sandbox": "To import Postman scripts, enable 'Experimental scripting sandbox' in settings. Note: This feature is experimental.",
"cors_error_modal": {
"title": "CORS Error Detected",
"description": "The import failed due to CORS (Cross-Origin Resource Sharing) restrictions imposed by the server.",
"explanation": "This is a security feature that prevents web pages from making requests to different domains. You can retry using our proxy service to bypass this restriction.",
"url_label": "Attempted URL",
"retry_with_proxy": "Retry with Proxy"
}
},
"instances": {
"switch": "Switch Hoppscotch Instance",
"enter_server_url": "Connect to a self-hosted instance",
"already_connected": "You are already connected to this instance",
"recent_connections": "Recent Connections",
"add_instance": "Add an instance",
"add_new": "Add a new instance",
"confirm_remove": "Confirm Removal",
"remove_warning": "Are you sure you want to remove this instance?",
"clear_cached_bundles": "Clear cached bundles",
"opening_add_modal": "Opening add instance dialog",
"closed_add_modal": "Add instance dialog closed",
"cancelled_removal": "Instance removal cancelled",
"connection_cancelled": "Connection cancelled by pre-connect validation",
"post_connect_completed": "Post-connection setup completed",
"connecting": "Connecting to instance...",
"confirm_removal": "Confirm removal of instance",
"removal_cancelled": "Instance removal cancelled by pre-removal validation",
"post_remove_completed": "Post-removal cleanup completed",
"removing": "Removing instance...",
"clearing_cache": "Clearing cache...",
"initialized": "Instance switcher initialized",
"connecting_state": "Establishing connection...",
"connected_state": "Successfully connected to instance",
"disconnected_state": "Disconnected from instance",
"stream_error": "Connection state monitoring failed",
"recent_instances_error": "Failed to load recent instances",
"instance_changed": "Switched to instance",
"current_instance_error": "Failed to track current instance",
"not_available": "Instance switching is not available",
"cleanup_completed": "Instance switcher cleanup completed",
"self_hosted": "Self-hosted instances"
},
"inspections": {
"description": "Inspect possible errors",
"environment": {
"add_environment": "Add to Environment",
"add_environment_value": "Add value",
"empty_value": "Environment value is empty for the variable '{variable}' ",
"not_found": "Environment variable '{environment}' not found."
},
"header": {
"cookie": "The browser doesn't allow Hoppscotch to set Cookie Headers. Please use Authorization Headers instead. However, our Hoppscotch Desktop App is live now and supports Cookies."
},
"response": {
"401_error": "Please check your authentication credentials.",
"404_error": "Please check your request URL and method type.",
"cors_error": "Please check your Cross-Origin Resource Sharing configuration.",
"default_error": "Please check your request.",
"network_error": "Please check your network connection."
},
"title": "Inspector",
"url": {
"extension_not_installed": "Extension not installed.",
"extension_unknown_origin": "Make sure you've added the API endpoint's origin to the Hoppscotch Browser Extension list.",
"extention_enable_action": "Enable Browser Extension",
"extention_not_enabled": "Extension not enabled.",
"localaccess_unsupported": "Current interceptor does not support local access, please consider using Agent, Extension interceptors or the Desktop App"
},
"auth": {
"digest": "Agent interceptor on the web app or Native interceptor on the Desktop app are recommended when using Digest Authorization.",
"hawk": "Agent interceptor on the web app or Native interceptor on the Desktop app are recommended when using Hawk Authorization."
},
"body": {
"binary": "Sending binary data via the current interceptor is not supported yet."
},
"scripting_interceptor": {
"pre_request": "pre-request script",
"post_request": "post-request script",
"both_scripts": "pre-request and post-request scripts",
"unsupported_interceptor": "Your {scriptType} uses {apiUsed}. For reliable script execution, switch to Agent interceptor (web app) or Native interceptor (Desktop app). The {interceptor} interceptor has limited support for scripting requests and may not work as expected.",
"same_origin_csrf_warning": "Security Warning: Your {scriptType} makes same-origin requests using {apiUsed}. Since this platform uses cookie-based authentication, these requests automatically include your session cookies, potentially allowing malicious scripts to perform unauthorized actions. Use Agent interceptor for same-origin requests, or only run scripts you trust."
}
},