- Write a new post
+ Create Post
{organizations && organizations.length > 0 && (
diff --git a/app/javascript/article-form/components/Title.jsx b/app/javascript/article-form/components/Title.jsx
index 2cece3cc1..36583f3e1 100644
--- a/app/javascript/article-form/components/Title.jsx
+++ b/app/javascript/article-form/components/Title.jsx
@@ -4,7 +4,7 @@ import PropTypes from 'prop-types';
// We use this hook for the title field to automatically grow the height of the textarea.
// It helps keep the entire layout the way it is without having unnecessary scrolling and white spaces.
// Keep in mind this is what happens only here - in the Preact component.
-// I'm mentioning this because the entire "Write a post" view is a preact component
+// I'm mentioning this because the entire "Create Post" view is a preact component
// BUT it is also a classic .html.erb view which is being loaded BEFORE this component
// to give a feeling of blazing fast page load. And we do NOT use this magic autoresizing
// functionality on .html.erb view because there's no point of it.
diff --git a/app/views/articles/_v2_form.html.erb b/app/views/articles/_v2_form.html.erb
index 5f17fb31c..2937f149a 100644
--- a/app/views/articles/_v2_form.html.erb
+++ b/app/views/articles/_v2_form.html.erb
@@ -49,7 +49,7 @@
- Write a new post
+ Create Post
<% if organizations && organizations.size > 0 %>
diff --git a/db/seeds.rb b/db/seeds.rb
index 8a21c79b4..0781dbd9e 100644
--- a/db/seeds.rb
+++ b/db/seeds.rb
@@ -306,14 +306,14 @@ seeder.create_if_none(Broadcast) do
"Try changing your font and theme and find the best style for you!",
start_discussion: "Sloan here! 👋 I noticed that you haven't " \
"started a discussion yet. Starting a discussion is easy to do; " \
- "just click on 'Write a Post' in the sidebar of the tag page to get started!",
+ "just click on 'Create Post' in the sidebar of the tag page to get started!",
ask_question: "Sloan here! 👋 I noticed that you haven't " \
"asked a question yet. Asking a question is easy to do; " \
- "just click on 'Write a Post' in the sidebar of the tag page to get started!",
+ "just click on 'Create Post' in the sidebar of the tag page to get started!",
discuss_and_ask: "Sloan here! 👋 I noticed that you haven't " \
"asked a question or " \
"started a discussion yet. It's easy to do both of these; " \
- "just click on 'Write a Post' in the sidebar of the tag page to get started!",
+ "just click on 'Create Post' in the sidebar of the tag page to get started!",
download_app: "Sloan here, with one last tip! 👋 Have you downloaded the DEV mobile app yet? " \
"Consider downloading it so you can access all " \
"of your favorite DEV content on the go!"
diff --git a/spec/factories/broadcasts.rb b/spec/factories/broadcasts.rb
index a589f14db..34a3883df 100644
--- a/spec/factories/broadcasts.rb
+++ b/spec/factories/broadcasts.rb
@@ -83,7 +83,7 @@ FactoryBot.define do
processed_html do
"Sloan here! 👋 I noticed that you haven't " \
"started a discussion yet. " \
- "Starting a discussion is easy to do; just click on 'Write a Post' " \
+ "Starting a discussion is easy to do; just click on 'Create Post' " \
"in the sidebar of the tag page to get started!"
end
end
@@ -94,7 +94,7 @@ FactoryBot.define do
processed_html do
"Sloan here! 👋 I noticed that you haven't " \
"asked a question yet. " \
- "Asking a question is easy to do; just click on 'Write a Post' in the sidebar of the tag page to get started!"
+ "Asking a question is easy to do; just click on 'Create Post' in the sidebar of the tag page to get started!"
end
end
@@ -105,7 +105,7 @@ FactoryBot.define do
"Sloan here! 👋 I noticed that you haven't " \
"asked a question or " \
"started a discussion yet. " \
- "It's easy to do both of these; just click on 'Write a Post' in the sidebar of the tag page to get started!"
+ "It's easy to do both of these; just click on 'Create Post' in the sidebar of the tag page to get started!"
end
end