Plume/po/plume/plume.pot

800 lines
12 KiB
Plaintext
Raw Normal View History

msgid ""
msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
# src/template_utils.rs:68
msgid "{0} commented on your article."
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:70
msgid "{0} liked your article."
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:71
msgid "{0} mentioned you."
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:72
msgid "{0} boosted your article."
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:108
msgid "{0}'s avatar"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
2018-06-17 15:26:15 +00:00
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
# src/routes/blogs.rs:109
msgid "A blog with the same name already exists."
msgstr ""
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
2018-06-17 15:26:15 +00:00
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
# src/routes/blogs.rs:262
msgid "You can't use this media as a blog icon."
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
# src/routes/blogs.rs:280
msgid "You can't use this media as a blog banner."
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
# src/routes/likes.rs:51
msgid "To like a post, you need to be logged in"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/routes/notifications.rs:29
msgid "To see your notifications, you need to be logged in"
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
# src/routes/posts.rs:93
msgid "This post isn't published yet."
2018-06-17 15:26:15 +00:00
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
# src/routes/posts.rs:122
msgid "To write a new post, you need to be logged in"
2018-06-17 15:26:15 +00:00
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
2018-06-17 15:26:15 +00:00
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
# src/routes/posts.rs:147
msgid "New post"
2018-06-17 15:26:15 +00:00
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
# src/routes/posts.rs:192
msgid "Edit {0}"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/routes/posts.rs:630
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/routes/session.rs:181
msgid "Password reset"
msgstr ""
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr ""
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr ""
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
# src/routes/user.rs:136
msgid "To access your dashboard, you need to be logged in"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Plume"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Menu"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Search"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Dashboard"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Notifications"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Log Out"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "My account"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Log In"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Register"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "About this instance"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Source code"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Matrix room"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Administration"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Welcome to {}"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Latest articles"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Your feed"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Federated feed"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Local feed"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Administration of {0}"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Instances"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Configuration"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Users"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Unblock"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Block"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Ban"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "All the articles of the Fediverse"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Articles from {}"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Nothing to see here yet. Try subscribing to more people."
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:217
msgid "Name"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:220
msgid "Optional"
msgstr ""
msgid "Allow anyone to register here"
2018-06-17 15:26:15 +00:00
msgstr ""
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 17:31:47 +00:00
msgid "Short description"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Markdown syntax is supported"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Long description"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:217
msgid "Default article license"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Save these settings"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "About {0}"
2018-06-17 15:26:15 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Home to <em>{0}</em> people"
2018-06-17 16:06:47 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Who wrote <em>{0}</em> articles"
2018-06-17 16:06:47 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "And are connected to <em>{0}</em> other instances"
2018-06-17 16:06:47 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Administred by"
2018-06-17 16:06:47 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Runs Plume {0}"
2018-06-17 16:06:47 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Follow {}"
2018-06-17 16:06:47 +00:00
msgstr ""
msgid "Log in to follow"
2018-06-17 16:06:47 +00:00
msgstr ""
msgid "Enter your full username handle to follow"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Edit your account"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Your Profile"
2018-06-17 16:06:47 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "To change your avatar, upload it to your gallery and then select from there."
2018-06-17 16:06:47 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Upload an avatar"
2018-06-17 16:06:47 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:217
msgid "Display name"
msgstr ""
2018-06-17 20:19:27 +00:00
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:217
msgid "Email"
2018-06-17 20:19:27 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Summary"
2018-06-17 20:19:27 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Update account"
2018-06-17 20:19:27 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Danger zone"
2018-06-17 20:19:27 +00:00
msgstr ""
2018-06-18 15:59:49 +00:00
2019-04-19 12:59:03 +00:00
msgid "Be very careful, any action taken here can't be cancelled."
2018-06-18 15:59:49 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Delete your account"
2018-06-18 15:59:49 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Sorry, but as an admin, you can't leave your own instance."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Your Dashboard"
msgstr ""
2018-06-20 20:05:30 +00:00
2019-04-19 12:59:03 +00:00
msgid "Your Blogs"
2018-06-20 20:05:30 +00:00
msgstr ""
2018-06-21 13:40:00 +00:00
2019-04-19 12:59:03 +00:00
msgid "You don't have any blog yet. Create your own, or ask to join one."
2018-06-21 13:40:00 +00:00
msgstr ""
2018-07-07 20:57:53 +00:00
2019-04-19 12:59:03 +00:00
msgid "Start a new blog"
2018-07-07 20:57:53 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Your Drafts"
2018-07-07 20:57:53 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Your media"
2018-07-07 20:57:53 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Go to your gallery"
2018-07-07 20:57:53 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Create your account"
2018-07-07 20:57:53 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Create an account"
2018-07-07 20:57:53 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:217
msgid "Username"
2018-07-07 20:57:53 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:217
msgid "Password"
2018-07-07 20:57:53 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:217
msgid "Password confirmation"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
2018-07-07 20:57:53 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Articles"
2018-07-07 20:57:53 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Subscribers"
2018-07-07 20:57:53 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Subscriptions"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Atom feed"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Recently boosted"
2018-07-25 12:41:48 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Admin"
2018-07-25 12:41:48 +00:00
msgstr ""
2018-07-26 13:46:10 +00:00
2019-04-19 12:59:03 +00:00
msgid "It is you"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Edit your profile"
2018-07-27 12:08:39 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Open on {0}"
2018-07-27 12:08:39 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Unsubscribe"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Subscribe"
msgstr ""
2018-07-27 18:14:14 +00:00
2019-04-19 12:59:03 +00:00
msgid "{0}'s subscriptions"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "{0}'s subscribers"
2018-07-27 18:14:14 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Respond"
2018-07-27 18:14:14 +00:00
msgstr ""
msgid "Are you sure?"
2018-07-27 18:14:14 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Delete this comment"
2018-07-27 18:14:14 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "What is Plume?"
2018-07-27 18:14:14 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Plume is a decentralized blogging engine."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Authors can manage multiple blogs, each as its own website."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Read the detailed rules"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "None"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "No description"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "View all"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "By {0}"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Draft"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Your query"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Advanced search"
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Title"
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Subtitle - byline"
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr ""
2018-09-01 16:39:40 +00:00
2019-04-19 12:59:03 +00:00
msgid "Body content"
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:305
msgid "From this date"
2018-09-01 16:39:40 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:305
msgid "To this date"
2018-09-01 16:39:40 +00:00
msgstr ""
2018-09-03 12:28:20 +00:00
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:305
msgid "Containing these tags"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Tags"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:305
msgid "Posted on one of these instances"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Instance domain"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:305
msgid "Posted by one of these authors"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Authors"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Blog title"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:305
msgid "Written in this language"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Language"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:305
msgid "Published under this license"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Article license"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Search result for \"{0}\""
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Search result"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "No result for your query"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "No more results for your query"
msgstr ""
msgid "Reset your password"
msgstr ""
# src/template_utils.rs:217
2019-04-19 12:59:03 +00:00
msgid "New password"
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:217
msgid "Confirmation"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Update password"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Check your inbox!"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "We sent a mail to the address you gave us, with a link to reset your password."
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:217
msgid "E-mail"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Send password reset link"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Log in"
2018-09-03 12:28:20 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:217
msgid "Username, or email"
msgstr ""
2018-09-04 11:26:13 +00:00
2019-04-19 12:59:03 +00:00
msgid "Interact with {}"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Log in to interact"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Enter your full username to interact"
2018-09-04 11:26:13 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Publish"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Classic editor (any changes will be lost)"
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:217
msgid "Subtitle"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Content"
msgstr ""
2018-09-05 15:50:54 +00:00
2019-04-19 12:59:03 +00:00
msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them."
2018-09-05 15:50:54 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Upload media"
2018-09-05 15:50:54 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:217
msgid "Tags, separated by commas"
2018-09-05 15:50:54 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:217
msgid "License"
2018-09-05 15:50:54 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
2018-09-05 15:50:54 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Illustration"
2018-09-05 15:50:54 +00:00
msgstr ""
2018-09-05 17:03:02 +00:00
2019-04-19 12:59:03 +00:00
msgid "This is a draft, don't publish it yet."
2018-09-05 17:03:02 +00:00
msgstr ""
2018-09-06 12:06:04 +00:00
2019-04-19 12:59:03 +00:00
msgid "Update"
2018-09-06 12:06:04 +00:00
msgstr ""
2018-09-07 17:51:53 +00:00
2019-04-19 12:59:03 +00:00
msgid "Update, or publish"
2018-09-07 17:51:53 +00:00
msgstr ""
2018-09-07 19:05:13 +00:00
2019-04-19 12:59:03 +00:00
msgid "Publish your post"
2018-09-07 19:05:13 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Written by {0}"
2018-09-07 19:05:13 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Edit"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Delete this article"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "All rights reserved."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "This article is under the {0} license."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "One like"
msgid_plural "{0} likes"
msgstr[0] ""
msgid "I don't like this anymore"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Add yours"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "One boost"
msgid_plural "{0} boosts"
msgstr[0] ""
msgid "I don't want to boost this anymore"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Boost"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Comments"
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:217
msgid "Content warning"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Your comment"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Submit comment"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "No comments yet. Be the first to react!"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Invalid CSRF token"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Something is wrong with your CSRF token. Make sure cookies are enabled in you browser, and try reloading this page. If you continue to see this error message, please report it."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Page not found"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "We couldn't find this page."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "The link that led you here may be broken."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "The content you sent can't be processed."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Maybe it was too long."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "You are not authorized."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Internal server error"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Something broke on our side."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Sorry about that. If you think this is a bug, please report it."
msgstr ""
2019-01-28 12:12:56 +00:00
2019-04-19 12:59:03 +00:00
msgid "Edit \"{}\""
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Description"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "You can upload images to your gallery, to use them as blog icons, or banners."
msgstr ""
2019-01-28 12:12:56 +00:00
2019-04-19 12:59:03 +00:00
msgid "Upload images"
msgstr ""
2019-01-28 12:12:56 +00:00
2019-04-19 12:59:03 +00:00
msgid "Blog icon"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Blog banner"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Update blog"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Be very careful, any action taken here can't be reversed."
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Permanently delete this blog"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "New Blog"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Create a blog"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Create blog"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "{}'s icon"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "New article"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "There's one author on this blog: "
msgid_plural "There are {0} authors on this blog: "
msgstr[0] ""
msgid "No posts to see here yet."
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Articles tagged \"{0}\""
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "There are currently no articles with such a tag"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "I'm from this instance"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "I'm from another instance"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Continue to your instance"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Upload"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "You don't have any media yet."
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Content warning: {0}"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Delete"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Details"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Media upload"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Useful for visually impaired people, as well as licensing information"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Leave it empty, if none is needed"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "File"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Send"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Media details"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Go back to the gallery"
2019-01-28 12:12:56 +00:00
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Markdown syntax"
msgstr ""
2019-04-19 12:59:03 +00:00
msgid "Copy it into your articles, to insert this media:"
msgstr ""
msgid "Use as an avatar"
2019-01-28 12:12:56 +00:00
msgstr ""