-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathmaster_messages.json
1424 lines (1424 loc) · 74.3 KB
/
master_messages.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"about_outline": {
"message": "Outline is an open source project created by $JIGSAW$ to provide a safer way for news organizations and journalists to access the internet.$NEW_LINE$$NEW_LINE$ Outline is powered by $SHADOWSOCKS$ and is still an early stage product. You can contribute to the code on $GITHUB$, and follow us on $REDDIT$ and $MEDIUM$ to hear when we expand to more platforms and add new features.",
"description": "This string appears in a dialog as a paragraph to provide a description of the product. Outline is the product name and should not be translated.",
"placeholders": {
"GITHUB": {
"content": "<a href={gitHubUrl}>GitHub</a>"
},
"JIGSAW": {
"content": "<a href={jigsawUrl}>Jigsaw</a>"
},
"MEDIUM": {
"content": "<a href={mediumUrl}>Medium</a>"
},
"NEW_LINE": {
"content": "<br>"
},
"REDDIT": {
"content": "<a href={redditUrl}>Reddit</a>"
},
"SHADOWSOCKS": {
"content": "<a href={shadowsocksUrl}>Shadowsocks</a>"
}
}
},
"about_version": {
"message": "Version $VERSION$",
"description": "This string appears in a dialog as a header to indicate the version of the application.",
"placeholders": {
"VERSION": {
"content": "{version}",
"example": "1.0.2"
}
}
},
"aws_lightsail_firewall_0": {
"message": "Navigate to the $START_OF_LINK$Amazon Lightsail$END_OF_LINK$ instances screen.",
"description": "This string appears within the server setup view as an item of a list that provides instructions to configure firewall rules in Amazon Lightsail. Amazon Lightsail is a product name and should not be translated.",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"aws_lightsail_firewall_1": {
"message": "Click the instance on which you want to host Outline.",
"description": "This string appears within the server setup view as an item of a list that provides instructions to configure firewall rules in Amazon Lightsail."
},
"aws_lightsail_firewall_2": {
"message": "Navigate to the 'Networking' tab.",
"description": "This string appears within the server setup view as an item of a list that provides instructions to configure firewall rules in Amazon Lightsail.. 'Networking' should be translated and included untranslated in parentheses."
},
"aws_lightsail_firewall_3": {
"message": "In the 'Firewall' section, click 'Add another'.",
"description": "This string appears within the server setup view as an item of a list that provides instructions to configure firewall rules in Amazon Lightsail. Words in quotes should be translated and included untranslated in parentheses."
},
"aws_lightsail_firewall_4": {
"message": "Set 'Application' value to 'All TCP+UDP'.",
"description": "This string appears within the server setup view as an item of a list that provides instructions to configure firewall rules in Amazon Lightsail. Words in quotes should be translated and included untranslated in parentheses."
},
"aws_lightsail_firewall_5": {
"message": "Click 'Save'.",
"description": "This string appears within the server setup view as an item of a list that provides instructions to configure firewall rules in Amazon Lightsail. Words in quotes should be translated and included untranslated in parentheses."
},
"cancel": {
"message": "Cancel",
"description": "This string appears across the application as a button. Clicking it aborts the current flow."
},
"contact_view_exit_cannot_add_server": {
"description": "Message shown to users who are trying to contact support about an unsupported issue.",
"message": "The Outline team is not able to assist with adding a server. Please try the troubleshooting steps listed $START_OF_LINK$here$END_OF_LINK$ and then contact the person who gave you the access key to troubleshoot this issue.",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"contact_view_exit_connection": {
"description": "Message shown to users who are trying to contact support about an unsupported issue.",
"meaning": "MsgID-20240319-UpdateWhenPlaceHolderChanged",
"message": "The Outline team is not able to assist with connecting to a server. Please try the troubleshooting steps listed $START_OF_LINK$here$END_OF_LINK$ and then contact the person who gave you the access key to troubleshoot this issue.",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"contact_view_exit_open_ticket": {
"description": "Message shown to users who are trying to contact support again while having a pending support ticket open.",
"message": "We are currently experiencing high support volume and appreciate your patience. Please do not submit a new request for this concern. If you have additional information to provide, please reply to the initial email about this request."
},
"contact_view_intro": {
"description": "Introduction message to users who are looking to contact support.",
"message": "Tell us how we can help. Please explain your issue in detail and do not enter personal information that is not requested below."
},
"contact_view_issue_cannot_add_server": {
"description": "Item in a dropdown menu on our contact page to select the issue the user is trying to contact support about.",
"message": "I am having trouble adding a server using my access key"
},
"contact_view_issue_connection": {
"description": "Item in a dropdown menu on our contact page to select the issue the user is trying to contact support about.",
"message": "I am having trouble connecting to my Outline VPN server"
},
"contact_view_issue_general": {
"description": "Item in a dropdown menu on our contact page to select the issue the user is trying to contact support about.",
"message": "General feedback & suggestions"
},
"contact_view_issue_managing": {
"description": "Item in a dropdown menu on our contact page to select the issue the user is trying to contact support about.",
"message": "I need assistance managing my Outline VPN server or helping others connect to it"
},
"contact_view_issue_performance": {
"description": "Item in a dropdown menu on our contact page to select the issue the user is trying to contact support about.",
"message": "My internet access is slow while connected to my Outline VPN server"
},
"contact_view_issue": {
"description": "Label of a Contact Support form input field.",
"message": "Outline issue"
},
"contact_view_open_ticket": {
"description": "Label for a Contact Support form asking if the user already has a pending ticket open with support.",
"message": "Do you have an open ticket for this issue?"
},
"geo_amsterdam": {
"message": "Amsterdam",
"description": "Name of the city in the Netherlands."
},
"geo_bangalore": {
"message": "Bangalore",
"description": "Name of the city in India."
},
"geo_changhua_county": {
"message": "Changhua County",
"description": "Name of the county in Taiwan."
},
"geo_delhi": {
"message": "Delhi",
"description": "Name of the city in India."
},
"geo_eemshaven": {
"message": "Eemshaven",
"description": "Name of the seaport in the Netherlands."
},
"geo_frankfurt": {
"message": "Frankfurt",
"description": "Name of the city in Germany."
},
"geo_hamina": {
"message": "Hamina",
"description": "Name of the town in Finland."
},
"geo_hk": {
"message": "Hong Kong",
"description": "Name of Hong Kong in China"
},
"geo_iowa": {
"message": "Iowa",
"description": "Name of the US state."
},
"geo_jakarta": {
"message": "Jakarta",
"description": "Name of the capital of Indonesia."
},
"geo_jurong_west": {
"message": "Jurong West",
"description": "Name of the area in Singapore."
},
"geo_las_vegas": {
"message": "Las Vegas",
"description": "Name of the city in the Nevada, USA."
},
"geo_london": {
"message": "London",
"description": "Name of the city in England."
},
"geo_los_angeles": {
"message": "Los Angeles",
"description": "Name of the city in California, USA."
},
"geo_melbourne": {
"message": "Melbourne",
"description": "Name of the city in Australia."
},
"geo_montreal": {
"message": "Montréal",
"description": "Name of the city in Canada."
},
"geo_mumbai": {
"message": "Mumbai",
"description": "Name of the city in India."
},
"geo_new_york_city": {
"message": "New York",
"description": "Name of the city in the United States."
},
"geo_northern_virginia": {
"message": "Northern Virginia",
"description": "Name of the area in Virginia, USA."
},
"geo_oregon": {
"message": "Oregon",
"description": "Name of the US state."
},
"geo_osaka": {
"message": "Osaka",
"description": "Name of the city in Japan."
},
"geo_salt_lake_city": {
"message": "Salt Lake City",
"description": "Name of the city in Utah, USA."
},
"geo_san_francisco": {
"message": "San Francisco",
"description": "Name of the city in the United States."
},
"geo_sao_paulo": {
"message": "São Paulo",
"description": "Name of the state in Brazil."
},
"geo_seoul": {
"message": "Seoul",
"description": "Name of the city in South Korea."
},
"geo_sg": {
"message": "Singapore",
"description": "Name of the country of Singapore"
},
"geo_south_carolina": {
"message": "South Carolina",
"description": "Name of the US state."
},
"geo_st_ghislain": {
"message": "St. Ghislain",
"description": "Name of the town in Belgium."
},
"geo_sydney": {
"message": "Sydney",
"description": "Name of the city in Australia."
},
"geo_tokyo": {
"message": "Tokyo",
"description": "Name of the city in Japan."
},
"geo_toronto": {
"message": "Toronto",
"description": "Name of the city in Canada."
},
"geo_warsaw": {
"message": "Warsaw",
"description": "Name of the city in Poland."
},
"geo_zurich": {
"message": "Zürich",
"description": "Name of the city in Switzerland."
},
"close": {
"message": "Close",
"description": "This string appears in dialogs as a button. Clicking it dismisses the dialog."
},
"confirmation_server_destroy": {
"message": "Existing users will lose access. This action cannot be undone.",
"description": "This string appears in a dialog that requests user confirmation for destroying a server. It informs the user about the consequences of destroying a server. 'Destroy' in this context implies that the server will be deleted."
},
"confirmation_server_destroy_title": {
"message": "Destroy Server?",
"description": "This string appears in a dialog that requests user confirmation for destroying a server. 'Destroy' in this context implies that the server will be deleted."
},
"confirmation_server_remove": {
"message": "This action removes your server from the Outline Manager, but does not block proxy access to users. You will still need to manually delete the Outline server from your host machine.",
"description": "This string appears in a dialog that requests user confirmation for removing a server from the application. It informs the user about the consequences of removing a server. 'Remove' in this context does not imply server deletion."
},
"confirmation_server_remove_title": {
"message": "Remove Server?",
"description": "This string appears in a dialog that requests user confirmation for removing a server from the application. 'Remove' in this context does not imply server deletion."
},
"data_limit": {
"message": "Data Limit",
"Description": "This string appears in various places related to the data transfer limit for a single access key."
},
"data_limit_per_key": {
"message": "Data limit per key",
"description": "This string appears as a label to an input to set the default access key data limit for a server."
},
"data_limits": {
"message": "Data limits",
"description": "This string appears as a title in a section to configure access key data transfer limits."
},
"data_limits_description": {
"message": "Set a 30 day trailing data transfer limit for access keys on this server.",
"description": "This string appears as an explanation to the access key data transfer limits feature."
},
"data_limits_dialog_text": {
"message": "Go to the Settings tab to set a data transfer limit for access keys on this server.",
"description": "This string appears as a text in a dialog to advertise the data limits feature."
},
"data_limits_dialog_title": {
"message": "Avoid data overages",
"description": "This string appears as a title in a dialog to advertise the data limits feature."
},
"data_limits_disclaimer": {
"message": "Since you are currently reporting metrics, use of the data limits feature will be included. Please see the $START_OF_LINK$data collection policy$END_OF_LINK$ for more details.",
"description": "This string provides a data collection disclaimer to opting into the data limits features.",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"data_limits_usage": {
"message": "$USED$ of $TOTAL$ used",
"description": "This string appears in a tooltip when the data limits feature is enabled. It lets the user know how much data an access key has used, relative to the limit.",
"placeholders": {
"USED": {
"content": "{used}",
"example": "10 GB"
},
"TOTAL": {
"content": "{total}",
"example": "50 GB"
}
}
},
"destroy": {
"message": "Destroy",
"description": "This string appears as a button in a dialog that requests user confirmation for destroying a server. Clicking the button causes the server to be deleted."
},
"disconnect": {
"message": "Disconnect",
"description": "This string appears as a button in a dialog to disconnect the user's cloud service account from the application. Clicking it signs the user out of the cloud server provider."
},
"digitalocean_disconnect_account": {
"message": "Disconnect DigitalOcean account",
"description": "This string appears as a header in a dialog to disconnect the user's DigitalOcean account from the application. DigitalOcean is a cloud server provider name and should not be translated."
},
"digitalocean_unreachable": {
"message": "This error may be due to a firewall on your network or temporary connectivity issues with digitalocean.com.",
"description": "This string appears in a dialog as a paragraph. It is shown when a DigitalOcean server cannot be reached. DigitalOcean is a cloud server provider."
},
"disabled": {
"message": "Disabled",
"description": "This string appears across the application as a drop-down menu option. It allows the user to deactivate features."
},
"done": {
"message": "Done",
"description": "This string appears across the application as a button. It lets the user indicate that an action, such as entering text or reading a dialog, has been completed."
},
"enabled": {
"message": "Enabled",
"description": "This string appears across the application as a drop-down menu option. It allows the user to activate features."
},
"error_connectivity": {
"message": "We're having trouble connecting to your DigitalOcean account. This is sometimes a temporary problem with DigitalOcean or with your internet connection. If retrying doesn't work, logging into DigitalOcean again should fix the problem.",
"description": "This string appears in a dialog as a paragraph. The dialog is shown when an operation on a DigitalOcean server fails due to connectivity issues. The dialog displays buttons that allow the user to retry the operation. DigitalOcean is a cloud server provider name and should not be translated."
},
"error_connectivity_title": {
"message": "Connection problem",
"description": "This string appears in a dialog as a header. The dialog is shown when an operation on a server fails due to connectivity issues. The dialog displays buttons that allow the user to retry the operation."
},
"error_do_account_info": {
"message": "Failed to get DigitalOcean account information",
"description": "This string appears in an error notification toast. It is shown when there is an error retrieving the user's DigitalOcean account. DigitalOcean is a cloud server provider name and should not be translated."
},
"error_do_auth": {
"message": "Authentication with DigitalOcean failed",
"description": "This string appears in an error notification toast. It is shown when there is an error when logging in to the user's DigitalOcean account. DigitalOcean is a cloud server provider name and should not be translated."
},
"error_do_regions": {
"message": "Failed to get list of available regions",
"description": "This string appears in an error notification toast. It is shown when there is an error retrieving the regions available for server deployment."
},
"error_do_limit": {
"message": "Your DigitalOcean account has reached its limit of $NUM$ Droplets. You can request an increase at https://cloud.digitalocean.com/account/team/droplet_limit_increase",
"description": "This string appears in an error notification toast. It is shown when the user has created the maximum number of allowed servers.",
"placeholders": {
"NUM": {
"content": "{num}",
"example": "3"
}
}
},
"error_do_warning": {
"message": "DigitalOcean warning: \"$MESSAGE$\"",
"description": "This string appears in an error notification toast when login has succeeded but there is a warning message.",
"placeholders": {
"MESSAGE": {
"content": "{message}",
"example": "Your team has been locked due to improper use of the platform."
}
}
},
"error_gcp_auth": {
"message": "Authentication with Google Cloud Platform failed",
"description": "This string appears in an error notification toast. It is shown when there is an error when logging in to the user's Google Cloud Platform account. Google Cloud Platform is a cloud server provider name and should not be translated."
},
"error_feedback": {
"message": "Failed to submit feedback. Please try again.",
"description": "This string appears in an error notification toast. It is shown when there is an error submitting the user's feedback."
},
"error_hostname_invalid": {
"message": "Must be an IP address or valid hostname.",
"description": "This string appears in an inline error message. It signifies that the user has input an invalid hostname."
},
"error_key_add": {
"message": "Failed to add key",
"description": "This string appears in an error notification toast. It is shown when there is an error creating a server access key."
},
"error_key_remove": {
"message": "Failed to remove key",
"description": "This string appears in an error notification toast. It is shown when there is an error deleting a server access key."
},
"error_key_rename": {
"message": "Failed to rename key",
"description": "This string appears in an error notification toast. It is shown when there is an error renaming a server access key."
},
"error_keys_get": {
"message": "Could not load keys",
"description": "This string appears in an error notification toast. It is shown when there is an error retrieving a server access keys."
},
"error_keys_port_bad_input": {
"message": "The port must be an integer between 1 and 65,535.",
"description": "This string appears in an inline error message. It signifies that the input number for the port for new access keys is invalid."
},
"error_keys_port_in_use": {
"message": "The port is already in use on the server.",
"description": "This string appears in an inline error message. It signifies that the input port for new access keys is already being used on the server and is unavailable."
},
"error_licenses": {
"message": "Could not load licenses.",
"description": "This string appears in a dialog that shows the application's software licenses. It is shown instead of the licenses' text when loading them fails."
},
"error_metrics": {
"message": "Error setting metrics enabled",
"description": "This string appears in an error notification toast. It is shown when there is an error enabling or disabling a server's metrics reporting."
},
"error_network": {
"message": "A network error occurred.",
"description": "This string indicates that an error happened due to network errors like not being connected to the internet."
},
"error_not_saved": {
"message": "Not Saved",
"description": "This string appears in an error notification toast. It signifies failure to submit user input to change the port number for new access keys."
},
"error_server_creation": {
"message": "There was an error creating your Outline server.",
"description": "This string appears in an dialog as a paragraph. The dialog is shown when there is an creating a server; the user can retry the operation or destroy the server."
},
"error_server_destroy": {
"message": "Failed to destroy server",
"description": "This string appears in an error notification toast. It is shown when there is an error destroying a server."
},
"error_server_removed": {
"message": "$SERVER_NAME$ no longer present in your DigitalOcean account.",
"description": "This string appears in an error notification toast. It is shown when a DigitalOcean server was destroyed outside the application to let the user know that it will not be displayed in the UI. DigitalOcean is a cloud server provider name and should not be translated.",
"placeholders": {
"SERVER_NAME": {
"content": "{serverName}",
"example": "New York Outline Server"
}
}
},
"error_server_rename": {
"message": "Failed to rename server",
"description": "This string appears in an error notification toast. It is shown when there is an error renaming a server."
},
"error_server_unreachable": {
"message": "Your Outline Server was installed correctly, but we are not able to connect to it. Most likely this is because your server's firewall rules are blocking incoming connections. Please review them and make sure to allow incoming TCP connections on ports ranging from 1024 to 65535.",
"description": "This string appears in dialog as a paragraph. The dialog is shown when a server is installed successfully but cannot be reached. The dialog provides possible solutions and displays buttons that allow the user to retry reaching the server."
},
"error_server_unreachable_title": {
"message": "Unable to connect to your Outline Server",
"description": "This string appears in dialog as a header. The dialog is shown when a server is installed successfully but cannot be reached."
},
"error_servers_removed": {
"message": "$SERVER_NAMES$ no longer present in your DigitalOcean account.",
"description": "This string appears in an error notification toast. It is shown when multiple DigitalOcean servers were destroyed outside the application to let the user know that they will not be displayed in the UI. DigitalOcean is a cloud server provider name and should not be translated.",
"placeholders": {
"SERVER_NAMES": {
"content": "{serverNames}",
"example": "New York Outline Server, Amsterdam Outline Server"
}
}
},
"error_unexpected": {
"message": "An unexpected error occurred.",
"description": "This string signifies that an error we didn't expect was encountered."
},
"error_set_data_limit": {
"message": "Could not set default data limit",
"description": "This string appears in an error notification toast. It is shown on failure to set the default data transfer limit on access keys."
},
"error_remove_data_limit": {
"message": "Could not disable default data limit",
"description": "This string appears in an error notification toast. It is shown on failure to remove the default data transfer limit on access keys."
},
"error_set_per_key_limit": {
"message": "Could not set data limit for this access key",
"description": "This string appears in an error notification toast. It is shown on failure to set the data transfer limit on a particular access key."
},
"error_remove_per_key_limit": {
"message": "Could not remove data limit from this access key",
"description": "This string appears in an error notification toast. It is shown on failure to remove the data transfer limit on a particular access key."
},
"experimental": {
"message": "Experimental",
"description": "This tag appears above a feature that is not yet fully tested."
},
"experiments": {
"message": "Experiments",
"description": "This string is the title of a section that displays opt-in experimental features."
},
"experiments_description": {
"message": "Test new features and provide us with feedback before they are released.",
"description": "This string is the description of a section that displays opt-in experimental features."
},
"experiments_disclaimer": {
"message": "Experiments are in development and may change or be removed from the app. If you are currently reporting metrics, use of experimental features will be included. Please see the $START_OF_LINK$data collection policy$END_OF_LINK$ for more details.",
"description": "This string provides a disclaimer to opting into experimental features.",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"experiments_feedback": {
"message": "Have suggestions? $START_OF_LINK$Submit feedback here.$END_OF_LINK$",
"description": "This string appears in a section that allows the user to enable experimental features. Allows the user to submit feedback about a particular feature.",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"feedback_cloud_provider": {
"message": "Select cloud provider",
"description": "This string appears in the feedback dialog as an placeholder within a drop-down. Allows the user to select a cloud provider for certain feedback categories."
},
"feedback_cloud_provider_error": {
"message": "Please select a cloud provider.",
"description": "This string appears in the feedback dialog as an error message within a drop-down. The string appears when the user attempts to submit feedback without selecting a cloud provider."
},
"feedback_connection": {
"message": "Can't connect to my server",
"description": "This string appears in the feedback dialog as an option within a drop-down of feedback categories. Indicates that the user cannot connect to their server."
},
"feedback_connection_others": {
"message": "Others can't connect to my server",
"description": "This string appears in the feedback dialog as an option within a drop-down of feedback categories. Indicates that users who have been given access keys cannot connect to the server."
},
"feedback_disclaimer": {
"message": "Please note that our team is only able to answer feedback in English.",
"description": "This string appears in the feedback dialog as a paragraph under the feedback form. Lets the user know that, although the application is localized, our team can only respond to feedback in English."
},
"feedback_email": {
"message": "Email address (optional)",
"description": "This string appears in the feedback dialog as a label of the email input form."
},
"feedback_error": {
"message": "Please enter feedback.",
"description": "This string appears in the feedback dialog as a paragraph below the feedback input form. It is displayed when the user clicks the submit button without having entered feedback in the input form."
},
"feedback_explanation_install": {
"message": "An error occurred while attempting to install Outline on your server. If you haven't been able to figure out a solution, please consider sending us feedback and telling us your email address (optional) so that we can get back to you.",
"description": "This string appears in the feedback dialog as a paragraph above the feedback input form. The feedback dialog gets automatically displayed with this message when a server installation fails."
},
"feedback_general": {
"message": "General feedback",
"description": "This string appears in the feedback dialog as an option within a drop-down of feedback categories. Indicates that the user is providing general feedback."
},
"feedback_install": {
"message": "Having trouble installing Outline",
"description": "This string appears in the feedback dialog as an option within a drop-down of feedback categories. Indicates that the user cannot install Outline on their server."
},
"feedback_label": {
"message": "Your feedback",
"description": "This string appears in the feedback dialog as a placeholder of the feedback input form."
},
"feedback_management": {
"message": "Having trouble managing my server",
"description": "This string appears in the feedback dialog as an option within a drop-down of feedback categories. Indicates that the user is having issues managing their server."
},
"feedback_other": {
"message": "Other",
"description": "This string appears in the feedback dialog as an option within a drop-down of cloud providers. Indicates that the user has a server on an unlisted cloud provider."
},
"feedback_privacy": {
"message": "Your feedback, email address (if provided) and additional information referred to in the $START_OF_LINK$privacy policy$END_OF_LINK$ will be sent to the Outline team.",
"description": "This string appears in the feedback dialog as paragraph below the feedback input form. Lets the user know how their feedback and personal information will be handled.",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"feedback_submit": {
"message": "Submit",
"description": "This string appears in the feedback dialog as a button. Clicking it submits the feedback form."
},
"feedback_suggestion": {
"message": "Suggestions",
"description": "This string appears in the feedback dialog as an option within a drop-down of feedback categories. Indicates that the user is providing a product suggestion."
},
"feedback_title_generic": {
"message": "Send Feedback",
"description": "This string appears in the feedback dialog as a header."
},
"feedback_title_install": {
"message": "Outline Server Installation Failed",
"description": "This string appears in the feedback dialog as a header. The feedback dialog gets automatically displayed with this header when a server installation fails."
},
"gcp_billing_description": {
"message": "$START_OF_LINK$Open the Cloud Console billing page$END_OF_LINK$ and add an account in order to proceed.",
"description": "This instruction is a clarification regarding the title of the billing page.",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"gcp_billing_action": {
"message": "Next",
"description": "Button label for a button that opens the billing page in the web browser (i.e. next step).",
"meaning": "gcp_billing_action"
},
"gcp_billing_body": {
"message": "Waiting for you to $START_OF_LINK$add a billing account on Google Cloud$END_OF_LINK$",
"description": "Body text on the billing page",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"gcp_billing_error": {
"message": "Unable to retrieve billing information",
"description": "Error popup message in response to a user click"
},
"gcp_billing_error_zero": {
"message": "You must add a billing account before proceeding.",
"description": "Error popup message in response to a user click"
},
"gcp_click_create": {
"message": "Click 'Create'.",
"description": "This string appears within the server setup view as an item of a list that provides instructions to configure a firewall in Google Cloud Platform. 'Create' should be translated and included untranslated in parentheses."
},
"gcp_create_new_project": {
"message": "$START_OF_LINK$Create a new Google Cloud Project$END_OF_LINK$.",
"description": "This string appears in the server setup view as a card header for creating a new Google Cloud project",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"gcp_create_new_vm": {
"message": "$START_OF_LINK$Create a new VM instance$END_OF_LINK$.",
"description": "This string appears in the server setup view as an section header for instructions for creating a VM on Google Cloud.",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"gcp_create_project": {
"message": "Create a Google Cloud project",
"description": "This string appears as a header of a set of instructions for creating a new Google Cloud project"
},
"gcp_create_server": {
"message": "Create your Google Cloud Project",
"description": "This string appears in the server setup view as a section header for creating a new Google Cloud project"
},
"gcp_create_vm": {
"message": "Create a VM Instance",
"description": "This string appears as a header for a set of instructions for creating a new Google Cloud VM"
},
"gcp_disconnect_account": {
"message": "Disconnect Google Cloud Platform account",
"description": "This string appears as a header in a dialog to disconnect the user's Google Cloud Platform account from the application. Google Cloud Platform is a cloud server provider name and should not be translated."
},
"gcp_firewall_create_0": {
"message": "$START_OF_LINK$Add a new firewall rule$END_OF_LINK$ to your Compute Engine project.",
"description": "This string appears within the server setup view as an item of a list that provides instructions to configure a firewall in Google Cloud Platform. Compute Engine is a product of Google Cloud Platform and should not be translated.",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"gcp_firewall_create_1": {
"message": "Type 'outline' in the 'Name' field.",
"description": "This string appears within the server setup view as an item of a list that provides instructions to configure a firewall in Google Cloud Platform. 'Name' should be translated and included untranslated in parentheses."
},
"gcp_firewall_create_2": {
"message": "Type 'outline' in the 'Target tags' field.",
"description": "This string appears within the server setup view as an item of a list that provides instructions to configure a firewall in Google Cloud Platform. 'Target tags' should be translated and included untranslated in parentheses."
},
"gcp_firewall_create_3": {
"message": "Type '0.0.0.0/0' in the 'Source IP ranges' field.",
"description": "This string appears within the server setup view as an item of a list that provides instructions to configure a firewall in Google Cloud Platform. 'Source IP ranges' should be translated and included untranslated in parentheses."
},
"gcp_firewall_create_4": {
"message": "Select 'Allow all' under 'Protocols and ports'.",
"description": "This string appears within the server setup view as an item of a list that provides instructions to configure a firewall in Google Cloud Platform. 'Allow all' and 'Protocols and ports' should be translated and included untranslated in parentheses."
},
"gcp_name_your_project": {
"message": "Name your project in the 'Project name' field.",
"description": "This string appears as instructions for naming a new Google Cloud Project. 'Project Name' should be translated and include untranslated in parentheses"
},
"gcp_project_setup_error": {
"message": "An error occurred while setting up your Google Cloud project",
"description": "Error message, shown in a popup when server creation fails"
},
"gcp_select_machine_type": {
"message": "Select 'f1-micro' under 'Machine type'",
"description": "This string appears as an instruction for selecting the machine type for a new Google Cloud VM. 'Machine type' should be translated and include untranslated in parentheses."
},
"gcp_select_networking": {
"message": "Click 'Management, security, disks, networking, sole tenancy', then 'Networking'",
"description": "This string appears as an instruction to find the networking options when creating a new Google Cloud VM. 'Management, security, disks, networking, sole tenancy' and 'Networking' should match that used in the Google Cloud Console should be translated and included untranslated in parentheses."
},
"gcp_select_region": {
"message": "Select a region close to where the server's users will be under 'Region'.",
"description": "This string appears as an instruction for selecting a region for a new Google Cloud VM. 'Region' should be translated and include untranslated in parentheses."
},
"gcp_type_network_tag": {
"message": "Type 'outline' in the 'Network tags' field",
"description": "This string appears as an instruction for specifying a network tag in a new Google Cloud VM. 'Network tags' should be translated and include untranslated in parentheses"
},
"gcp_type_outline_server": {
"message": "Type 'outline-server' in the 'Name' field.",
"description": "This string is an instruction in directions for creating a new Google Cloud VM. 'Name' should be translated and include untranslated in parentheses"
},
"key": {
"message": "Key $KEY_ID$",
"description": "This string appears in the server view as a placeholder for a newly created access key with id number KEY_ID.",
"placeholders": {
"KEY_ID": {
"content": "{keyId}",
"example": "1"
}
}
},
"manager_resources": {
"message": "Manager Resources",
"description": "This string appears within the manager sidebar as a link to the manager documentation."
},
"management_api_documentation": {
"message": "Server Management API Documentation",
"description": "This string appears next to the management API url, pointing to the API documentation."
},
"manual_server_assign_firewall": {
"message": "Assign firewall rule",
"description": "This string appears in the server setup view as a sub-header of a section that provides instructions to configure the server's firewall."
},
"manual_server_assign_group": {
"message": "Assign Security Group",
"description": "This string appears in the server setup view as a sub-header of a section that provides instructions to configure the server's firewall."
},
"manual_server_create_firewall": {
"message": "Create a firewall rule",
"description": "This string appears in the server setup view as a sub-header of a section that provides instructions to configure the server's firewall."
},
"manual_server_create_group": {
"message": "Create a Security Group",
"description": "This string appears in the server setup view as a sub-header of a section that provides instructions to configure the server's firewall."
},
"manual_server_description": {
"message": "These steps will help you install Outline on a $CLOUD_PROVIDER$ Linux server.",
"description": "This string appears in the server setup view as a header. Lets the user know that the following sections provide instructions on how to install Outline on their server.",
"placeholders": {
"CLOUD_PROVIDER": {
"content": "{cloudProvider}",
"example": "Amazon Web Services"
}
}
},
"manual_server_firewall": {
"message": "Configure your firewall",
"description": "This string appears in the server setup view as the header of a section that provides instructions to configure the server's firewall."
},
"manual_server_install_paste": {
"message": "Paste your installation output here.",
"description": "This string appears in the server setup view as a header of a section that contains an input form. The user must enter the output of the server installation script to manage their server in the application."
},
"manual_server_install_run": {
"message": "Log into your server, and run this command.",
"description": "This string appears in the server setup view as a header of a section that displays a command to install Outline on their server."
},
"manual_server_instructions": {
"message": "Instructions",
"description": "This string appears in the server setup view as a toggle of a section that provides instructions to configure the server's firewall."
},
"manual_server_show_me": {
"message": "Show me where",
"description": "This string appears in the server setup view as a button. Clicking the button opens a link to the cloud server provider management console."
},
"manual_server_title": {
"message": "Follow the instructions below",
"description": "This string appears in the server setup view as a header. Communicates to the user that they need to perform a series of actions to install Outline on their server."
},
"metrics_description": {
"message": "Share anonymized metrics to help improve the reliability and performance of Outline, for you and for those you share your server with. $START_OF_LINK$Learn more.$END_OF_LINK$",
"description": "This string appears in the server settings view as a paragraph next to a toggle that enables/disables server metrics reporting.",
"placeholders": {
"END_OF_LINK": {
"content": "{closeLink}"
},
"START_OF_LINK": {
"content": "{openLink}"
}
}
},
"metrics_share": {
"message": "Share metrics",
"description": "This string appears as a button of a dialog that prompts the user to share server metrics. Clicking it enables server metrics reporting."
},
"metrics_skip": {
"message": "Skip",
"description": "This string appears as a button of a dialog that prompts the user to share server metrics. Clicking it dismisses the dialog."
},
"metrics_title": {
"message": "Metrics sharing",
"description": "This string appears as the header of a dialog that prompts the user to share server metrics."
},
"nav_about": {
"message": "About",
"description": "This string appears in an application drawer as a navigation link. Clicking it opens a dialog with information about Outline."
},
"no_data_limit": {
"message": "None",
"description": "This string appears alongside each access key in the data transfer stats section if it is under no data limit. Example: 450 MB / None"
},
"nav_contact_us": {
"message": "Contact us",
"description": "This string appears in an application drawer as a navigation link. Clicking it opens a dialog that allows the user to contact us."
},
"nav_data_collection": {
"message": "Data collection",
"description": "This string appears in an application drawer as a navigation link. Clicking it opens Outline's data collection policy in the browser."
},
"nav_feedback": {
"message": "Feedback",
"description": "This string appears in an application drawer as a navigation link. Clicking it opens a dialog that allows the user to submit feedback."
},
"nav_help": {
"message": "Help",
"description": "This string appears in an application drawer as a navigation link. Clicking it opens Outline's support website."
},
"nav_licenses": {
"message": "Licenses",
"description": "This string appears in an application drawer as a navigation link. Clicking it opens a dialog listing Outline's software licenses."
},
"nav_privacy": {
"message": "Privacy",
"description": "This string appears in an application drawer as a navigation link. Clicking it opens Outline's privacy policy in the browser."
},
"nav_terms": {
"message": "Terms",
"description": "This string appears in an application drawer as a navigation link. Clicking it opens Outline's terms of service in the browser."
},
"no": {
"description": "Negative answer to a form question.",
"message": "No"
},
"notification_app_update": {
"message": "An updated version of the Outline Manager has been downloaded. It will be installed when you restart the application.",
"description": "This string appears in a transient notification toast. It is shown when an update to the application is ready to install."
},
"notification_feedback_thanks": {
"message": "Thanks for helping us improve! We love hearing from you.",
"description": "This string appears in a transient notification toast. It is shown when the user has successfully submitted feedback."
},
"notification_key_added": {
"message": "Key added",
"description": "This string appears in a transient notification toast. It is shown when a server access key has been successfully created."
},
"notification_key_removed": {
"message": "Key removed",
"description": "This string appears in a transient notification toast. It is shown when a server access key has been successfully removed."
},
"notification_server_destroyed": {
"message": "Server destroyed",
"description": "This string appears in a transient notification toast. It is shown when a server has been successfully destroyed."
},
"notification_server_exists": {
"message": "Server already added",
"description": "This string appears in a transient notification toast. It is shown when the user attempts to add server that is already present in the application."
},
"notification_server_removed": {
"message": "Server removed",
"description": "This string appears in a transient notification toast. It is shown when a server has been successfully removed from the application."
},
"oauth_account_active": {
"message": "Your DigitalOcean account has been activated.",
"description": "This string appears in the DigitalOcean account creation flow as a sub-header. Lets the user know their DigitalOcean account is active. DigitalOcean is a cloud provider name and should not be translated."
},
"oauth_account_active_tag": {
"message": "Account activated! Loading server locations...",
"description": "This string appears in the DigitalOcean account creation flow as a paragraph. Displayed when the user's DigitalOcean account has been successfully activated."
},
"oauth_activate_account": {
"message": "Activate your DigitalOcean account.",
"description": "This string appears in the DigitalOcean account creation flow as a header. Displayed when the account has been created but not yet active. DigitalOcean is a cloud provider name and should not be translated."
},
"oauth_billing": {
"message": "Enter your billing information on digitalocean.com and return to the app once you are done.",
"description": "This string appears in the DigitalOcean account creation flow as a sub-header. Prompts the user to enter their billing information on DigitalOcean's website."
},
"oauth_billing_tag": {
"message": "Enter billing information...",
"description": "This string appears in the DigitalOcean account creation flow as a paragraph. Prompts the user to enter their billing information on DigitalOcean's website."
},
"oauth_connect_description": {
"message": "With your account, Outline makes it easy to create a server and get connected.",
"description": "This string appears in the DigitalOcean account creation flow as a sub-header. Displayed when the user has not yet authorized Outline to access their DigitalOcean account."
},
"oauth_connect_tag": {
"message": "Waiting to connect your account...",
"description": "This string appears in the DigitalOcean account creation flow as a paragraph. Displayed when the user has not yet authorized Outline to access their DigitalOcean account."
},
"oauth_connect_title": {
"message": "Sign in or create an account with DigitalOcean.",
"description": "This string appears in the DigitalOcean account creation flow as a header. Displayed when the user has not yet signed in to DigitalOcean or created an account."
},
"oauth_sign_out": {
"message": "Sign Out",
"description": "This string appears in the DigitalOcean account creation flow as a button. Displayed when the user has authorized Outline to access their account. Clicking it aborts the account creation flow and signs out the user."
},
"oauth_verify": {
"message": "Check your inbox for an email from DigitalOcean, and click the link in it to confirm your account.",
"description": "This string appears in the DigitalOcean account creation flow as a sub-header. Displayed when the user has not yet entered billing information to activate their DigitalOcean account. DigitalOcean is a cloud provider name and should not be translated."
},
"oauth_verify_tag": {
"message": "Confirm your email...",
"description": "This string appears in the DigitalOcean account creation flow as a paragraph. Displayed when the user has not yet confirmed the registered email for their DigitalOcean account."
},
"okay": {
"message": "OK",
"description": "This string appears across the application as a button. It lets the user acknowledge displayed information. Clicking dismisses the enclosing UI element."
},
"per_key_data_limit_dialog_set_custom": {
"message": "Set a custom data limit",
"description": "This string appears next to a checkbox in the per-key data limit dialog which, when selected, shows the input to add a data limit to an access key"
},
"per_key_data_limit_dialog_title": {
"message": "Data Limit - $KEY_NAME$",
"description": "This string appears as the title of the per-key data limit dialog.",
"placeholders": {
"KEY_NAME": {
"content": "{keyName}",
"Example": "Key 1"
}
}
},
"region_description": {
"message": "This is where your internet experience will come from.",
"description": "This string appears within the server creation flow, as a sub-header of the server selection view. Lets the user know about the implications of selecting a server location."
},
"region_best_value": {
"message": "Best Value",
"description": "Appears within the server creation flow, indicating that a server option costs less than the other options."
},
"region_setup": {
"message": "Set up Outline",
"description": "This string appears within the server creation flow, as a button of the server selection view. Clicking it creates an Outline server at the selected location. 'Set up' means install and run the Outline server software."