<% if @article.video_state == "PROGRESSING" %>
-
⏳ Video Transcoding In Progress ⏳
+
<%= t("views.editor.video.progress.heading") %>
- You'll get an email when this process finishes.
+ <%= t("views.editor.video.progress.notice_1") %>
- This is an ordinary unpublished post. Add title/tags/body/etc, and then mark as published after the video
- is done processing.
+ <%= t("views.editor.video.progress.notice_2") %>
<% elsif @article.video_state == "COMPLETED" %>
@@ -19,8 +18,8 @@
<%= render "articles/video_player", meta_tags: false, article: @article %>
<%= form_for(@article) do |f| %>
- Preview Image URL: <%= f.text_field :video_thumbnail_url, placeholder: "New Thumbnail URL" %>
- <%= f.submit "Submit Change", class: "crayons-btn" %>
+ <%= t("views.editor.video.submit_image.text") %><%= f.text_field :video_thumbnail_url, placeholder: t("views.editor.video.submit_image.placeholder") %>
+ <%= f.submit t("views.editor.video.submit_image.button"), class: "crayons-btn" %>
<% end %>
<% end %>
diff --git a/app/views/articles/manage.html.erb b/app/views/articles/manage.html.erb
index 200cf2a79..21e1c0d2e 100644
--- a/app/views/articles/manage.html.erb
+++ b/app/views/articles/manage.html.erb
@@ -1,13 +1,13 @@
-<% title "Manage #{@article.title}" %>
+<% title t("views.manager.meta.title", title: @article.title) %>
@@ -36,7 +36,7 @@
<%= render "dashboards/dashboard_article", article: @article, discussion_lock: @discussion_lock, organization: @article.organization, org_admin: @user.org_admin?(@article.organization), manage_view: true %>
<%= form_for(RatingVote.new) do |f| %>
-
Experience Level of Post
+
<%= t("views.manager.rating.heading") %>
<%= f.hidden_field :article_id, value: @article.id %>
<%= f.hidden_field :group, value: "experience_level" %>
@@ -55,8 +55,8 @@
-
Who is this post most relevant for?
-
👈 BeginnerExpert 👉
+
<%= t("views.manager.rating.text") %>
+
<%= t("views.manager.rating.lower") %><%= t("views.manager.rating.higher") %>
<% end %>
diff --git a/app/views/articles/new.html.erb b/app/views/articles/new.html.erb
index 6c1cc38f2..60c0113f7 100644
--- a/app/views/articles/new.html.erb
+++ b/app/views/articles/new.html.erb
@@ -1,4 +1,4 @@
-<% title "New Post" %>
+<% title t("views.editor.heading.new") %>
<%= content_for :page_meta do %>