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 ""
msgid "Reset your password"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:217
msgid "E-mail"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:220
msgid "Optional"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Send password reset link"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Check your inbox!"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "We sent a mail to the address you gave us, with a link to reset your password."
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Log in"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:217
msgid "Username, or email"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:217
msgid "Password"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:217
msgid "New password"
2018-06-17 15:26:15 +00:00
msgstr ""
# src/template_utils.rs:217
msgid "Confirmation"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Update password"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Administration of {0}"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Instances"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Configuration"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Users"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Unblock"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Block"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "About {0}"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Home to <em>{0}</em> people"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Who wrote <em>{0}</em> articles"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "And are connected to <em>{0}</em> other instances"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Administred by"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Runs Plume {0}"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "All the articles of the Fediverse"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Latest articles"
msgstr ""
msgid "Your feed"
msgstr ""
msgid "Federated feed"
msgstr ""
msgid "Local feed"
msgstr ""
msgid "Welcome to {}"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Articles from {}"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Ban"
msgstr ""
msgid "Nothing to see here yet. Try subscribing to more people."
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Administration"
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 ""
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 ""
msgid "Search"
2018-06-17 15:26:15 +00:00
msgstr ""
msgid "Your query"
2018-06-17 16:06:47 +00:00
msgstr ""
msgid "Advanced search"
2018-06-17 16:06:47 +00:00
msgstr ""
# src/template_utils.rs:305
msgid "Article title matching these words"
2018-06-17 16:06:47 +00:00
msgstr ""
msgid "Title"
2018-06-17 16:06:47 +00:00
msgstr ""
# src/template_utils.rs:305
msgid "Subtitle matching these words"
2018-06-17 16:06:47 +00:00
msgstr ""
msgid "Subtitle - byline"
2018-06-17 16:06:47 +00:00
msgstr ""
# src/template_utils.rs:305
msgid "Content matching these words"
2018-06-17 16:06:47 +00:00
msgstr ""
msgid "Body content"
msgstr ""
# src/template_utils.rs:305
msgid "From this date"
msgstr ""
# src/template_utils.rs:305
msgid "To this date"
2018-06-17 16:06:47 +00:00
msgstr ""
# src/template_utils.rs:305
msgid "Containing these tags"
2018-06-17 16:06:47 +00:00
msgstr ""
msgid "Tags"
2018-06-17 16:06:47 +00:00
msgstr ""
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr ""
2018-06-17 20:19:27 +00:00
msgid "Instance domain"
2018-06-17 20:19:27 +00:00
msgstr ""
# src/template_utils.rs:305
msgid "Posted by one of these authors"
2018-06-17 20:19:27 +00:00
msgstr ""
msgid "Authors"
2018-06-17 20:19:27 +00:00
msgstr ""
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
2018-06-17 20:19:27 +00:00
msgstr ""
2018-06-18 15:59:49 +00:00
msgid "Blog title"
2018-06-18 15:59:49 +00:00
msgstr ""
# src/template_utils.rs:305
msgid "Written in this language"
2018-06-18 15:59:49 +00:00
msgstr ""
msgid "Language"
msgstr ""
# src/template_utils.rs:305
msgid "Published under this license"
msgstr ""
2018-06-20 20:05:30 +00:00
msgid "Article license"
2018-06-20 20:05:30 +00:00
msgstr ""
2018-06-21 13:40:00 +00:00
msgid "Search result for \"{0}\""
2018-06-21 13:40:00 +00:00
msgstr ""
2018-07-07 20:57:53 +00:00
msgid "Search result"
2018-07-07 20:57:53 +00:00
msgstr ""
msgid "No result for your query"
2018-07-07 20:57:53 +00:00
msgstr ""
msgid "No more results for your query"
2018-07-07 20:57:53 +00:00
msgstr ""
msgid "Edit \"{}\""
2018-07-07 20:57:53 +00:00
msgstr ""
msgid "Description"
2018-07-07 20:57:53 +00:00
msgstr ""
msgid "You can upload images to your gallery, to use them as blog icons, or banners."
2018-07-07 20:57:53 +00:00
msgstr ""
msgid "Upload images"
2018-07-07 20:57:53 +00:00
msgstr ""
msgid "Blog icon"
2018-07-07 20:57:53 +00:00
msgstr ""
msgid "Blog banner"
msgstr ""
msgid "Update blog"
2018-07-07 20:57:53 +00:00
msgstr ""
msgid "Danger zone"
2018-07-07 20:57:53 +00:00
msgstr ""
msgid "Be very careful, any action taken here can't be reversed."
2018-07-07 20:57:53 +00:00
msgstr ""
msgid "Permanently delete this blog"
msgstr ""
msgid "{}'s icon"
msgstr ""
msgid "New article"
2018-07-25 12:41:48 +00:00
msgstr ""
msgid "Edit"
2018-07-25 12:41:48 +00:00
msgstr ""
2018-07-26 13:46:10 +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."
2018-07-27 12:08:39 +00:00
msgstr ""
msgid "New Blog"
2018-07-27 12:08:39 +00:00
msgstr ""
msgid "Create a blog"
msgstr ""
msgid "Create blog"
msgstr ""
2018-07-27 18:14:14 +00:00
msgid "Articles tagged \"{0}\""
msgstr ""
msgid "There are currently no articles with such a tag"
2018-07-27 18:14:14 +00:00
msgstr ""
msgid "Written by {0}"
2018-07-27 18:14:14 +00:00
msgstr ""
msgid "Are you sure?"
2018-07-27 18:14:14 +00:00
msgstr ""
msgid "Delete this article"
2018-07-27 18:14:14 +00:00
msgstr ""
msgid "Draft"
2018-07-27 18:14:14 +00:00
msgstr ""
msgid "All rights reserved."
msgstr ""
msgid "This article is under the {0} license."
msgstr ""
msgid "Unsubscribe"
msgstr ""
msgid "Subscribe"
msgstr ""
msgid "One like"
msgid_plural "{0} likes"
msgstr[0] ""
msgid "I don't like this anymore"
msgstr ""
msgid "Add yours"
msgstr ""
msgid "One boost"
msgid_plural "{0} boosts"
msgstr[0] ""
msgid "I don't want to boost this anymore"
msgstr ""
msgid "Boost"
msgstr ""
msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article"
msgstr ""
msgid "Comments"
msgstr ""
# src/template_utils.rs:217
msgid "Content warning"
msgstr ""
msgid "Your comment"
msgstr ""
msgid "Submit comment"
msgstr ""
msgid "No comments yet. Be the first to react!"
msgstr ""
2018-09-01 16:39:40 +00:00
msgid "Interact with {}"
msgstr ""
msgid "Log in to interact"
2018-09-01 16:39:40 +00:00
msgstr ""
msgid "Enter your full username to interact"
2018-09-01 16:39:40 +00:00
msgstr ""
2018-09-03 12:28:20 +00:00
msgid "Publish"
2018-09-03 12:28:20 +00:00
msgstr ""
msgid "Classic editor (any changes will be lost)"
2018-09-03 12:28:20 +00:00
msgstr ""
# src/template_utils.rs:217
msgid "Subtitle"
2018-09-03 12:28:20 +00:00
msgstr ""
msgid "Content"
2018-09-03 12:28:20 +00:00
msgstr ""
msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them."
2018-09-03 12:28:20 +00:00
msgstr ""
msgid "Upload media"
2018-09-03 12:28:20 +00:00
msgstr ""
# src/template_utils.rs:217
msgid "Tags, separated by commas"
2018-09-03 12:28:20 +00:00
msgstr ""
# src/template_utils.rs:217
msgid "License"
2018-09-03 12:28:20 +00:00
msgstr ""
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
2018-09-03 12:28:20 +00:00
msgstr ""
msgid "Illustration"
2018-09-03 12:28:20 +00:00
msgstr ""
msgid "This is a draft, don't publish it yet."
2018-09-03 12:28:20 +00:00
msgstr ""
msgid "Update"
2018-09-03 12:28:20 +00:00
msgstr ""
msgid "Update, or publish"
2018-09-03 12:28:20 +00:00
msgstr ""
msgid "Publish your post"
2018-09-03 12:28:20 +00:00
msgstr ""
msgid "I'm from this instance"
2018-09-03 12:28:20 +00:00
msgstr ""
msgid "I'm from another instance"
msgstr ""
# src/template_utils.rs:217
msgid "Username"
msgstr ""
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr ""
msgid "Continue to your instance"
msgstr ""
msgid "View all"
msgstr ""
msgid "By {0}"
msgstr ""
msgid "What is Plume?"
msgstr ""
msgid "Plume is a decentralized blogging engine."
msgstr ""
msgid "Authors can manage multiple blogs, each as its own website."
2018-09-03 12:28:20 +00:00
msgstr ""
msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon."
msgstr ""
2018-09-04 11:26:13 +00:00
msgid "Create your account"
msgstr ""
msgid "Read the detailed rules"
msgstr ""
msgid "Respond"
2018-09-04 11:26:13 +00:00
msgstr ""
msgid "Delete this comment"
msgstr ""
msgid "None"
msgstr ""
msgid "No description"
msgstr ""
msgid "Notifications"
msgstr ""
2018-09-05 15:50:54 +00:00
msgid "Plume"
2018-09-05 15:50:54 +00:00
msgstr ""
msgid "Menu"
2018-09-05 15:50:54 +00:00
msgstr ""
msgid "Dashboard"
2018-09-05 15:50:54 +00:00
msgstr ""
msgid "Log Out"
2018-09-05 15:50:54 +00:00
msgstr ""
msgid "My account"
2018-09-05 15:50:54 +00:00
msgstr ""
msgid "Log In"
2018-09-05 15:50:54 +00:00
msgstr ""
2018-09-05 17:03:02 +00:00
msgid "Register"
2018-09-05 17:03:02 +00:00
msgstr ""
2018-09-06 12:06:04 +00:00
msgid "About this instance"
2018-09-06 12:06:04 +00:00
msgstr ""
2018-09-07 17:51:53 +00:00
msgid "Source code"
2018-09-07 17:51:53 +00:00
msgstr ""
2018-09-07 19:05:13 +00:00
msgid "Matrix room"
2018-09-07 19:05:13 +00:00
msgstr ""
msgid "Your media"
2018-09-07 19:05:13 +00:00
msgstr ""
msgid "Upload"
msgstr ""
msgid "You don't have any media yet."
msgstr ""
msgid "Content warning: {0}"
msgstr ""
msgid "Delete"
msgstr ""
msgid "Details"
msgstr ""
msgid "Media details"
msgstr ""
msgid "Go back to the gallery"
msgstr ""
msgid "Markdown syntax"
msgstr ""
msgid "Copy it into your articles, to insert this media:"
msgstr ""
msgid "Use as an avatar"
msgstr ""
msgid "Media upload"
msgstr ""
msgid "Useful for visually impaired people, as well as licensing information"
msgstr ""
msgid "Leave it empty, if none is needed"
msgstr ""
msgid "File"
msgstr ""
msgid "Send"
msgstr ""
msgid "{0}'s subscriptions"
msgstr ""
msgid "Articles"
msgstr ""
msgid "Subscribers"
msgstr ""
msgid "Subscriptions"
msgstr ""
msgid "Your Dashboard"
msgstr ""
msgid "Your Blogs"
msgstr ""
msgid "You don't have any blog yet. Create your own, or ask to join one."
msgstr ""
msgid "Start a new blog"
msgstr ""
msgid "Your Drafts"
msgstr ""
msgid "Go to your gallery"
msgstr ""
2019-01-28 12:12:56 +00:00
msgid "Admin"
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "It is you"
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Edit your profile"
msgstr ""
2019-01-28 12:12:56 +00:00
msgid "Open on {0}"
msgstr ""
2019-01-28 12:12:56 +00:00
msgid "{0}'s subscribers"
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Edit your account"
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Your Profile"
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "To change your avatar, upload it to your gallery and then select from there."
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Upload an avatar"
msgstr ""
# src/template_utils.rs:217
msgid "Display name"
msgstr ""
# src/template_utils.rs:217
msgid "Email"
msgstr ""
msgid "Summary"
msgstr ""
msgid "Update account"
msgstr ""
msgid "Be very careful, any action taken here can't be cancelled."
msgstr ""
msgid "Delete your account"
msgstr ""
msgid "Sorry, but as an admin, you can't leave your own instance."
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Atom feed"
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Recently boosted"
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Create an account"
2019-01-28 12:12:56 +00:00
msgstr ""
# src/template_utils.rs:217
msgid "Password confirmation"
msgstr ""
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Follow {}"
msgstr ""
msgid "Login to follow"
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Enter your full username to follow"
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Internal server error"
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Something broke on our side."
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Sorry about that. If you think this is a bug, please report it."
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Page not found"
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "We couldn't find this page."
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "The link that led you here may be broken."
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "Invalid CSRF token"
2019-01-28 12:12:56 +00:00
msgstr ""
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."
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "You are not authorized."
2019-01-28 12:12:56 +00:00
msgstr ""
msgid "The content you sent can't be processed."
msgstr ""
msgid "Maybe it was too long."
2019-01-28 12:12:56 +00:00
msgstr ""