Plume/po/plume/en.po

843 lines
13 KiB
Plaintext
Raw Normal View History

Pull i18n from Funkwhale's weblate (#439) * Added translation using Weblate (Arabic) * Translated using Weblate (Arabic) Currently translated at 66.7% (124 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ar/ * Translated using Weblate (English) Currently translated at 100.0% (186 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/en/ * Translated using Weblate (Japanese) Currently translated at 100.0% (186 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ja/ * Translated using Weblate (Arabic) Currently translated at 68.8% (128 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ar/ * Translated using Weblate (Norwegian Bokmål) Currently translated at 96.8% (180 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/nb/ * Translated using Weblate (Arabic) Currently translated at 95.7% (178 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ar/ * Added translation using Weblate (Spanish) * Translated using Weblate (Spanish) Currently translated at 3.8% (7 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/es/ * Added translation using Weblate (Portuguese (Portugal)) * Translated using Weblate (Arabic) Currently translated at 99.5% (185 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ar/ * Translated using Weblate (Portuguese (Portugal)) Currently translated at 95.7% (178 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/pt_PT/ * Translated using Weblate (Spanish) Currently translated at 26.9% (50 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/es/ * Translated using Weblate (Spanish) Currently translated at 34.9% (65 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/es/ * Translated using Weblate (Spanish) Currently translated at 34.9% (65 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/es/
2019-02-13 13:39:42 +01:00
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: 2018-12-14 12:48+0000\n"
"Last-Translator: Marek Ľach <mareklach@outlook.com>\n"
"Language-Team: English <https://translate.funkwhale.audio/projects/plume/"
"Plume/en/>\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.2.2\n"
# src/template_utils.rs:34
msgid "{0} commented on your article."
msgstr ""
# src/template_utils.rs:35
msgid "{0} is subscribed to you."
msgstr ""
# src/template_utils.rs:36
msgid "{0} liked your article."
msgstr ""
# src/template_utils.rs:37
msgid "{0} mentioned you."
msgstr ""
# src/template_utils.rs:38
msgid "{0} boosted your article."
msgstr ""
# src/template_utils.rs:68
msgid "{0}'s avatar"
msgstr ""
# src/routes/blogs.rs:70
msgid "To create a new blog, 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 19:31:47 +02:00
# src/routes/blogs.rs:111
msgid "A blog with the same name already exists."
msgstr ""
# src/routes/blogs.rs:136
msgid "You are not allowed to delete this blog."
msgstr ""
# src/routes/blogs.rs:170
msgid "You are not allowed to edit this blog."
msgstr ""
# src/main.rs:1
msgid "You can't use this media as a blog icon."
msgstr ""
# src/main.rs:1
msgid "You can't use this media as a blog banner."
msgstr ""
# src/routes/likes.rs:47
msgid "To like a post, you need to be logged in"
msgstr ""
# src/routes/notifications.rs:29
msgid "To see your notifications, you need to be logged in"
msgstr ""
# src/routes/posts.rs:81
msgid "This post isn't published yet."
msgstr ""
# src/routes/posts.rs:120
msgid "To write a new post, you need to be logged in"
msgstr ""
# src/routes/posts.rs:113
msgid "You are not an author of this blog."
msgstr ""
# src/routes/posts.rs:119
msgid "New post"
msgstr ""
# src/routes/posts.rs:156
msgid "Edit {0}"
msgstr ""
# src/routes/user.rs:222
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:47
msgid "To reshare a post, you need to be logged in"
msgstr ""
# src/routes/session.rs:147
msgid "Password reset"
msgstr ""
# src/routes/session.rs:156
msgid "Here is the link to reset your password: {0}"
msgstr ""
# src/routes/session.rs:199
msgid "Your password was successfully reset."
msgstr ""
# src/routes/session.rs:214
msgid "Sorry, but the link expired. Try again"
msgstr ""
# src/routes/user.rs:148
msgid "To access your dashboard, you need to be logged in"
msgstr ""
# src/routes/user.rs:187
msgid "To subscribe to someone, you need to be logged in"
msgstr ""
# src/routes/user.rs:287
msgid "To edit your profile, you need to be logged in"
msgstr ""
msgid "Plume"
msgstr "Plume"
msgid "Menu"
msgstr ""
msgid "Search"
msgstr ""
msgid "Dashboard"
msgstr ""
msgid "Notifications"
msgstr ""
msgid "Log Out"
msgstr ""
msgid "My account"
msgstr ""
msgid "Log In"
msgstr ""
msgid "Register"
msgstr ""
msgid "About this instance"
msgstr ""
msgid "Source code"
msgstr ""
msgid "Matrix room"
msgstr ""
msgid "Administration"
msgstr ""
msgid "Welcome to {}"
msgstr ""
msgid "Latest articles"
msgstr ""
msgid "Your feed"
msgstr ""
msgid "Federated feed"
msgstr ""
msgid "Local feed"
msgstr ""
msgid "Administration of {0}"
msgstr ""
msgid "Instances"
msgstr ""
msgid "Configuration"
msgstr ""
msgid "Users"
msgstr ""
msgid "Unblock"
msgstr ""
msgid "Block"
msgstr ""
msgid "Ban"
msgstr ""
msgid "All the articles of the Fediverse"
msgstr ""
msgid "Articles from {}"
msgstr ""
msgid "Nothing to see here yet. Try subscribing to more people."
msgstr ""
# src/template_utils.rs:144
msgid "Name"
msgstr ""
# src/template_utils.rs:146
msgid "Optional"
msgstr ""
msgid "Allow anyone to register here"
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 19:31:47 +02:00
msgid "Short description"
msgstr ""
msgid "Markdown syntax is supported"
msgstr ""
msgid "Long description"
msgstr ""
# src/template_utils.rs:144
msgid "Default article license"
msgstr ""
msgid "Save these settings"
msgstr ""
2018-06-17 18:06:47 +02:00
msgid "About {0}"
2018-06-17 18:06:47 +02: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 19:31:47 +02:00
msgid "Home to <em>{0}</em> people"
2018-06-17 18:06:47 +02:00
msgstr ""
msgid "Who wrote <em>{0}</em> articles"
2018-06-17 18:06:47 +02:00
msgstr ""
msgid "And are connected to <em>{0}</em> other instances"
2018-06-17 18:06:47 +02:00
msgstr ""
msgid "Administred by"
2018-06-17 18:06:47 +02:00
msgstr ""
msgid "Runs Plume {0}"
2018-06-17 18:06:47 +02:00
msgstr ""
msgid "Follow {}"
msgstr ""
msgid "Login to follow"
msgstr ""
msgid "Enter your full username to follow"
msgstr ""
msgid "Edit your account"
2018-06-17 18:06:47 +02:00
msgstr ""
msgid "Your Profile"
2018-06-17 18:06:47 +02:00
msgstr ""
msgid ""
"To change your avatar, upload it to your gallery and then select from there."
msgstr ""
msgid "Upload an avatar"
msgstr ""
# src/template_utils.rs:144
msgid "Display name"
2018-06-17 18:06:47 +02:00
msgstr ""
# src/template_utils.rs:144
msgid "Email"
2018-06-17 18:06:47 +02:00
msgstr ""
2018-06-18 19:44:18 +02:00
# src/template_utils.rs:144
msgid "Summary"
2018-06-18 19:44:18 +02:00
msgstr ""
msgid "Update account"
2018-06-18 19:44:18 +02:00
msgstr ""
msgid "Danger zone"
2018-06-18 19:44:18 +02:00
msgstr ""
msgid "Be very careful, any action taken here can't be cancelled."
2018-06-18 19:44:18 +02:00
msgstr ""
msgid "Delete your account"
2018-06-18 19:44:18 +02:00
msgstr ""
msgid "Sorry, but as an admin, you can't leave your own instance."
2018-06-18 19:44:18 +02:00
msgstr ""
msgid "Your Dashboard"
2018-06-18 19:44:18 +02:00
msgstr ""
msgid "Your Blogs"
msgstr ""
msgid "You don't have any blog yet. Create your own, or ask to join one."
msgstr ""
2018-06-20 22:05:30 +02:00
msgid "Start a new blog"
2018-06-20 22:05:30 +02:00
msgstr ""
msgid "Your Drafts"
msgstr ""
msgid "Your media"
msgstr ""
msgid "Go to your gallery"
msgstr ""
msgid "Create your account"
msgstr ""
msgid "Create an account"
msgstr ""
# src/template_utils.rs:144
msgid "Username"
msgstr ""
# src/template_utils.rs:144
msgid "Password"
msgstr ""
# src/template_utils.rs:144
msgid "Password confirmation"
msgstr ""
msgid ""
"Apologies, but registrations are closed on this particular instance. You "
"can, however, find a different one."
msgstr ""
msgid "Articles"
msgstr ""
msgid "Subscribers"
msgstr ""
msgid "Subscriptions"
msgstr ""
msgid "Atom feed"
msgstr ""
msgid "Recently boosted"
msgstr ""
msgid "Admin"
msgstr ""
2018-07-25 14:29:34 +02:00
msgid "It is you"
2018-07-25 15:20:09 +02:00
msgstr ""
msgid "Edit your profile"
2018-07-25 15:20:09 +02:00
msgstr ""
msgid "Open on {0}"
2018-07-27 14:08:39 +02:00
msgstr ""
msgid "Unsubscribe"
msgstr ""
msgid "Subscribe"
2018-07-27 14:08:39 +02: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 19:31:47 +02:00
msgid "{0}'s subscriptions"
msgstr ""
msgid "{0}'s subscribers"
msgstr ""
msgid "Respond"
msgstr ""
msgid "Are you sure?"
msgstr ""
msgid "Delete this comment"
msgstr ""
msgid "What is Plume?"
msgstr ""
msgid "Plume is a decentralized blogging engine."
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 19:31:47 +02:00
msgid "Authors can manage multiple blogs, each as its own website."
msgstr ""
msgid ""
"Articles are also visible on other Plume instances, and you can interact "
"with them directly from other platforms like Mastodon."
msgstr ""
msgid "Read the detailed rules"
msgstr ""
msgid "None"
msgstr ""
msgid "No description"
msgstr ""
msgid "View all"
msgstr ""
msgid "By {0}"
msgstr ""
msgid "Draft"
msgstr ""
msgid "Your query"
msgstr ""
msgid "Advanced search"
msgstr ""
# src/template_utils.rs:185
msgid "Article title matching these words"
msgstr ""
msgid "Title"
msgstr ""
# src/template_utils.rs:185
msgid "Subtitle matching these words"
msgstr ""
msgid "Subtitle - byline"
msgstr ""
# src/template_utils.rs:185
msgid "Content matching these words"
msgstr ""
2018-09-01 18:39:40 +02:00
msgid "Body content"
2018-09-01 18:39:40 +02:00
msgstr ""
# src/template_utils.rs:185
msgid "From this date"
msgstr ""
# src/template_utils.rs:185
msgid "To this date"
2018-09-01 18:39:40 +02:00
msgstr ""
# src/template_utils.rs:185
msgid "Containing these tags"
2018-09-01 18:39:40 +02:00
msgstr ""
2018-09-03 14:57:20 +02:00
msgid "Tags"
2018-09-03 14:57:20 +02:00
msgstr ""
# src/template_utils.rs:185
msgid "Posted on one of these instances"
2018-09-03 14:57:20 +02:00
msgstr ""
msgid "Instance domain"
2018-09-03 14:57:20 +02:00
msgstr ""
# src/template_utils.rs:185
msgid "Posted by one of these authors"
2018-09-03 14:57:20 +02:00
msgstr ""
msgid "Authors"
2018-09-03 14:57:20 +02:00
msgstr ""
# src/template_utils.rs:185
msgid "Posted on one of these blogs"
2018-09-03 14:57:20 +02:00
msgstr ""
msgid "Blog title"
2018-09-03 14:57:20 +02:00
msgstr ""
# src/template_utils.rs:185
msgid "Written in this language"
2018-09-03 14:57:20 +02:00
msgstr ""
msgid "Language"
2018-09-03 14:57:20 +02:00
msgstr ""
# src/template_utils.rs:185
msgid "Published under this license"
2018-09-03 14:57:20 +02:00
msgstr ""
msgid "Article license"
2018-09-03 14:57:20 +02:00
msgstr ""
msgid "Search result for \"{0}\""
2018-09-03 14:57:20 +02:00
msgstr ""
msgid "Search result"
2018-09-03 14:57:20 +02:00
msgstr ""
msgid "No result for your query"
2018-09-03 14:57:20 +02:00
msgstr ""
msgid "No more results for your query"
2018-09-03 14:57:20 +02:00
msgstr ""
msgid "Reset your password"
msgstr ""
# src/template_utils.rs:144
msgid "New password"
msgstr ""
# src/template_utils.rs:144
msgid "Confirmation"
msgstr ""
msgid "Update password"
msgstr ""
msgid "Check your inbox!"
msgstr ""
msgid ""
"We sent a mail to the address you gave us, with a link to reset your "
"password."
msgstr ""
# src/template_utils.rs:144
msgid "E-mail"
msgstr ""
msgid "Send password reset link"
msgstr ""
msgid "Log in"
2018-09-03 14:57:20 +02:00
msgstr ""
# src/template_utils.rs:217
msgid "Username, or email"
msgstr ""
2018-09-04 13:26:13 +02:00
msgid "Interact with {}"
msgstr ""
msgid "Log in to interact"
msgstr ""
msgid "Enter your full username to interact"
msgstr ""
msgid "Publish"
msgstr ""
msgid "Classic editor (any changes will be lost)"
msgstr ""
# src/template_utils.rs:144
2018-09-04 13:26:13 +02:00
msgid "Subtitle"
msgstr ""
msgid "Content"
msgstr ""
msgid ""
"You can upload media to your gallery, and then copy their Markdown code into "
"your articles to insert them."
msgstr ""
msgid "Upload media"
msgstr ""
# src/template_utils.rs:144
msgid "Tags, separated by commas"
msgstr ""
2018-09-05 17:50:54 +02:00
# src/template_utils.rs:144
msgid "License"
2018-09-05 17:50:54 +02:00
msgstr ""
# src/template_utils.rs:148
msgid "Leave it empty to reserve all rights"
2018-09-05 17:50:54 +02:00
msgstr ""
msgid "Illustration"
2018-09-05 17:50:54 +02:00
msgstr ""
msgid "This is a draft, don't publish it yet."
2018-09-05 17:50:54 +02:00
msgstr ""
msgid "Update"
2018-09-05 17:50:54 +02:00
msgstr ""
msgid "Update, or publish"
2018-09-05 19:03:02 +02:00
msgstr ""
2018-09-06 14:06:04 +02:00
msgid "Publish your post"
2018-09-07 19:51:53 +02:00
msgstr ""
2018-09-07 21:05:13 +02:00
msgid "Written by {0}"
2018-09-07 21:05:13 +02:00
msgstr ""
msgid "Edit"
2018-09-07 21:05:13 +02:00
msgstr ""
msgid "Delete this article"
msgstr ""
msgid "All rights reserved."
msgstr ""
msgid "This article is under the {0} license."
msgstr ""
msgid "One like"
msgid_plural "{0} likes"
Pull i18n from Funkwhale's weblate (#439) * Added translation using Weblate (Arabic) * Translated using Weblate (Arabic) Currently translated at 66.7% (124 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ar/ * Translated using Weblate (English) Currently translated at 100.0% (186 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/en/ * Translated using Weblate (Japanese) Currently translated at 100.0% (186 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ja/ * Translated using Weblate (Arabic) Currently translated at 68.8% (128 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ar/ * Translated using Weblate (Norwegian Bokmål) Currently translated at 96.8% (180 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/nb/ * Translated using Weblate (Arabic) Currently translated at 95.7% (178 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ar/ * Added translation using Weblate (Spanish) * Translated using Weblate (Spanish) Currently translated at 3.8% (7 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/es/ * Added translation using Weblate (Portuguese (Portugal)) * Translated using Weblate (Arabic) Currently translated at 99.5% (185 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ar/ * Translated using Weblate (Portuguese (Portugal)) Currently translated at 95.7% (178 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/pt_PT/ * Translated using Weblate (Spanish) Currently translated at 26.9% (50 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/es/ * Translated using Weblate (Spanish) Currently translated at 34.9% (65 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/es/ * Translated using Weblate (Spanish) Currently translated at 34.9% (65 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/es/
2019-02-13 13:39:42 +01:00
msgstr[0] "One like"
msgstr[1] "{0} likes"
msgid "I don't like this anymore"
msgstr ""
msgid "Add yours"
msgstr ""
msgid "One boost"
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 19:31:47 +02:00
msgid_plural "{0} boosts"
msgstr[0] ""
msgstr[1] ""
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:144
msgid "Content warning"
msgstr ""
msgid "Your comment"
msgstr ""
msgid "Submit comment"
msgstr ""
msgid "No comments yet. Be the first to react!"
msgstr ""
msgid "Invalid CSRF token"
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."
msgstr ""
msgid "Page not found"
msgstr ""
msgid "We couldn't find this page."
msgstr ""
msgid "The link that led you here may be broken."
msgstr ""
msgid "The content you sent can't be processed."
msgstr ""
msgid "Maybe it was too long."
msgstr ""
msgid "You are not authorized."
msgstr ""
msgid "Internal server error"
msgstr ""
msgid "Something broke on our side."
msgstr ""
2019-01-28 13:12:56 +01:00
msgid "Sorry about that. If you think this is a bug, please report it."
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Edit \"{}\""
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Description"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid ""
"You can upload images to your gallery, to use them as blog icons, or banners."
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Upload images"
msgstr ""
2019-01-28 13:12:56 +01:00
msgid "Blog icon"
msgstr ""
2019-01-28 13:12:56 +01:00
msgid "Blog banner"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Update blog"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Be very careful, any action taken here can't be reversed."
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Permanently delete this blog"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "New Blog"
msgstr ""
msgid "Create a blog"
msgstr ""
msgid "Create blog"
msgstr ""
msgid "{}'s icon"
msgstr ""
msgid "New article"
msgstr ""
msgid "There's one author on this blog: "
msgid_plural "There are {0} authors on this blog: "
msgstr[0] ""
msgstr[1] ""
msgid "No posts to see here yet."
msgstr ""
msgid "Articles tagged \"{0}\""
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "There are currently no articles with such a tag"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "I'm from this instance"
msgstr ""
msgid "I'm from another instance"
msgstr ""
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr ""
msgid "Continue to your instance"
msgstr ""
msgid "Upload"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "You don't have any media yet."
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Content warning: {0}"
msgstr ""
msgid "Delete"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Details"
msgstr ""
2019-01-28 13:12:56 +01:00
msgid "Media upload"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Useful for visually impaired people, as well as licensing information"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Leave it empty, if none is needed"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "File"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Send"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Media details"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Go back to the gallery"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Markdown syntax"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Copy it into your articles, to insert this media:"
2019-01-28 13:12:56 +01:00
msgstr ""
msgid "Use as an avatar"
2019-01-28 13:12:56 +01:00
msgstr ""
Pull i18n from Funkwhale's weblate (#439) * Added translation using Weblate (Arabic) * Translated using Weblate (Arabic) Currently translated at 66.7% (124 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ar/ * Translated using Weblate (English) Currently translated at 100.0% (186 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/en/ * Translated using Weblate (Japanese) Currently translated at 100.0% (186 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ja/ * Translated using Weblate (Arabic) Currently translated at 68.8% (128 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ar/ * Translated using Weblate (Norwegian Bokmål) Currently translated at 96.8% (180 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/nb/ * Translated using Weblate (Arabic) Currently translated at 95.7% (178 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ar/ * Added translation using Weblate (Spanish) * Translated using Weblate (Spanish) Currently translated at 3.8% (7 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/es/ * Added translation using Weblate (Portuguese (Portugal)) * Translated using Weblate (Arabic) Currently translated at 99.5% (185 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/ar/ * Translated using Weblate (Portuguese (Portugal)) Currently translated at 95.7% (178 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/pt_PT/ * Translated using Weblate (Spanish) Currently translated at 26.9% (50 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/es/ * Translated using Weblate (Spanish) Currently translated at 34.9% (65 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/es/ * Translated using Weblate (Spanish) Currently translated at 34.9% (65 of 186 strings) Translation: Plume/Plume Translate-URL: https://translate.funkwhale.audio/projects/plume/Plume/es/
2019-02-13 13:39:42 +01:00
#~ msgid "One Boost"
#~ msgid_plural "{0} Boosts"
#~ msgstr[0] "One boost"
#~ msgstr[1] "{0} boosts"
#~ msgid "One follower"
#~ msgid_plural "{0} followers"
#~ msgstr[0] "One follower"
#~ msgstr[1] "{0} followers"
#~ msgid "One author in this blog: "
#~ msgid_plural "{0} authors in this blog: "
#~ msgstr[0] "This blog has one author "
#~ msgstr[1] "There are {0} authors on this blog "
#~ msgid "One article in this blog"
#~ msgid_plural "{0} articles in this blog"
#~ msgstr[0] "This blog has one article"
#~ msgstr[1] "This blog has {0} articles"