diff --git a/po/de.po b/po/de.po
index 907385d..f3905a7 100644
--- a/po/de.po
+++ b/po/de.po
@@ -383,3 +383,21 @@ msgstr ""
msgid "Instance settings"
msgstr ""
+
+msgid "Allow anyone to register"
+msgstr ""
+
+msgid "Short description"
+msgstr ""
+
+msgid "Markdown is supported"
+msgstr ""
+
+msgid "Long description"
+msgstr ""
+
+msgid "Default license"
+msgstr ""
+
+msgid "Save settings"
+msgstr ""
diff --git a/po/en.po b/po/en.po
index 6b46a0b..9f8cf5a 100644
--- a/po/en.po
+++ b/po/en.po
@@ -370,3 +370,21 @@ msgstr ""
msgid "Instance settings"
msgstr ""
+
+msgid "Allow anyone to register"
+msgstr ""
+
+msgid "Short description"
+msgstr ""
+
+msgid "Markdown is supported"
+msgstr ""
+
+msgid "Long description"
+msgstr ""
+
+msgid "Default license"
+msgstr ""
+
+msgid "Save settings"
+msgstr ""
diff --git a/po/fr.po b/po/fr.po
index f6d0a96..6127ddf 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -379,3 +379,21 @@ msgstr ""
msgid "Instance settings"
msgstr ""
+
+msgid "Allow anyone to register"
+msgstr ""
+
+msgid "Short description"
+msgstr ""
+
+msgid "Markdown is supported"
+msgstr ""
+
+msgid "Long description"
+msgstr ""
+
+msgid "Default license"
+msgstr ""
+
+msgid "Save settings"
+msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 37a8fd2..5b9d28c 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -388,5 +388,23 @@ msgstr ""
msgid "Instance settings"
msgstr ""
+msgid "Allow anyone to register"
+msgstr ""
+
+msgid "Short description"
+msgstr ""
+
+msgid "Markdown is supported"
+msgstr ""
+
+msgid "Long description"
+msgstr ""
+
+msgid "Default license"
+msgstr ""
+
+msgid "Save settings"
+msgstr ""
+
#~ msgid "Logowanie"
#~ msgstr "Zaloguj siÄ™"
diff --git a/po/plume.pot b/po/plume.pot
index da17da3..45d2850 100644
--- a/po/plume.pot
+++ b/po/plume.pot
@@ -364,9 +364,6 @@ msgstr ""
msgid "Instance settings"
msgstr ""
-msgid "Name"
-msgstr ""
-
msgid "Allow anyone to register"
msgstr ""
diff --git a/src/routes/posts.rs b/src/routes/posts.rs
index 24e4470..1fd4f4f 100644
--- a/src/routes/posts.rs
+++ b/src/routes/posts.rs
@@ -14,6 +14,7 @@ use plume_models::{
blogs::*,
db_conn::DbConn,
comments::Comment,
+ instance::Instance,
mentions::Mention,
post_authors::*,
posts::*,
@@ -85,6 +86,7 @@ fn new(blog: String, user: User, conn: DbConn) -> Template {
} else {
Template::render("posts/new", json!({
"account": user,
+ "instance": Instance::get_local(&*conn),
"errors": null,
"form": null
}))
@@ -141,7 +143,11 @@ fn create(blog_name: String, data: LenientForm