-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.en.yml
3674 lines (2942 loc) · 212 KB
/
server.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 server portion of Discourse used by Ruby
#
# 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:
dates:
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
short_date_no_year: "D MMM"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
short_date: "D MMM, YYYY"
# Use Moment.js format string: http://momentjs.com/docs/#/displaying/format/
long_date: "MMMM D, YYYY h:mma"
datetime_formats: &datetime_formats
formats:
# Format directives: http://ruby-doc.org/core-2.3.1/Time.html#method-i-strftime
short: "%m-%d-%Y"
# Format directives: http://ruby-doc.org/core-2.3.1/Time.html#method-i-strftime
short_no_year: "%B %-d"
# Format directives: http://ruby-doc.org/core-2.3.1/Time.html#method-i-strftime
date_only: "%B %-d, %Y"
# Format directives: http://ruby-doc.org/core-2.3.1/Time.html#method-i-strftime
long: "%B %-d, %Y, %l:%M%P"
date:
# Do not remove the brackets and commas and do not translate the first month name. It should be "null".
month_names:
[~, January, February, March, April, May, June, July, August, September, October, November, December]
<<: *datetime_formats
time:
<<: *datetime_formats
am: "am"
pm: "pm"
title: "Discourse"
topics: "Topics"
posts: "posts"
loading: "Loading"
powered_by_html: 'Powered by <a href="https://www.discourse.org">Discourse</a>, best viewed with JavaScript enabled'
log_in: "Log In"
purge_reason: "Automatically deleted as abandoned, deactivated account"
disable_remote_images_download_reason: "Remote images download was disabled because there wasn't enough disk space available."
anonymous: "Anonymous"
remove_posts_deleted_by_author: "Deleted by author"
themes:
bad_color_scheme: "Can not update theme, invalid color scheme"
other_error: "Something went wrong updating theme"
emails:
incoming:
default_subject: "This topic needs a title"
show_trimmed_content: "Show trimmed content"
maximum_staged_user_per_email_reached: "Reached maximum number of staged users created per email."
errors:
empty_email_error: "Happens when the raw mail we received was blank."
no_message_id_error: "Happens when the mail has no 'Message-Id' header."
auto_generated_email_error: "Happens when the 'precedence' header is set to: list, junk, bulk or auto_reply, or when any other header contains: auto-submitted, auto-replied or auto-generated."
no_body_detected_error: "Happens when we couldn't extract a body and there were no attachments."
no_sender_detected_error: "Happens when we couldn't find a valid email address in the From header."
inactive_user_error: "Happens when the sender is not active."
silenced_user_error: "Happens when the sender has been silenced."
bad_destination_address: "Happens when none of the email addresses in To/Cc/Bcc fields matched a configured incoming email address."
strangers_not_allowed_error: "Happens when a user tried to create a new topic in a category they're not a member of."
insufficient_trust_level_error: "Happens when a user tried to create a new topic in a category they don't have the required trust level for."
reply_user_not_matching_error: "Happens when a reply came in from a different email address the notification was sent to."
topic_not_found_error: "Happens when a reply came in but the related topic has been deleted."
topic_closed_error: "Happens when a reply came in but the related topic has been closed."
bounced_email_error: "Email is a bounced email report."
screened_email_error: "Happens when the sender's email address was already screened."
unsubscribe_not_allowed: "Happens when unsubscribing via email is not allowed for this user."
email_not_allowed: "Happens when the email address is not on the whitelist or is on the blacklist."
unrecognized_error: "Unrecognized Error"
errors: &errors
format: ! '%{attribute} %{message}'
format_with_full_message: '<b>%{attribute}</b>: %{message}'
messages:
too_long_validation: "is limited to %{max} characters; you entered %{length}."
invalid_boolean: "Invalid boolean."
taken: "has already been taken"
accepted: must be accepted
blank: can't be blank
present: must be blank
confirmation: ! "doesn't match %{attribute}"
empty: can't be empty
equal_to: must be equal to %{count}
even: must be even
exclusion: is reserved
greater_than: must be greater than %{count}
greater_than_or_equal_to: must be greater than or equal to %{count}
has_already_been_used: "has already been used"
inclusion: is not included in the list
invalid: is invalid
is_invalid: "seems unclear, is it a complete sentence?"
contains_censored_words: "contains the following censored words: %{censored_words}"
matches_censored_pattern: "contains the following words that matches the site's censored regexp: %{censored_words}"
less_than: must be less than %{count}
less_than_or_equal_to: must be less than or equal to %{count}
not_a_number: is not a number
not_an_integer: must be an integer
odd: must be odd
record_invalid: ! 'Validation failed: %{errors}'
restrict_dependent_destroy:
one: "Cannot delete record because a dependent %{record} exists"
many: "Cannot delete record because dependent %{record} exist"
too_long:
one: is too long (maximum is 1 character)
other: is too long (maximum is %{count} characters)
too_short:
one: is too short (minimum is 1 character)
other: is too short (minimum is %{count} characters)
wrong_length:
one: is the wrong length (should be 1 character)
other: is the wrong length (should be %{count} characters)
other_than: "must be other than %{count}"
template:
body: ! 'There were problems with the following fields:'
header:
one: 1 error prohibited this %{model} from being saved
other: ! '%{count} errors prohibited this %{model} from being saved'
embed:
load_from_remote: "There was an error loading that post."
site_settings:
min_username_length_exists: "You cannot set the minimum username length above the shortest username."
min_username_length_range: "You cannot set the minimum above the maximum."
max_username_length_exists: "You cannot set the maximum username length below the longest username."
max_username_length_range: "You cannot set the maximum below the minimum."
default_categories_already_selected: "You cannot select a category used in another list."
s3_upload_bucket_is_required: "You cannot enable uploads to S3 unless you've provided the 's3_upload_bucket'."
conflicting_google_user_id: 'The Google Account ID for this account has changed; staff intervention is required for security reasons. Please contact staff and point them to <br><a href="https://meta.discourse.org/t/76575">https://meta.discourse.org/t/76575</a>'
activemodel:
errors:
<<: *errors
invite:
not_found: "Your invite token is invalid. Please contact the site's administrator."
user_exists: "There's no need to invite <b>%{email}</b>, they <a href='/u/%{username}/summary'>already have an account!</a>"
bulk_invite:
file_should_be_csv: "The uploaded file should be of csv format."
error: "There was an error uploading that file. Please try again later."
topic_invite:
user_exists: "Sorry, that user has already been invited. You may only invite a user to a topic once."
backup:
operation_already_running: "An operation is currently running. Can't start a new job right now."
backup_file_should_be_tar_gz: "The backup file should be a .tar.gz archive."
not_enough_space_on_disk: "There is not enough space on disk to upload this backup."
invalid_filename: "The backup filename contains invalid characters. Valid characters are a-z 0-9 . - _."
not_logged_in: "You need to be logged in to do that."
not_found: "The requested URL or resource could not be found."
invalid_access: "You are not permitted to view the requested resource."
invalid_api_credentials: "You are not permitted to view the requested resource. The API username or key is invalid."
read_only_mode_enabled: "The site is in read only mode. Interactions are disabled."
reading_time: "Reading time"
likes: "Likes"
too_many_replies:
one: "We're sorry, but new users are temporarily limited to 1 reply in the same topic."
other: "We're sorry, but new users are temporarily limited to %{count} replies in the same topic."
embed:
start_discussion: "Start Discussion"
continue: "Continue Discussion"
error: "Error Embedding"
referer: "Referer:"
mismatch: "The referer did not match any of the following hosts:"
no_hosts: "No hosts were set up for embedding."
configure: "Configure Embedding"
more_replies:
one: "1 more reply"
other: "%{count} more replies"
loading: "Loading Discussion..."
permalink: "Permalink"
imported_from: "This is a companion discussion topic for the original entry at %{link}"
in_reply_to: "▶ %{username}"
replies:
one: "1 reply"
other: "%{count} replies"
no_mentions_allowed: "Sorry, you can't mention other users."
too_many_mentions:
one: "Sorry, you can only mention one other user in a post."
other: "Sorry, you can only mention %{count} users in a post."
no_mentions_allowed_newuser: "Sorry, new users can't mention other users."
too_many_mentions_newuser:
one: "Sorry, new users can only mention one other user in a post."
other: "Sorry, new users can only mention %{count} users in a post."
no_images_allowed: "Sorry, new users can't put images in posts."
too_many_images:
one: "Sorry, new users can only put one image in a post."
other: "Sorry, new users can only put %{count} images in a post."
no_attachments_allowed: "Sorry, new users can't put attachments in posts."
too_many_attachments:
one: "Sorry, new users can only put one attachment in a post."
other: "Sorry, new users can only put %{count} attachments in a post."
no_links_allowed: "Sorry, new users can't put links in posts."
too_many_links:
one: "Sorry, new users can only put one link in a post."
other: "Sorry, new users can only put %{count} links in a post."
contains_blocked_words: "Your post contains words that aren't allowed."
spamming_host: "Sorry you cannot post a link to that host."
user_is_suspended: "Suspended users are not allowed to post."
topic_not_found: "Something has gone wrong. Perhaps this topic was closed or deleted while you were looking at it?"
not_accepting_pms: "Sorry, %{username} is not accepting messages at the moment."
max_pm_recepients: "Sorry, you can send a message to maximum %{recipients_limit} recipients."
just_posted_that: "is too similar to what you recently posted"
invalid_characters: "contains invalid characters"
is_invalid: "seems unclear, is it a complete sentence?"
next_page: "next page →"
prev_page: "← previous page"
page_num: "Page %{num}"
home_title: "Home"
topics_in_category: "Topics in the '%{category}' category"
rss_posts_in_topic: "RSS feed of '%{topic}'"
rss_topics_in_category: "RSS feed of topics in the '%{category}' category"
author_wrote: "%{author} wrote:"
num_posts: "Posts:"
num_participants: "Participants:"
read_full_topic: "Read full topic"
private_message_abbrev: "Msg"
rss_description:
latest: "Latest topics"
hot: "Hot topics"
top: "Top topics"
top_all: "All time top topics"
top_yearly: "Yearly top topics"
top_quarterly: "Quarterly top topics"
top_monthly: "Monthly top topics"
top_weekly: "Weekly top topics"
top_daily: "Daily top topics"
posts: "Latest posts"
private_posts: "Latest private messages"
group_posts: "Latest posts from %{group_name}"
group_mentions: "Latest mentions from %{group_name}"
user_posts: "Latest posts by @%{username}"
user_topics: "Latest topics by @%{username}"
tag: "Tagged topics"
badge: "%{display_name} badge on %{site_title}"
too_late_to_edit: "That post was created too long ago. It can no longer be edited or deleted."
revert_version_same: "The current version is same as the version you are trying to revert to."
excerpt_image: "image"
queue:
delete_reason: "Deleted via post moderation queue"
not_found: "Post not found or already updated."
groups:
success:
bulk_add: "%{users_added} users have been added to the group."
errors:
can_not_modify_automatic: "You cannot modify an automatic group"
member_already_exist: "'%{username}' is already a member of this group."
invalid_domain: "'%{domain}' is not a valid domain."
invalid_incoming_email: "'%{email}' is not a valid email address."
email_already_used_in_group: "'%{email}' is already used by the group '%{group_name}'."
email_already_used_in_category: "'%{email}' is already used by the category '%{category_name}'."
cant_allow_membership_requests: "You cannot allow membership requests for a group without any owners."
default_names:
everyone: "everyone"
admins: "admins"
moderators: "moderators"
staff: "staff"
trust_level_0: "trust_level_0"
trust_level_1: "trust_level_1"
trust_level_2: "trust_level_2"
trust_level_3: "trust_level_3"
trust_level_4: "trust_level_4"
request_membership_pm:
title: "Membership Request for @%{group_name}"
education:
until_posts:
one: "1 post"
other: "%{count} posts"
'new-topic': |
Welcome to %{site_name} — **thanks for starting a new conversation!**
- Does the title sound interesting if you read it out loud? Is it a good summary?
- Who would be interested in this? Why does it matter? What kind of responses do you want?
- Include commonly used words in your topic so others can *find* it. To group your topic with related topics, select a category.
For more, [see our community guidelines](/guidelines). This panel will only appear for your first %{education_posts_text}.
'new-reply': |
Welcome to %{site_name} — **thanks for contributing!**
- Does your reply improve the conversation in some way?
- Be kind to your fellow community members.
- Constructive criticism is welcome, but criticize *ideas*, not people.
For more, [see our community guidelines](/guidelines). This panel will only appear for your first %{education_posts_text}.
avatar: |
### How about a picture for your account?
You’ve posted a few topics and replies, but your profile picture isn’t as unique as you are – it’s just a letter.
Have you considered **[visiting your user profile](%{profile_path})** and uploading a picture that represents you?
It’s easier to follow discussions and find interesting people in conversations when everyone has a unique profile picture!
sequential_replies: |
### Consider replying to several posts at once
Rather than several replies to a topic in a row, please consider a single reply that includes quotes from previous posts or @name references.
You can edit your previous reply to add a quote by highlighting text and selecting the <b>quote reply</b> button that appears.
It’s easier for everyone to read topics that have fewer in-depth replies versus lots of small, individual replies.
dominating_topic: |
### Let others join the conversation
This topic is clearly important to you – you've posted more than %{percent}% of the replies here.
Are you sure you’re providing adequate time for other people to share their points of view, too?
get_a_room: |
### Consider replying to more people
You’ve already replied %{count} times to @%{reply_username} in this particular topic.
Have you considered replying to *other* people in the discussion, too? A great discussion involves many voices and perspectives.
If you’d like to continue your conversation with this particular user at length, [send them a personal message](/u/%{reply_username}).
too_many_replies: |
### You have reached the reply limit for this topic
We’re sorry, but new users are temporarily limited to %{newuser_max_replies_per_topic} replies in the same topic.
Instead of adding another reply, please consider editing your previous replies, or visiting other topics.
reviving_old_topic: |
### Revive this topic?
The last reply to this topic was **%{days}** days ago. Your reply will bump the topic to the top of its list and notify anyone previously involved in the conversation.
Are you sure you want to continue this old conversation?
activerecord:
attributes:
category:
name: "Category Name"
topic:
title: 'Title'
featured_link: 'Featured Link'
post:
raw: "Body"
user_profile:
bio_raw: "About Me"
user:
ip_address: ""
errors:
<<: *errors
models:
topic:
attributes:
base:
warning_requires_pm: "You can only attach warnings to private messages."
too_many_users: "You can only send warnings to one user at a time."
cant_send_pm: "Sorry, you cannot send a private message to that user."
no_user_selected: "You must select a valid user."
reply_by_email_disabled: "Reply by email has been disabled."
featured_link:
invalid: "is invalid. URL should include http:// or https://."
invalid_category: "can't be edited in this category."
user:
attributes:
password:
common: "is one of the 10000 most common passwords. Please use a more secure password."
same_as_username: "is the same as your username. Please use a more secure password."
same_as_email: "is the same as your email. Please use a more secure password."
same_as_current: "is the same as your current password."
unique_characters: "has too many repeated characters. Please use a more secure password."
ip_address:
signup_not_allowed: "Signup is not allowed from this account."
color_scheme_color:
attributes:
hex:
invalid: "is not a valid color"
post_reply:
base:
different_topic: "Post and reply must belong to the same topic."
web_hook:
attributes:
payload_url:
invalid: "URL is invalid. URL should includes http:// or https://. And no blank is allowed."
custom_emoji:
attributes:
name:
taken: is already in use by another emoji
topic_timer:
attributes:
execute_at:
in_the_past: "must be in the future."
translation_overrides:
attributes:
value:
invalid_interpolation_keys: 'The following interpolation key(s) are invalid: "%{keys}"'
watched_word:
attributes:
word:
too_many: "Too many words for that action"
user_profile:
no_info_me: "<div class='missing-profile'>the About Me field of your profile is currently blank, <a href='/u/%{username_lower}/preferences/about-me'>would you like to fill it out?</a></div>"
no_info_other: "<div class='missing-profile'>%{name} hasn't entered anything in the About Me field of their profile yet</div>"
vip_category_name: "Lounge"
vip_category_description: "A category exclusive to members with trust level 3 and higher."
meta_category_name: "Site Feedback"
meta_category_description: "Discussion about this site, its organization, how it works, and how we can improve it."
staff_category_name: "Staff"
staff_category_description: "Private category for staff discussions. Topics are only visible to admins and moderators."
assets_topic_title: "Assets for the site design"
assets_topic_body: "This topic, visible only to staff, is for storing images and files used in the site design. Don't delete it!\n\n\nHere's how:\n\n\n1. Reply to this topic.\n2. Upload all the images you wish to use for logos, favicons, and so forth here. (Use the upload toolbar icon in the post editor, or drag-and-drop or paste images.)\n3. Submit your reply to post it.\n4. Right click the images in your new post to get the path to the uploaded images, or click the edit icon to edit your post and retrieve the path to the images. Copy the image paths.\n5. Paste those image paths into [basic settings](/admin/site_settings/category/required).\n\n\nIf you need to enable different file type uploads, edit `authorized_extensions` in the [file settings](/admin/site_settings/category/files)."
discourse_welcome_topic:
title: "Welcome to Discourse"
body: |
The first paragraph of this pinned topic will be visible as a welcome message to all new visitors on your homepage. It's important!
**Edit this** into a brief description of your community:
- Who is it for?
- What can they find here?
- Why should they come here?
- Where can they read more (links, resources, etc)?
<img src="/images/welcome/discourse-edit-post-animated.gif" width="508" height="106">
You may want to close this topic via the admin :wrench: (at the upper right and bottom), so that replies don't pile up on an announcement.
lounge_welcome:
title: "Welcome to the Lounge"
body: |
Congratulations! :confetti_ball:
If you can see this topic, you were recently promoted to **regular** (trust level 3).
You can now …
* Edit the title of any topic
* Change the category of any topic
* Have all your links followed ([automatic nofollow](http://en.wikipedia.org/wiki/Nofollow) is removed)
* Access a private Lounge category only visible to users at trust level 3 and higher
* Hide spam with a single flag
Here's the [current list of fellow regulars](/badges/3/regular). Be sure to say hi.
Thanks for being an important part of this community!
(For more information on trust levels, [see this topic][trust]. Please note that only members who continue to meet the requirements over time will remain regulars.)
[trust]: https://meta.discourse.org/t/what-do-user-trust-levels-do/4924
category:
topic_prefix: "About the %{category} category"
replace_paragraph: "(Replace this first paragraph with a brief description of your new category. This guidance will appear in the category selection area, so try to keep it below 200 characters. **Until you edit this description or create topics, this category won't appear on the categories page.**)"
post_template: "%{replace_paragraph}\n\nUse the following paragraphs for a longer description, or to establish category guidelines or rules:\n\n- Why should people use this category? What is it for?\n\n- How exactly is this different than the other categories we already have?\n\n- What should topics in this category generally contain?\n\n- Do we need this category? Can we merge with another category, or subcategory?\n"
errors:
not_found: "Category not found!"
uncategorized_parent: "Uncategorized can't have a parent category"
self_parent: "A subcategory's parent cannot be itself"
depth: "You can't nest a subcategory under another"
invalid_email_in: "'%{email}' is not a valid email address."
email_already_used_in_group: "'%{email}' is already used by the group '%{group_name}'."
email_already_used_in_category: "'%{email}' is already used by the category '%{category_name}'."
description_incomplete: "The category description post must have at least one paragraph."
cannot_delete:
uncategorized: "Can't delete Uncategorized"
has_subcategories: "Can't delete this category because it has sub-categories."
topic_exists:
one: "Can't delete this category because is has 1 topic. Oldest topic is %{topic_link}."
other: "Can't delete this category because it has %{count} topics. Oldest topic is %{topic_link}."
topic_exists_no_oldest: "Can't delete this category because topic count is %{count}."
uncategorized_description: "Topics that don't need a category, or don't fit into any other existing category."
trust_levels:
newuser:
title: "new user"
basic:
title: "basic user"
member:
title: "member"
regular:
title: "regular"
leader:
title: "leader"
change_failed_explanation: "You attempted to demote %{user_name} to '%{new_trust_level}'. However their trust level is already '%{current_trust_level}'. %{user_name} will remain at '%{current_trust_level}' - if you wish to demote user lock trust level first"
post:
image_placeholder:
broken: "This image is broken"
rate_limiter:
slow_down: "You have performed this action too many times, try again later."
too_many_requests: "We have a daily limit on how many times that action can be taken. Please wait %{time_left} before trying again."
by_type:
first_day_replies_per_day: "You've reached the maximum number of replies a new user can create on their first day. Please wait %{time_left} before trying again."
first_day_topics_per_day: "You've reached the maximum number of topics a new user can create on their first day. Please wait %{time_left} before trying again."
create_topic: "You're creating topics too quickly. Please wait %{time_left} before trying again."
create_post: "You're replying too quickly. Please wait %{time_left} before trying again."
delete_post: "You're deleting posts too quickly. Please wait %{time_left} before trying again."
public_group_membership: "You're joining/leaving groups too frequently. Please wait %{time_left} before trying again."
topics_per_day: "You've reached the maximum number of new topics today. Please wait %{time_left} before trying again."
pms_per_day: "You've reached the maximum number of messages today. Please wait %{time_left} before trying again."
create_like: "You've reached the maximum number of likes today. Please wait %{time_left} before trying again."
create_bookmark: "You've reached the maximum number of bookmarks today. Please wait %{time_left} before trying again."
edit_post: "You've reached the maximum number of edits today. Please wait %{time_left} before trying again."
live_post_counts: "You're asking for live post counts too quickly. Please wait %{time_left} before trying again."
unsubscribe_via_email: "You've reached the maximum number of unsubscribe via email today. Please wait %{time_left} before trying again."
topic_invitations_per_day: "You've reached the maximum number of topic invitations today. Please wait %{time_left} before trying again."
hours:
one: "1 hour"
other: "%{count} hours"
minutes:
one: "1 minute"
other: "%{count} minutes"
seconds:
one: "1 second"
other: "%{count} seconds"
datetime:
distance_in_words:
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"
about_x_months:
one: "1mon"
other: "%{count}mon"
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"
distance_in_words_verbose:
half_a_minute: "just now"
less_than_x_seconds:
one: "just now"
other: "just now"
x_seconds:
one: "1 second ago"
other: "%{count} seconds ago"
less_than_x_minutes:
one: "less than 1 minute ago"
other: "less than %{count} minutes ago"
x_minutes:
one: "1 minute ago"
other: "%{count} minutes ago"
about_x_hours:
one: "1 hour ago"
other: "%{count} hours ago"
x_days:
one: "1 day ago"
other: "%{count} days ago"
about_x_months:
one: "about 1 month ago"
other: "about %{count} months ago"
x_months:
one: "1 month ago"
other: "%{count} months ago"
about_x_years:
one: "about 1 year ago"
other: "about %{count} years ago"
over_x_years:
one: "over 1 year ago"
other: "over %{count} years ago"
almost_x_years:
one: "almost 1 year ago"
other: "almost %{count} years ago"
password_reset:
no_token: "Sorry, that password change link is too old. Select the Log In button and use 'I forgot my password' to get a new link."
choose_new: "Choose a new password"
choose: "Choose a password"
update: 'Update Password'
save: 'Set Password'
title: 'Reset Password'
success: "You successfully changed your password and are now logged in."
success_unapproved: "You successfully changed your password."
change_email:
confirmed: "Your email has been updated."
please_continue: "Continue to %{site_name}"
error: "There was an error changing your email address. Perhaps the address is already in use?"
error_staged: "There was an error changing your email address. The address is already in use by a staged user."
already_done: "Sorry, this confirmation link is no longer valid. Perhaps your email was already changed?"
authorizing_old:
title: "Thanks for confirming your current email address"
description: "We're now emailing your new address for confirmation."
activation:
action: "Click here to activate your account"
already_done: "Sorry, this account confirmation link is no longer valid. Perhaps your account is already active?"
please_continue: "Your new account is confirmed; you will be redirected to the home page."
continue_button: "Continue to %{site_name}"
welcome_to: "Welcome to %{site_name}!"
approval_required: "A moderator must manually approve your new account before you can access this forum. You'll get an email when your account is approved!"
missing_session: "We cannot detect if your account was created, please ensure you have cookies enabled."
activated: "Sorry, this account has already been activated."
admin_confirm:
title: "Confirm Admin Account"
description: "Are you sure you want <b>%{target_username}</b> to be an administrator?"
grant: "Grant Admin Access"
complete: "<b>%{target_username}</b> is now an administrator."
back_to: "Return to %{title}"
post_action_types:
off_topic:
title: 'Off-Topic'
description: 'This post is not relevant to the current discussion as defined by the title and first post, and should probably be moved elsewhere.'
short_description: 'Not relevant to the discussion'
long_form: 'flagged this as off-topic'
spam:
title: 'Spam'
description: 'This post is an advertisement, or vandalism. It is not useful or relevant to the current topic.'
short_description: 'This is an advertisement or vandalism'
long_form: 'flagged this as spam'
email_title: '"%{title}" was flagged as spam'
email_body: "%{link}\n\n%{message}"
inappropriate:
title: 'Inappropriate'
description: 'This post contains content that a reasonable person would consider offensive, abusive, or a violation of <a href="/guidelines">our community guidelines</a>.'
short_description: 'A violation of <a href="/guidelines">our community guidelines</a>'
long_form: 'flagged this as inappropriate'
notify_user:
title: 'Send @{{username}} a message'
description: 'I want to talk to this person directly and privately about their post.'
short_description: 'I want to talk to this person directly and privately about their post.'
long_form: 'messaged user'
email_title: 'Your post in "%{title}"'
email_body: "%{link}\n\n%{message}"
notify_moderators:
title: "Something Else"
description: 'This post requires staff attention for another reason not listed above.'
short_description: 'Requires staff attention for another reason'
long_form: 'flagged this for staff attention'
email_title: 'A post in "%{title}" requires staff attention'
email_body: "%{link}\n\n%{message}"
bookmark:
title: 'Bookmark'
description: 'Bookmark this post'
short_description: 'Bookmark this post'
long_form: 'bookmarked this post'
like:
title: 'Like'
description: 'Like this post'
short_description: 'Like this post'
long_form: 'liked this'
vote:
title: 'Vote'
description: 'Vote for this post'
short_description: 'Vote for this post'
long_form: 'voted for this post'
user_activity:
no_default:
self: "You have no activity yet."
others: "No activity."
no_bookmarks:
self: "You have no bookmarked posts, bookmarking posts allows you to easily access them later on."
others: "No bookmarks."
no_likes_given:
self: "You have not liked any posts."
others: "No liked posts."
no_replies:
self: "You have not replied to any posts."
others: "No replies."
topic_flag_types:
spam:
title: 'Spam'
description: 'This topic is an advertisement. It is not useful or relevant to this site, but promotional in nature.'
long_form: 'flagged this as spam'
inappropriate:
title: 'Inappropriate'
description: 'This topic contains content that a reasonable person would consider offensive, abusive, or a violation of <a href="/guidelines">our community guidelines</a>.'
long_form: 'flagged this as inappropriate'
notify_moderators:
title: "Something Else"
description: 'This topic requires general staff attention based on the <a href="/guidelines">guidelines</a>, <a href="%{tos_url}">TOS</a>, or for another reason not listed above.'
long_form: 'flagged this for moderator attention'
email_title: 'The topic "%{title}" requires moderator attention'
email_body: "%{link}\n\n%{message}"
flagging:
you_must_edit: '<p>Your post was flagged by the community. Please <a href="%{path}">see your messages</a>.</p>'
user_must_edit: '<p>This post was flagged by the community and is temporarily hidden.</p>'
archetypes:
regular:
title: "Regular Topic"
banner:
title: "Banner Topic"
message:
make: "This topic is now a banner. It will appear at the top of every page until it is dismissed by the user."
remove: "This topic is no longer a banner. It will no longer appear at the top of every page."
unsubscribed:
title: "Unsubscribed!"
description: "<b>%{email}</b> has been unsubscribed. To change your email settings <a href='%{url}'>visit your user preferences</a>."
topic_description: "To re-subscribe to %{link}, use the notification control at the bottom or right of the topic."
private_topic_description: "To re-subscribe, use the notification control at the bottom or right of the topic."
unsubscribe:
title: "Unsubscribe"
stop_watching_topic: "Stop watching this topic, %{link}"
mute_topic: "Mute all notifications for this topic, %{link}"
unwatch_category: "Stop watching all topics in %{category}"
mailing_list_mode: "Turn off mailing list mode"
disable_digest_emails: "Stop sending me summary emails"
all: "Don't send me any mail from %{sitename}"
different_user_description: "You are currently logged in as a different user than the one we emailed. Please log out, or enter anonymous mode, and try again."
not_found_description: "Sorry, we couldn't find this unsubscribe. It's possible the link in your email has expired?"
log_out: "Log Out"
user_api_key:
title: "Authorize application access"
authorize: "Authorize"
read: "read"
read_write: "read/write"
description: "\"%{application_name}\" is requesting the following access to your account:"
no_trust_level: "Sorry, you do not have the required trust level to access the user API"
generic_error: "Sorry, we are unable to issue user API keys, this feature may be disabled by the site admin"
scopes:
message_bus: "Live updates"
notifications: "Read and clear notifications"
push: "Push notifications to external services"
session_info: "Read user session info"
read: "Read all"
write: "Write all"
reports:
visits:
title: "User Visits"
xaxis: "Day"
yaxis: "Number of visits"
signups:
title: "New Users"
xaxis: "Day"
yaxis: "Number of new users"
profile_views:
title: "User Profile Views"
xaxis: "Day"
yaxis: "Number of user profiles viewed"
topics:
title: "Topics"
xaxis: "Day"
yaxis: "Number of new topics"
posts:
title: "Posts"
xaxis: "Day"
yaxis: "Number of new posts"
likes:
title: "Likes"
xaxis: "Day"
yaxis: "Number of new likes"
flags:
title: "Flags"
xaxis: "Day"
yaxis: "Number of flags"
bookmarks:
title: "Bookmarks"
xaxis: "Day"
yaxis: "Number of new bookmarks"
starred:
title: "Starred"
xaxis: "Day"
yaxis: "Number of new starred topics"
users_by_trust_level:
title: "Users per Trust Level"
xaxis: "Trust Level"
yaxis: "Number of Users"
emails:
title: "Emails Sent"
xaxis: "Day"
yaxis: "Number of Emails"
user_to_user_private_messages:
title: "User-to-User"
xaxis: "Day"
yaxis: "Number of messages"
system_private_messages:
title: "System"
xaxis: "Day"
yaxis: "Number of messages"
moderator_warning_private_messages:
title: "Moderator Warning"
xaxis: "Day"
yaxis: "Number of messages"
notify_moderators_private_messages:
title: "Notify Moderators"
xaxis: "Day"
yaxis: "Number of messages"
notify_user_private_messages:
title: "Notify User"
xaxis: "Day"
yaxis: "Number of messages"
top_referrers:
title: "Top Referrers"
xaxis: "User"
num_clicks: "Clicks"
num_topics: "Topics"
top_traffic_sources:
title: "Top Traffic Sources"
xaxis: "Domain"
num_clicks: "Clicks"
num_topics: "Topics"
num_users: "Users"
top_referred_topics:
title: "Top Referred Topics"
xaxis: "Topic"
num_clicks: "Clicks"
page_view_anon_reqs:
title: "Anonymous"
xaxis: "Day"
yaxis: "Anonymous Pageviews"
page_view_logged_in_reqs:
title: "Logged In"
xaxis: "Day"
yaxis: "Logged In Pageviews"
page_view_crawler_reqs:
title: "Web Crawlers"
xaxis: "Day"
yaxis: "Web Crawler Pageviews"
page_view_total_reqs:
title: "Total"
xaxis: "Day"
yaxis: "Total Pageviews"
page_view_logged_in_mobile_reqs:
title: "Logged In Pageviews"
xaxis: "Day"
yaxis: "Mobile Logged In Pageviews"
page_view_anon_mobile_reqs:
title: "Anon Pageviews"
xaxis: "Day"
yaxis: "Mobile Anon Pageviews"
http_background_reqs:
title: "Background"
xaxis: "Day"
yaxis: "Requests used for live update and tracking"
http_2xx_reqs:
title: "Status 2xx (OK)"
xaxis: "Day"
yaxis: "Successful requests (Status 2xx)"
http_3xx_reqs:
title: "HTTP 3xx (Redirect)"
xaxis: "Day"
yaxis: "Redirect requests (Status 3xx)"
http_4xx_reqs:
title: "HTTP 4xx (Client Error)"
xaxis: "Day"
yaxis: "Client Errors (Status 4xx)"
http_5xx_reqs:
title: "HTTP 5xx (Server Error)"
xaxis: "Day"
yaxis: "Server Errors (Status 5xx)"
http_total_reqs:
title: "Total"
xaxis: "Day"
yaxis: "Total requests"
time_to_first_response:
title: "Time to first response"
xaxis: "Day"
yaxis: "Average time (hours)"
topics_with_no_response:
title: "Topics with no response"
xaxis: "Day"
yaxis: "Total"
mobile_visits:
title: "User Visits"
xaxis: "Day"
yaxis: "Number of visits"
dashboard:
rails_env_warning: "Your server is running in %{env} mode."
host_names_warning: "Your config/database.yml file is using the default localhost hostname. Update it to use your site's hostname."
gc_warning: 'Your server is using default ruby garbage collection parameters, which will not give you the best performance. Read this topic on performance tuning: <a href="http://meta.discourse.org/t/tuning-ruby-and-rails-for-discourse/4126" target="_blank">Tuning Ruby and Rails for Discourse</a>.'
sidekiq_warning: 'Sidekiq is not running. Many tasks, like sending emails, are executed asynchronously by sidekiq. Please ensure at least one sidekiq process is running. <a href="https://github.com/mperham/sidekiq" target="_blank">Learn about Sidekiq here</a>.'
queue_size_warning: 'The number of queued jobs is %{queue_size}, which is high. This could indicate a problem with the Sidekiq process(es), or you may need to add more Sidekiq workers.'
memory_warning: 'Your server is running with less than 1 GB of total memory. At least 1 GB of memory is recommended.'
google_oauth2_config_warning: 'The server is configured to allow signup and log in with Google OAuth2 (enable_google_oauth2_logins), but the client id and client secret values are not set. Go to <a href="/admin/site_settings">the Site Settings</a> and update the settings. <a href="https://meta.discourse.org/t/configuring-google-login-for-discourse/15858" target="_blank">See this guide to learn more</a>.'
facebook_config_warning: 'The server is configured to allow signup and log in with Facebook (enable_facebook_logins), but the app id and app secret values are not set. Go to <a href="/admin/site_settings">the Site Settings</a> and update the settings. <a href="https://meta.discourse.org/t/configuring-facebook-login-for-discourse/13394" target="_blank">See this guide to learn more</a>.'
twitter_config_warning: 'The server is configured to allow signup and log in with Twitter (enable_twitter_logins), but the key and secret values are not set. Go to <a href="/admin/site_settings">the Site Settings</a> and update the settings. <a href="https://meta.discourse.org/t/configuring-twitter-login-for-discourse/13395" target="_blank">See this guide to learn more</a>.'
github_config_warning: 'The server is configured to allow signup and log in with GitHub (enable_github_logins), but the client id and secret values are not set. Go to <a href="/admin/site_settings">the Site Settings</a> and update the settings. <a href="https://meta.discourse.org/t/configuring-github-login-for-discourse/13745" target="_blank">See this guide to learn more</a>.'
s3_config_warning: 'The server is configured to upload files to s3, but at least one the following setting is not set: s3_access_key_id, s3_secret_access_key, s3_use_iam_profile, or s3_upload_bucket. Go to <a href="/admin/site_settings">the Site Settings</a> and update the settings. <a href="http://meta.discourse.org/t/how-to-set-up-image-uploads-to-s3/7229" target="_blank">See "How to set up image uploads to S3?" to learn more</a>.'
s3_backup_config_warning: 'The server is configured to upload backups to s3, but at least one the following setting is not set: s3_access_key_id, s3_secret_access_key, s3_use_iam_profile, or s3_backup_bucket. Go to <a href="/admin/site_settings">the Site Settings</a> and update the settings. <a href="http://meta.discourse.org/t/how-to-set-up-image-uploads-to-s3/7229" target="_blank">See "How to set up image uploads to S3?" to learn more</a>.'
image_magick_warning: 'The server is configured to create thumbnails of large images, but ImageMagick is not installed. Install ImageMagick using your favorite package manager or <a href="http://www.imagemagick.org/script/binary-releases.php" target="_blank">download the latest release</a>.'
failing_emails_warning: 'There are %{num_failed_jobs} email jobs that failed. Check your app.yml and ensure that the mail server settings are correct. <a href="/sidekiq/retries" target="_blank">See the failed jobs in Sidekiq</a>.'
subfolder_ends_in_slash: "Your subfolder setup is incorrect; the DISCOURSE_RELATIVE_URL_ROOT ends in a slash."
email_polling_errored_recently:
one: "Email polling has generated an error in the past 24 hours. Look at <a href='/logs' target='_blank'>the logs</a> for more details."
other: "Email polling has generated %{count} errors in the past 24 hours. Look at <a href='/logs' target='_blank'>the logs</a> for more details."
missing_mailgun_api_key: "The server is configured to send emails via mailgun but you haven't provided an API key used the verify the webhook messages."
bad_favicon_url: "The favicon is failing to load. Check your favicon_url setting in <a href='/admin/site_settings'>Site Settings</a>."
poll_pop3_timeout: "Connection to the POP3 server is timing out. Incoming email could not be retrieved. Please check your <a href='/admin/site_settings/category/email'>POP3 settings</a> and service provider."
poll_pop3_auth_error: "Connection to the POP3 server is failing with an authentication error. Please check your <a href='/admin/site_settings/category/email'>POP3 settings</a>."
site_settings:
censored_words: "Words that will be automatically replaced with ■■■■"
censored_pattern: "Regex pattern that will be automatically replaced with ■■■■"
delete_old_hidden_posts: "Auto-delete any hidden posts that stay hidden for more than 30 days."
default_locale: "The default language of this Discourse instance (ISO 639-1 Code)"
allow_user_locale: "Allow users to choose their own language interface preference"
set_locale_from_accept_language_header: "set interface language for anonymous users from their web browser's language headers. (EXPERIMENTAL, does not work with anonymous cache)"
min_post_length: "Minimum allowed post length in characters"
min_first_post_length: "Minimum allowed first post (topic body) length in characters"
min_private_message_post_length: "Minimum allowed post length in characters for messages"
max_post_length: "Maximum allowed post length in characters"
topic_featured_link_enabled: "Enable posting a link with topics."
show_topic_featured_link_in_digest: "Show the topic featured link in the digest email."
min_topic_title_length: "Minimum allowed topic title length in characters"
max_topic_title_length: "Maximum allowed topic title length in characters"
min_private_message_title_length: "Minimum allowed title length for a message in characters"
min_search_term_length: "Minimum valid search term length in characters"
search_tokenize_chinese_japanese_korean: "Force search to tokenize Chinese/Japanese/Korean even on non CJK sites"
search_prefer_recent_posts: "If searching your large forum is slow, this option tries an index of more recent posts first"
search_recent_posts_size: "How many recent posts to keep in the index"
log_search_queries: "Log search queries performed by users"
search_query_log_max_size: "Maximum amount of search queries to keep"
allow_uncategorized_topics: "Allow topics to be created without a category. WARNING: If there are any uncategorized topics, you must recategorize them before turning this off."
allow_duplicate_topic_titles: "Allow topics with identical, duplicate titles."
unique_posts_mins: "How many minutes before a user can make a post with the same content again"
educate_until_posts: "When the user starts typing their first (n) new posts, show the pop-up new user education panel in the composer."
title: "The name of this site, as used in the title tag."
site_description: "Describe this site in one sentence, as used in the meta description tag."
contact_email: "Email address of key contact responsible for this site. Used for critical notifications, as well as on the /about contact form for urgent matters."
contact_url: "Contact URL for this site. Used on the /about contact form for urgent matters."
crawl_images: "Retrieve images from remote URLs to insert the correct width and height dimensions."
download_remote_images_to_local: "Convert remote images to local images by downloading them; this prevents broken images."
download_remote_images_threshold: "Minimum disk space necessary to download remote images locally (in percent)"
download_remote_images_max_days_old: "Don't download remote images for posts that are more than n days old."
disabled_image_download_domains: "Remote images will never be downloaded from these domains. Pipe-delimited list."
editing_grace_period: "For (n) seconds after posting, editing will not create a new version in the post history."
post_edit_time_limit: "The author can edit or delete their post for (n) minutes after posting. Set to 0 for forever."
edit_history_visible_to_public: "Allow everyone to see previous versions of an edited post. When disabled, only staff members can view."
delete_removed_posts_after: "Posts removed by the author will be automatically deleted after (n) hours. If set to 0, posts will be deleted immediately."
max_image_width: "Maximum thumbnail width of images in a post"
max_image_height: "Maximum thumbnail height of images in a post"
fixed_category_positions: "If checked, you will be able to arrange categories into a fixed order. If unchecked, categories are listed in order of activity."
fixed_category_positions_on_create: "If checked, category ordering will be maintained on topic creation dialog (requires fixed_category_positions)."