mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 11:03:40 +08:00
FIX: Move Welcome topic to I18n
This commit is contained in:
parent
d46b0a7251
commit
e129e656d1
|
@ -381,6 +381,24 @@ en:
|
|||
|
||||
assets_topic_body: "This is a permanent topic, visible only to staff, 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: |
|
||||
|
|
|
@ -42,8 +42,7 @@ if seed_welcome_topics
|
|||
|
||||
PostCreator.create(Discourse.system_user, raw: I18n.t('assets_topic_body'), title: "Assets for the site design", skip_validations: true, category: staff ? staff.name : nil)
|
||||
|
||||
welcome = File.read(Rails.root + 'docs/WELCOME-TO-DISCOURSE.md')
|
||||
post = PostCreator.create(Discourse.system_user, raw: welcome, title: "Welcome to Discourse", skip_validations: true)
|
||||
post = PostCreator.create(Discourse.system_user, raw: I18n.t('discourse_welcome_topic.body'), title: I18n.t('discourse_welcome_topic.title'), skip_validations: true)
|
||||
post.topic.update_pinned(true, true)
|
||||
|
||||
lounge = Category.find_by(id: SiteSetting.lounge_category_id)
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
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.
|
Loading…
Reference in New Issue
Block a user