-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.en.yml
3724 lines (3505 loc) · 155 KB
/
client.en.yml
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
# encoding: utf-8
#
# This file contains content for the client portion of Discourse, sent out
# to the Javascript app.
#
# To work with us on translations, see: https://www.transifex.com/projects/p/discourse-org/
#
# This is a "source" file, which is used by Transifex to get translations for other languages.
# After this file is changed, it needs to be pushed by a maintainer to Transifex:
#
# tx push -s
#
# Read more here: https://meta.discourse.org/t/contribute-a-translation-to-discourse/14882
#
# To validate this YAML file after you change it, please paste it into http://yamllint.com/
en:
js:
number:
format:
# symbol used to separate the integer part from the fractional part of a number
separator: "."
# symbol for the thousands separator used in digit grouping
delimiter: ","
human:
storage_units:
format: '%n %u'
units:
byte:
one: Byte
other: Bytes
gb: GB
kb: KB
mb: MB
tb: TB
short:
thousands: "{{number}}k"
millions: "{{number}}M"
dates:
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
time: "h:mm a"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
timeline_date: "MMM YYYY"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
long_no_year: "MMM D h:mm a"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
long_no_year_no_time: "MMM D"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
full_no_year_no_time: "MMMM Do"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
long_with_year: "MMM D, YYYY h:mm a"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
long_with_year_no_time: "MMM D, YYYY"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
full_with_year_no_time: "MMMM Do, YYYY"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
long_date_with_year: "MMM D, 'YY LT"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
long_date_without_year: "MMM D, LT"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
long_date_with_year_without_time: "MMM D, 'YY"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
long_date_without_year_with_linebreak: "MMM D <br/>LT"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
long_date_with_year_with_linebreak: "MMM D, 'YY <br/>LT"
wrap_ago: "%{date} ago"
tiny:
half_a_minute: "< 1m"
less_than_x_seconds:
one: "< 1s"
other: "< %{count}s"
x_seconds:
one: "1s"
other: "%{count}s"
less_than_x_minutes:
one: "< 1m"
other: "< %{count}m"
x_minutes:
one: "1m"
other: "%{count}m"
about_x_hours:
one: "1h"
other: "%{count}h"
x_days:
one: "1d"
other: "%{count}d"
x_months:
one: "1mon"
other: "%{count}mon"
about_x_years:
one: "1y"
other: "%{count}y"
over_x_years:
one: "> 1y"
other: "> %{count}y"
almost_x_years:
one: "1y"
other: "%{count}y"
date_month: "MMM D"
date_year: "MMM 'YY"
medium:
x_minutes:
one: "1 min"
other: "%{count} mins"
x_hours:
one: "1 hour"
other: "%{count} hours"
x_days:
one: "1 day"
other: "%{count} days"
date_year: "MMM D, 'YY"
medium_with_ago:
x_minutes:
one: "1 min ago"
other: "%{count} mins ago"
x_hours:
one: "1 hour ago"
other: "%{count} hours ago"
x_days:
one: "1 day ago"
other: "%{count} days ago"
later:
x_days:
one: "1 day later"
other: "%{count} days later"
x_months:
one: "1 month later"
other: "%{count} months later"
x_years:
one: "1 year later"
other: "%{count} years later"
previous_month: 'Previous Month'
next_month: 'Next Month'
placeholder: date
share:
topic: 'share a link to this topic'
post: 'post #%{postNumber}'
close: 'close'
twitter: 'share this link on Twitter'
facebook: 'share this link on Facebook'
google+: 'share this link on Google+'
email: 'send this link in an email'
action_codes:
public_topic: "made this topic public %{when}"
private_topic: "made this topic private %{when}"
split_topic: "split this topic %{when}"
invited_user: "invited %{who} %{when}"
invited_group: "invited %{who} %{when}"
user_left: "%{who} removed themselves from this message %{when}"
removed_user: "removed %{who} %{when}"
removed_group: "removed %{who} %{when}"
autoclosed:
enabled: 'closed %{when}'
disabled: 'opened %{when}'
closed:
enabled: 'closed %{when}'
disabled: 'opened %{when}'
archived:
enabled: 'archived %{when}'
disabled: 'unarchived %{when}'
pinned:
enabled: 'pinned %{when}'
disabled: 'unpinned %{when}'
pinned_globally:
enabled: 'pinned globally %{when}'
disabled: 'unpinned %{when}'
visible:
enabled: 'listed %{when}'
disabled: 'unlisted %{when}'
banner:
enabled: 'made this a banner %{when}. It will appear at the top of every page until it is dismissed by the user.'
disabled: 'removed this banner %{when}. It will no longer appear at the top of every page.'
topic_admin_menu: "topic admin actions"
wizard_required: "Welcome to your new Discourse! Let’s get started with <a href='%{url}' data-auto-route='true'>the setup wizard</a> ✨"
emails_are_disabled: "All outgoing email has been globally disabled by an administrator. No email notifications of any kind will be sent."
bootstrap_mode_enabled: "To make launching your new site easier, you are in bootstrap mode. All new users will be granted trust level 1 and have daily email digest updates enabled. This will be automatically turned off when total user count exceeds %{min_users} users."
bootstrap_mode_disabled: "Bootstrap mode will be disabled in next 24 hours."
themes:
default_description: "Default"
s3:
regions:
ap_northeast_1: "Asia Pacific (Tokyo)"
ap_northeast_2: "Asia Pacific (Seoul)"
ap_south_1: "Asia Pacific (Mumbai)"
ap_southeast_1: "Asia Pacific (Singapore)"
ap_southeast_2: "Asia Pacific (Sydney)"
cn_north_1: "China (Beijing)"
eu_central_1: "EU (Frankfurt)"
eu_west_1: "EU (Ireland)"
eu_west_2: "EU (London)"
sa_east_1: "South America (Sao Paulo)"
us_east_1: "US East (N. Virginia)"
us_east_2: "US East (Ohio)"
us_gov_west_1: "AWS GovCloud (US)"
us_west_1: "US West (N. California)"
us_west_2: "US West (Oregon)"
edit: 'edit the title and category of this topic'
not_implemented: "That feature hasn't been implemented yet, sorry!"
no_value: "No"
yes_value: "Yes"
generic_error: "Sorry, an error has occurred."
generic_error_with_reason: "An error occurred: %{error}"
sign_up: "Sign Up"
log_in: "Log In"
age: "Age"
joined: "Joined"
admin_title: "Admin"
flags_title: "Flags"
show_more: "show more"
show_help: "options"
links: "Links"
links_lowercase:
one: "link"
other: "links"
faq: "FAQ"
guidelines: "Guidelines"
privacy_policy: "Privacy Policy"
privacy: "Privacy"
terms_of_service: "Terms of Service"
mobile_view: "Mobile View"
desktop_view: "Desktop View"
you: "You"
or: "or"
now: "just now"
read_more: 'read more'
more: "More"
less: "Less"
never: "never"
every_30_minutes: "every 30 minutes"
every_hour: "every hour"
daily: "daily"
weekly: "weekly"
every_two_weeks: "every two weeks"
every_three_days: "every three days"
max_of_count: "max of {{count}}"
alternation: "or"
character_count:
one: "{{count}} character"
other: "{{count}} characters"
suggested_topics:
title: "Suggested Topics"
pm_title: "Suggested Messages"
about:
simple_title: "About"
title: "About %{title}"
stats: "Site Statistics"
our_admins: "Our Admins"
our_moderators: "Our Moderators"
stat:
all_time: "All Time"
last_7_days: "Last 7 Days"
last_30_days: "Last 30 Days"
like_count: "Likes"
topic_count: "Topics"
post_count: "Posts"
user_count: "Users"
active_user_count: "Active Users"
contact: "Contact Us"
contact_info: "In the event of a critical issue or urgent matter affecting this site, please contact us at %{contact_info}."
bookmarked:
title: "Bookmark"
clear_bookmarks: "Clear Bookmarks"
help:
bookmark: "Click to bookmark the first post on this topic"
unbookmark: "Click to remove all bookmarks in this topic"
bookmarks:
not_logged_in: "sorry, you must be logged in to bookmark posts"
created: "you've bookmarked this post"
not_bookmarked: "you've read this post; click to bookmark it"
last_read: "this is the last post you've read; click to bookmark it"
remove: "Remove Bookmark"
confirm_clear: "Are you sure you want to clear all the bookmarks from this topic?"
topic_count_latest:
one: "{{count}} new or updated topic."
other: "{{count}} new or updated topics."
topic_count_unread:
one: "{{count}} unread topic."
other: "{{count}} unread topics."
topic_count_new:
one: "{{count}} new topic."
other: "{{count}} new topics."
click_to_show: "Click to show."
preview: "preview"
cancel: "cancel"
save: "Save Changes"
saving: "Saving..."
saved: "Saved!"
upload: "Upload"
uploading: "Uploading..."
uploading_filename: "Uploading {{filename}}..."
uploaded: "Uploaded!"
pasting: "Pasting..."
enable: "Enable"
disable: "Disable"
undo: "Undo"
revert: "Revert"
failed: "Failed"
switch_to_anon: "Enter Anonymous Mode"
switch_from_anon: "Exit Anonymous Mode"
banner:
close: "Dismiss this banner."
edit: "Edit this banner >>"
choose_topic:
none_found: "No topics found."
title:
search: "Search for a Topic by name, url or id:"
placeholder: "type the topic title here"
queue:
topic: "Topic:"
approve: 'Approve'
reject: 'Reject'
delete_user: 'Delete User'
title: "Needs Approval"
none: "There are no posts to review."
edit: "Edit"
cancel: "Cancel"
view_pending: "view pending posts"
has_pending_posts:
one: "This topic has <b>1</b> post awaiting approval"
other: "This topic has <b>{{count}}</b> posts awaiting approval"
confirm: "Save Changes"
delete_prompt: "Are you sure you want to delete <b>%{username}</b>? This will remove all of their posts and block their email and IP address."
approval:
title: "Post Needs Approval"
description: "We've received your new post but it needs to be approved by a moderator before it will appear. Please be patient."
pending_posts:
one: "You have <strong>1</strong> post pending."
other: "You have <strong>{{count}}</strong> posts pending."
ok: "OK"
user_action:
user_posted_topic: "<a href='{{userUrl}}'>{{user}}</a> posted <a href='{{topicUrl}}'>the topic</a>"
you_posted_topic: "<a href='{{userUrl}}'>You</a> posted <a href='{{topicUrl}}'>the topic</a>"
user_replied_to_post: "<a href='{{userUrl}}'>{{user}}</a> replied to <a href='{{postUrl}}'>{{post_number}}</a>"
you_replied_to_post: "<a href='{{userUrl}}'>You</a> replied to <a href='{{postUrl}}'>{{post_number}}</a>"
user_replied_to_topic: "<a href='{{userUrl}}'>{{user}}</a> replied to <a href='{{topicUrl}}'>the topic</a>"
you_replied_to_topic: "<a href='{{userUrl}}'>You</a> replied to <a href='{{topicUrl}}'>the topic</a>"
user_mentioned_user: "<a href='{{user1Url}}'>{{user}}</a> mentioned <a href='{{user2Url}}'>{{another_user}}</a>"
user_mentioned_you: "<a href='{{user1Url}}'>{{user}}</a> mentioned <a href='{{user2Url}}'>you</a>"
you_mentioned_user: "<a href='{{user1Url}}'>You</a> mentioned <a href='{{user2Url}}'>{{another_user}}</a>"
posted_by_user: "Posted by <a href='{{userUrl}}'>{{user}}</a>"
posted_by_you: "Posted by <a href='{{userUrl}}'>you</a>"
sent_by_user: "Sent by <a href='{{userUrl}}'>{{user}}</a>"
sent_by_you: "Sent by <a href='{{userUrl}}'>you</a>"
directory:
filter_name: "filter by username"
title: "Users"
likes_given: "Given"
likes_received: "Received"
topics_entered: "Viewed"
topics_entered_long: "Topics Viewed"
time_read: "Time Read"
topic_count: "Topics"
topic_count_long: "Topics Created"
post_count: "Replies"
post_count_long: "Replies Posted"
no_results: "No results were found."
days_visited: "Visits"
days_visited_long: "Days Visited"
posts_read: "Read"
posts_read_long: "Posts Read"
total_rows:
one: "1 user"
other: "%{count} users"
group_histories:
actions:
change_group_setting: "Change group setting"
add_user_to_group: "Add user"
remove_user_from_group: "Remove user"
make_user_group_owner: "Make owner"
remove_user_as_group_owner: "Revoke owner"
groups:
logs:
title: "Logs"
when: "When"
action: "Action"
acting_user: "Acting user"
target_user: "Target user"
subject: "Subject"
details: "Details"
from: "From"
to: "To"
edit:
title: 'Edit Group'
full_name: 'Full Name'
add_members: "Add Members"
delete_member_confirm: "Remove '%{username}' from the '%{group}' group?"
name_placeholder: "Group name, no spaces, same as username rule"
public_admission: "Allow users to join the group freely (Requires publicly visible group)"
public_exit: "Allow users to leave the group freely"
empty:
posts: "There are no posts by members of this group."
members: "There are no members in this group."
mentions: "There are no mentions of this group."
messages: "There are no messages for this group."
topics: "There are no topics by members of this group."
logs: "There are no logs for this group."
add: "Add"
join: "Join Group"
leave: "Leave Group"
request: "Request to Join Group"
message: "Message"
automatic_group: Automatic Group
closed_group: Closed Group
is_group_user: "You are a member of this group"
allow_membership_requests: "Allow users to send membership requests to group owners"
membership_request_template: "Custom template to display to users when sending a membership request"
membership_request:
submit: "Submit Request"
title: "Request to join @%{group_name}"
reason: "Let the group owners know why you belong in this group"
membership: "Membership"
name: "Name"
user_count: "Number of Members"
bio: "About Group"
selector_placeholder: "Add members"
owner: "owner"
index:
title: "Groups"
empty: "There are no visible groups."
title:
one: "Group"
other: "Groups"
activity: "Activity"
members: "Members"
topics: "Topics"
posts: "Posts"
mentions: "Mentions"
messages: "Messages"
notification_level: "Default notification level for group messages"
visibility_levels:
title: "Who can see this group?"
public: "Everyone"
members: "Group owners, members and admins"
staff: "Group owners and staff"
owners: "Group owners and admins"
alias_levels:
mentionable: "Who can @mention this group?"
messageable: "Who can message this group?"
nobody: "Nobody"
only_admins: "Only admins"
mods_and_admins: "Only moderators and Admins"
members_mods_and_admins: "Only group members, moderators and admins"
everyone: "Everyone"
trust_levels:
title: "Trust level automatically granted to members when they're added:"
none: "None"
notifications:
watching:
title: "Watching"
description: "You will be notified of every new post in every message, and a count of new replies will be shown."
watching_first_post:
title: "Watching First Post"
description: "You will only be notified of the first post in each new topic in this group."
tracking:
title: "Tracking"
description: "You will be notified if someone mentions your @name or replies to you, and a count of new replies will be shown."
regular:
title: "Normal"
description: "You will be notified if someone mentions your @name or replies to you."
muted:
title: "Muted"
description: "You will never be notified of anything about new topics in this group."
flair_url: "Avatar Flair Image"
flair_url_placeholder: "(Optional) Image URL or Font Awesome class"
flair_bg_color: "Avatar Flair Background Color"
flair_bg_color_placeholder: "(Optional) Hex color value"
flair_color: "Avatar Flair Color"
flair_color_placeholder: "(Optional) Hex color value"
flair_preview_icon: "Preview Icon"
flair_preview_image: "Preview Image"
flair_note: "Note: Flair will only show for a user's primary group."
user_action_groups:
"1": "Likes Given"
"2": "Likes Received"
"3": "Bookmarks"
"4": "Topics"
"5": "Replies"
"6": "Responses"
"7": "Mentions"
"9": "Quotes"
"11": "Edits"
"12": "Sent Items"
"13": "Inbox"
"14": "Pending"
categories:
all: "all categories"
all_subcategories: "all"
no_subcategory: "none"
category: "Category"
category_list: "Display category list"
reorder:
title: "Reorder Categories"
title_long: "Reorganize the category list"
fix_order: "Fix Positions"
fix_order_tooltip: "Not all categories have a unique position number, which may cause unexpected results."
save: "Save Order"
apply_all: "Apply"
position: "Position"
posts: "Posts"
topics: "Topics"
latest: "Latest"
latest_by: "latest by"
toggle_ordering: "toggle ordering control"
subcategories: "Subcategories"
topic_sentence:
one: "1 topic"
other: "%{count} topics"
topic_stat_sentence:
one: "%{count} new topic in the past %{unit}."
other: "%{count} new topics in the past %{unit}."
ip_lookup:
title: IP Address Lookup
hostname: Hostname
location: Location
location_not_found: (unknown)
organisation: Organization
phone: Phone
other_accounts: "Other accounts with this IP address:"
delete_other_accounts: "Delete %{count}"
username: "username"
trust_level: "TL"
read_time: "read time"
topics_entered: "topics entered"
post_count: "# posts"
confirm_delete_other_accounts: "Are you sure you want to delete these accounts?"
powered_by: "powered by <a href='https://ipinfo.io'>ipinfo.io</a>"
user_fields:
none: "(select an option)"
user:
said: "{{username}}:"
profile: "Profile"
mute: "Mute"
edit: "Edit Preferences"
download_archive:
button_text: "Download All"
confirm: "Are you sure you want to download your posts?"
success: "Download initiated, you will be notified via message when the process is complete."
rate_limit_error: "Posts can be downloaded once per day, please try again tomorrow."
new_private_message: "New Message"
private_message: "Message"
private_messages: "Messages"
activity_stream: "Activity"
preferences: "Preferences"
expand_profile: "Expand"
bookmarks: "Bookmarks"
bio: "About me"
invited_by: "Invited By"
trust_level: "Trust Level"
notifications: "Notifications"
statistics: "Stats"
desktop_notifications:
label: "Desktop Notifications"
not_supported: "Notifications are not supported on this browser. Sorry."
perm_default: "Turn On Notifications"
perm_denied_btn: "Permission Denied"
perm_denied_expl: "You denied permission for notifications. Allow notifications via your browser settings."
disable: "Disable Notifications"
currently_enabled: ""
enable: "Enable Notifications"
currently_disabled: ""
each_browser_note: "Note: You have to change this setting on every browser you use."
dismiss: 'Dismiss'
dismiss_notifications: "Dismiss All"
dismiss_notifications_tooltip: "Mark all unread notifications as read"
first_notification: "Your first notification! Select it to begin."
disable_jump_reply: "Don't jump to my post after I reply"
dynamic_favicon: "Show new / updated topic count on browser icon"
theme_default_on_all_devices: "Make this my default theme on all my devices"
allow_private_messages: "Allow other users to send me private messages"
external_links_in_new_tab: "Open all external links in a new tab"
enable_quoting: "Enable quote reply for highlighted text"
change: "change"
moderator: "{{user}} is a moderator"
admin: "{{user}} is an admin"
moderator_tooltip: "This user is a moderator"
admin_tooltip: "This user is an admin"
silenced_tooltip: "This user is silenced"
suspended_notice: "This user is suspended until {{date}}."
suspended_permanently: "This user is suspended."
suspended_reason: "Reason: "
github_profile: "Github"
email_activity_summary: "Activity Summary"
mailing_list_mode:
label: "Mailing list mode"
enabled: "Enable mailing list mode"
instructions: |
This setting overrides the activity summary.<br />
Muted topics and categories are not included in these emails.
individual: "Send an email for every new post"
individual_no_echo: "Send an email for every new post except my own"
many_per_day: "Send me an email for every new post (about {{dailyEmailEstimate}} per day)"
few_per_day: "Send me an email for every new post (about 2 per day)"
tag_settings: "Tags"
watched_tags: "Watched"
watched_tags_instructions: "You will automatically watch all topics with these tags. You will be notified of all new posts and topics, and a count of new posts will also appear next to the topic."
tracked_tags: "Tracked"
tracked_tags_instructions: "You will automatically track all topics with these tags. A count of new posts will appear next to the topic."
muted_tags: "Muted"
muted_tags_instructions: "You will not be notified of anything about new topics with these tags, and they will not appear in latest."
watched_categories: "Watched"
watched_categories_instructions: "You will automatically watch all topics in these categories. You will be notified of all new posts and topics, and a count of new posts will also appear next to the topic."
tracked_categories: "Tracked"
tracked_categories_instructions: "You will automatically track all topics in these categories. A count of new posts will appear next to the topic."
watched_first_post_categories: "Watching First Post"
watched_first_post_categories_instructions: "You will be notified of the first post in each new topic in these categories."
watched_first_post_tags: "Watching First Post"
watched_first_post_tags_instructions: "You will be notified of the first post in each new topic with these tags."
muted_categories: "Muted"
muted_categories_instructions: "You will not be notified of anything about new topics in these categories, and they will not appear in latest."
no_category_access: "As a moderator you have limited category access, save is disabled."
delete_account: "Delete My Account"
delete_account_confirm: "Are you sure you want to permanently delete your account? This action cannot be undone!"
deleted_yourself: "Your account has been deleted successfully."
delete_yourself_not_allowed: "You cannot delete your account right now. Contact an admin to do delete your account for you."
unread_message_count: "Messages"
admin_delete: "Delete"
users: "Users"
muted_users: "Muted"
muted_users_instructions: "Suppress all notifications from these users."
muted_topics_link: "Show muted topics"
watched_topics_link: "Show watched topics"
tracked_topics_link: "Show tracked topics"
automatically_unpin_topics: "Automatically unpin topics when I reach the bottom."
apps: "Apps"
revoke_access: "Revoke Access"
undo_revoke_access: "Undo Revoke Access"
api_approved: "Approved:"
theme: "Theme"
home: "Default Home Page"
staged: "Staged"
staff_counters:
flags_given: "helpful flags"
flagged_posts: "flagged posts"
deleted_posts: "deleted posts"
suspensions: "suspensions"
warnings_received: "warnings"
messages:
all: "All"
inbox: "Inbox"
sent: "Sent"
archive: "Archive"
groups: "My Groups"
bulk_select: "Select messages"
move_to_inbox: "Move to Inbox"
move_to_archive: "Archive"
failed_to_move: "Failed to move selected messages (perhaps your network is down)"
select_all: "Select All"
preferences_nav:
account: "Account"
profile: "Profile"
emails: "Emails"
notifications: "Notifications"
categories: "Categories"
tags: "Tags"
interface: "Interface"
apps: "Apps"
change_password:
success: "(email sent)"
in_progress: "(sending email)"
error: "(error)"
action: "Send Password Reset Email"
set_password: "Set Password"
choose_new: "Choose a new password"
choose: "Choose a password"
change_about:
title: "Change About Me"
error: "There was an error changing this value."
change_username:
title: "Change Username"
confirm: "If you change your username, all prior quotes of your posts and @name mentions will be broken. Are you absolutely sure you want to?"
taken: "Sorry, that username is taken."
invalid: "That username is invalid. It must only include numbers and letters"
change_email:
title: "Change Email"
taken: "Sorry, that email is not available."
error: "There was an error changing your email. Perhaps that address is already in use?"
success: "We've sent an email to that address. Please follow the confirmation instructions."
success_staff: "We've sent an email to your current address. Please follow the confirmation instructions."
change_avatar:
title: "Change your profile picture"
gravatar: "<a href='//gravatar.com/emails' target='_blank'>Gravatar</a>, based on"
gravatar_title: "Change your avatar on Gravatar's website"
gravatar_failed: "Could not fetch the Gravatar. Is there one associated to that email address?"
refresh_gravatar_title: "Refresh your Gravatar"
letter_based: "System assigned profile picture"
uploaded_avatar: "Custom picture"
uploaded_avatar_empty: "Add a custom picture"
upload_title: "Upload your picture"
upload_picture: "Upload Picture"
image_is_not_a_square: "Warning: we've cropped your image; width and height were not equal."
cache_notice: "You've successfully changed your profile picture but it might take some time to appear due to browser caching."
change_profile_background:
title: "Profile Background"
instructions: "Profile backgrounds will be centered and have a default width of 850px."
change_card_background:
title: "User Card Background"
instructions: "Background images will be centered and have a default width of 590px."
email:
title: "Email"
instructions: "never shown to the public"
ok: "We will email you to confirm"
invalid: "Please enter a valid email address"
authenticated: "Your email has been authenticated by {{provider}}"
frequency_immediately: "We'll email you immediately if you haven't read the thing we're emailing you about."
frequency:
one: "We'll only email you if we haven't seen you in the last minute."
other: "We'll only email you if we haven't seen you in the last {{count}} minutes."
name:
title: "Name"
instructions: "your full name (optional)"
instructions_required: "Your full name"
too_short: "Your name is too short"
ok: "Your name looks good"
username:
title: "Username"
instructions: "unique, no spaces, short"
short_instructions: "People can mention you as @{{username}}"
available: "Your username is available"
not_available: "Not available. Try {{suggestion}}?"
not_available_no_suggestion: "Not available"
too_short: "Your username is too short"
too_long: "Your username is too long"
checking: "Checking username availability..."
prefilled: "Email matches this registered username"
locale:
title: "Interface language"
instructions: "User interface language. It will change when you refresh the page."
default: "(default)"
any: "any"
password_confirmation:
title: "Password Again"
last_posted: "Last Post"
last_emailed: "Last Emailed"
last_seen: "Seen"
created: "Joined"
log_out: "Log Out"
location: "Location"
card_badge:
title: "User Card Badge"
website: "Web Site"
email_settings: "Email"
like_notification_frequency:
title: "Notify when liked"
always: "Always"
first_time_and_daily: "First time a post is liked and daily"
first_time: "First time a post is liked"
never: "Never"
email_previous_replies:
title: "Include previous replies at the bottom of emails"
unless_emailed: "unless previously sent"
always: "always"
never: "never"
email_digests:
title: "When I don't visit here, send me an email summary of popular topics and replies"
every_30_minutes: "every 30 minutes"
every_hour: "hourly"
daily: "daily"
every_three_days: "every three days"
weekly: "weekly"
every_two_weeks: "every two weeks"
include_tl0_in_digests: "Include content from new users in summary emails"
email_in_reply_to: "Include an excerpt of replied to post in emails"
email_direct: "Send me an email when someone quotes me, replies to my post, mentions my @username, or invites me to a topic"
email_private_messages: "Send me an email when someone messages me"
email_always: "Send me email notifications even when I am active on the site"
other_settings: "Other"
categories_settings: "Categories"
new_topic_duration:
label: "Consider topics new when"
not_viewed: "I haven't viewed them yet"
last_here: "created since I was here last"
after_1_day: "created in the last day"
after_2_days: "created in the last 2 days"
after_1_week: "created in the last week"
after_2_weeks: "created in the last 2 weeks"
auto_track_topics: "Automatically track topics I enter"
auto_track_options:
never: "never"
immediately: "immediately"
after_30_seconds: "after 30 seconds"
after_1_minute: "after 1 minute"
after_2_minutes: "after 2 minutes"
after_3_minutes: "after 3 minutes"
after_4_minutes: "after 4 minutes"
after_5_minutes: "after 5 minutes"
after_10_minutes: "after 10 minutes"
notification_level_when_replying: "When I post in a topic, set that topic to"
invited:
search: "type to search invites..."
title: "Invites"
user: "Invited User"
sent: "Sent"
none: "There are no pending invites to display."
truncated:
one: "Showing the first invite."
other: "Showing the first {{count}} invites."
redeemed: "Redeemed Invites"
redeemed_tab: "Redeemed"
redeemed_tab_with_count: "Redeemed ({{count}})"
redeemed_at: "Redeemed"
pending: "Pending Invites"
pending_tab: "Pending"
pending_tab_with_count: "Pending ({{count}})"
topics_entered: "Topics Viewed"
posts_read_count: "Posts Read"
expired: "This invite has expired."
rescind: "Remove"
rescinded: "Invite removed"
rescind_all: "Remove all Invites"
rescinded_all: "All Invites removed!"
rescind_all_confirm: "Are you sure you want to remove all invites?"
reinvite: "Resend Invite"
reinvite_all: "Resend all Invites"
reinvite_all_confirm: "Are you sure you want to resend all invites?"
reinvited: "Invite re-sent"
reinvited_all: "All Invites re-sent!"
time_read: "Read Time"
days_visited: "Days Visited"
account_age_days: "Account age in days"
create: "Send an Invite"
generate_link: "Copy Invite Link"
link_generated: "Invite link generated successfully!"
valid_for: "Invite link is only valid for this email address: %{email}"
bulk_invite:
none: "You haven't invited anyone here yet. Send individual invites, or invite many people at once by <a href='https://meta.discourse.org/t/send-bulk-invites/16468'>uploading a CSV file</a>."
text: "Bulk Invite from File"
success: "File uploaded successfully, you will be notified via message when the process is complete."
error: "Sorry, file should be CSV format."
password:
title: "Password"
too_short: "Your password is too short."
common: "That password is too common."
same_as_username: "Your password is the same as your username."
same_as_email: "Your password is the same as your email."
ok: "Your password looks good."
instructions: "at least %{count} characters"
summary:
title: "Summary"
stats: "Stats"
time_read: "read time"
recent_time_read: "recent read time"
topic_count:
one: "topic created"
other: "topics created"
post_count:
one: "post created"
other: "posts created"
likes_given:
one: "given"
other: "given"
likes_received:
one: "received"
other: "received"
days_visited:
one: "day visited"
other: "days visited"
topics_entered:
one: "topic viewed"
other: "topics viewed"
posts_read:
one: "post read"
other: "posts read"
bookmark_count:
one: "bookmark"
other: "bookmarks"
top_replies: "Top Replies"
no_replies: "No replies yet."
more_replies: "More Replies"
top_topics: "Top Topics"
no_topics: "No topics yet."
more_topics: "More Topics"
top_badges: "Top Badges"
no_badges: "No badges yet."
more_badges: "More Badges"
top_links: "Top Links"
no_links: "No links yet."
most_liked_by: "Most Liked By"
most_liked_users: "Most Liked"
most_replied_to_users: "Most Replied To"
no_likes: "No likes yet."
associated_accounts: "Logins"
ip_address:
title: "Last IP Address"
registration_ip_address:
title: "Registration IP Address"
avatar:
title: "Profile Picture"
header_title: "profile, messages, bookmarks and preferences"
title:
title: "Title"
filters:
all: "All"
stream:
posted_by: "Posted by"
sent_by: "Sent by"
private_message: "message"
the_topic: "the topic"
loading: "Loading..."
errors:
prev_page: "while trying to load"
reasons:
network: "Network Error"
server: "Server Error"
forbidden: "Access Denied"
unknown: "Error"
not_found: "Page Not Found"
desc:
network: "Please check your connection."
network_fixed: "Looks like it's back."
server: "Error code: {{status}}"
forbidden: "You're not allowed to view that."
not_found: "Oops, the application tried to load a URL that doesn't exist."
unknown: "Something went wrong."
buttons:
back: "Go Back"
again: "Try Again"
fixed: "Load Page"
close: "Close"
assets_changed_confirm: "This site was just updated. Refresh now for the latest version?"
logout: "You were logged out."
refresh: "Refresh"
read_only_mode:
enabled: "This site is in read only mode. Please continue to browse, but replying, likes, and other actions are disabled for now."
login_disabled: "Login is disabled while the site is in read only mode."
logout_disabled: "Logout is disabled while the site is in read only mode."
too_few_topics_and_posts_notice: "Let's <a href='http://blog.discourse.org/2014/08/building-a-discourse-community/'>get this discussion started!</a> There are currently <strong>%{currentTopics} / %{requiredTopics}</strong> topics and <strong>%{currentPosts} / %{requiredPosts}</strong> posts. New visitors need some conversations to read and respond to."
too_few_topics_notice: "Let's <a href='http://blog.discourse.org/2014/08/building-a-discourse-community/'>get this discussion started!</a> There are currently <strong>%{currentTopics} / %{requiredTopics}</strong> topics. New visitors need some conversations to read and respond to."
too_few_posts_notice: "Let's <a href='http://blog.discourse.org/2014/08/building-a-discourse-community/'>get this discussion started!</a> There are currently <strong>%{currentPosts} / %{requiredPosts}</strong> posts. New visitors need some conversations to read and respond to."
logs_error_rate_notice:
reached: "<b>%{relativeAge}</b> – <a href='%{url}' target='_blank'>%{rate}</a> reached site setting limit of %{siteSettingRate}."
exceeded: "<b>%{relativeAge}</b> – <a href='%{url}' target='_blank'>%{rate}</a> exceeds site setting limit of %{siteSettingRate}."