diff --git a/CHANGELOG.md b/CHANGELOG.md index f6a8bfcb..efa29287 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ ## [Unreleased] - ReleaseDate +## [[0.7.0]] - 2022-01-02 + ### Added - Allow `dir` attributes for LtoR text in RtoL document (#860) @@ -11,6 +13,7 @@ - Proxy support (#829) - Riker a actor system library (#870) - (request-target) and Host header in HTTP Signature (#872) +- Default log levels for RUST_LOG (#885, #886, #919) ### Changed @@ -19,6 +22,7 @@ - Update Rust version to nightly-2021-11-27 (#961) - Upgrade Tantivy to 0.13.3 and lindera-tantivy to 0.7.1 (#878) - Run searcher on actor system (#870) +- Extract a function to calculate posts' ap_url and share it with some places (#918) - Use article title as its slug instead of capitalizing and inserting hyphens (#920) - Sign GET requests to other instances (#957) @@ -31,6 +35,9 @@ - Update post's ActivityPub id when published by update (#915) - Calculate media URI properly even when MEDIA_UPLOAD_DIRECTORY configured (#916) - Prevent duplicated posts in 'all' timeline (#917) +- Draw side line for blockquote on start (#933) +- Fix URIs of posts on Mastodon (#947) +- Place edit link proper position (#956, #963, #964) ## [[0.6.0]] - 2020-12-29 @@ -211,7 +218,8 @@ - Ability to create multiple blogs -[Unreleased]: https://github.com/Plume-org/Plume/compare/0.6.0...HEAD +[Unreleased]: https://github.com/Plume-org/Plume/compare/0.7.0...HEAD +[[0.7.0]]: https://github.com/Plume-org/Plume/compare/0.6.0...0.7.0 [[0.6.0]]: https://github.com/Plume-org/Plume/compare/0.5.0...0.6.0 [0.5.0]: https://github.com/Plume-org/Plume/compare/0.4.0-alpha-4...0.5.0 [0.4.0]: https://github.com/Plume-org/Plume/compare/0.3.0-alpha-2...0.4.0-alpha-4 diff --git a/Cargo.lock b/Cargo.lock index 0bd41319..47a8d649 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2966,7 +2966,7 @@ dependencies = [ [[package]] name = "plume" -version = "0.6.1-dev" +version = "0.7.0" dependencies = [ "activitypub", "askama_escape", @@ -3008,7 +3008,7 @@ dependencies = [ [[package]] name = "plume-api" -version = "0.6.1-dev" +version = "0.7.0" dependencies = [ "serde 1.0.130", "serde_derive", @@ -3016,7 +3016,7 @@ dependencies = [ [[package]] name = "plume-cli" -version = "0.6.1-dev" +version = "0.7.0" dependencies = [ "clap", "diesel", @@ -3027,7 +3027,7 @@ dependencies = [ [[package]] name = "plume-common" -version = "0.6.1-dev" +version = "0.7.0" dependencies = [ "activitypub", "activitystreams-derive", @@ -3055,7 +3055,7 @@ dependencies = [ [[package]] name = "plume-front" -version = "0.6.1-dev" +version = "0.7.0" dependencies = [ "console_error_panic_hook", "gettext", @@ -3072,7 +3072,7 @@ dependencies = [ [[package]] name = "plume-macro" -version = "0.6.1-dev" +version = "0.7.0" dependencies = [ "proc-macro2 0.4.30", "quote 0.6.13", @@ -3081,7 +3081,7 @@ dependencies = [ [[package]] name = "plume-models" -version = "0.6.1-dev" +version = "0.7.0" dependencies = [ "activitypub", "ammonia", diff --git a/Cargo.toml b/Cargo.toml index 41d6d163..4aa8e9a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Plume contributors"] name = "plume" -version = "0.6.1-dev" +version = "0.7.0" repository = "https://github.com/Plume-org/Plume" edition = "2018" diff --git a/plume-api/Cargo.toml b/plume-api/Cargo.toml index 07e77fc0..8d6d9f9a 100644 --- a/plume-api/Cargo.toml +++ b/plume-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "plume-api" -version = "0.6.1-dev" +version = "0.7.0" authors = ["Plume contributors"] edition = "2018" diff --git a/plume-cli/Cargo.toml b/plume-cli/Cargo.toml index 23bed8c0..82ecb6e5 100644 --- a/plume-cli/Cargo.toml +++ b/plume-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "plume-cli" -version = "0.6.1-dev" +version = "0.7.0" authors = ["Plume contributors"] edition = "2018" diff --git a/plume-common/Cargo.toml b/plume-common/Cargo.toml index a67f748e..1d6cd1ab 100644 --- a/plume-common/Cargo.toml +++ b/plume-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "plume-common" -version = "0.6.1-dev" +version = "0.7.0" authors = ["Plume contributors"] edition = "2018" diff --git a/plume-front/Cargo.toml b/plume-front/Cargo.toml index 8e085ef3..29542eb2 100644 --- a/plume-front/Cargo.toml +++ b/plume-front/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "plume-front" -version = "0.6.1-dev" +version = "0.7.0" authors = ["Plume contributors"] edition = "2018" diff --git a/plume-macro/Cargo.toml b/plume-macro/Cargo.toml index 499fc51c..498abcad 100644 --- a/plume-macro/Cargo.toml +++ b/plume-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "plume-macro" -version = "0.6.1-dev" +version = "0.7.0" authors = ["Trinity Pointard "] edition = "2018" description = "Plume procedural macros" diff --git a/plume-models/Cargo.toml b/plume-models/Cargo.toml index 9afdcf8a..9c0f9f40 100644 --- a/plume-models/Cargo.toml +++ b/plume-models/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "plume-models" -version = "0.6.1-dev" +version = "0.7.0" authors = ["Plume contributors"] edition = "2018" diff --git a/po/plume-front/af.po b/po/plume-front/af.po index 106dd4cd..d6678bda 100644 --- a/po/plume-front/af.po +++ b/po/plume-front/af.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Afrikaans\n" "Language: af_ZA\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "" diff --git a/po/plume-front/ar.po b/po/plume-front/ar.po index 898ee7cf..44e57e2a 100644 --- a/po/plume-front/ar.po +++ b/po/plume-front/ar.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Language: ar_SA\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "فتح محرر النصوص الغني" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "العنوان" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "العنوان الثانوي أو الملخص" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "اكتب مقالك هنا. ماركداون مُدَعَّم." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "يتبقا {} حرفا تقريبا" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "الوسوم" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "الرخصة" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "الغلاف" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "هذه مسودة" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "نشر كتابا" diff --git a/po/plume-front/bg.po b/po/plume-front/bg.po index 2fe9ee2d..cd1af009 100644 --- a/po/plume-front/bg.po +++ b/po/plume-front/bg.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" -msgstr "" +msgstr "Искате ли да активирате локално автоматично запаметяване, последно редактирано в {}?" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Отворете редактора с богат текст" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Заглавие" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Подзаглавие или резюме" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Напишете статията си тук. Поддържа се Markdown." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Остават {} знака вляво" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Етикети" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Лиценз" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Основно изображение" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Това е проект" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Публикувай" diff --git a/po/plume-front/ca.po b/po/plume-front/ca.po index b149908a..f461f701 100644 --- a/po/plume-front/ca.po +++ b/po/plume-front/ca.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Obre l’editor de text enriquit" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Títol" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Subtítol o resum" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Escriviu el vostre article ací. Podeu fer servir el Markdown." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Queden uns {} caràcters" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Etiquetes" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Llicència" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Coberta" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Açò és un esborrany" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Publica" diff --git a/po/plume-front/cs.po b/po/plume-front/cs.po index ca045535..038d69a4 100644 --- a/po/plume-front/cs.po +++ b/po/plume-front/cs.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2022-01-02 11:39\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Otevřít editor formátovaného textu" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Nadpis" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Podnadpis, nebo shrnutí" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Sem napište svůj článek. Markdown je podporován." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Zbývá kolem {} znaků" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Tagy" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licence" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Titulka" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Tohle je koncept" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Zveřejnit" diff --git a/po/plume-front/da.po b/po/plume-front/da.po index 590f644d..c24f8421 100644 --- a/po/plume-front/da.po +++ b/po/plume-front/da.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Danish\n" "Language: da_DK\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "" diff --git a/po/plume-front/de.po b/po/plume-front/de.po index c5357bad..70bb867b 100644 --- a/po/plume-front/de.po +++ b/po/plume-front/de.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-12-11 15:00\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" -msgstr "" +msgstr "Möchten Sie die lokale automatische Speicherung laden, die zuletzt um {} bearbeitet wurde?" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr " Rich Text Editor (RTE) öffnen" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Titel" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Untertitel oder Zusammenfassung" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Schreiben deinen Artikel hier. Markdown wird unterstützt." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Ungefähr {} Zeichen übrig" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Schlagwörter" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Lizenz" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Einband" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Dies ist ein Entwurf" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Veröffentlichen" diff --git a/po/plume-front/el.po b/po/plume-front/el.po index 706071ba..652e3300 100644 --- a/po/plume-front/el.po +++ b/po/plume-front/el.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "" diff --git a/po/plume-front/en.po b/po/plume-front/en.po index 453acb61..b456b72c 100644 --- a/po/plume-front/en.po +++ b/po/plume-front/en.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: English\n" "Language: en_US\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "" diff --git a/po/plume-front/eo.po b/po/plume-front/eo.po index b23cc071..b0ef01bf 100644 --- a/po/plume-front/eo.po +++ b/po/plume-front/eo.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Esperanto\n" "Language: eo_UY\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Malfermi la riĉan redaktilon" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Titolo" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Verku vian artikolon ĉi tie. Markdown estas subtenita." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Proksimume {} signoj restantaj" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Etikedoj" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Permesilo" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Kovro" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Malfinias" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Eldoni" diff --git a/po/plume-front/es.po b/po/plume-front/es.po index cfbd724d..d01602a2 100644 --- a/po/plume-front/es.po +++ b/po/plume-front/es.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2022-01-02 11:39\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" -msgstr "" +msgstr "¿Quieres cargar el guardado automático local editado por última vez en {}?" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Abrir el editor de texto enriquecido" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Título" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Subtítulo, o resumen" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Escriba su artículo aquí. Puede utilizar Markdown." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Quedan unos {} caracteres" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Etiquetas" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licencia" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Cubierta" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Esto es un borrador" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Publicar" diff --git a/po/plume-front/fa.po b/po/plume-front/fa.po index 5d6b22e0..4cd7b406 100644 --- a/po/plume-front/fa.po +++ b/po/plume-front/fa.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-12-11 15:00\n" "Last-Translator: \n" "Language-Team: Persian\n" "Language: fa_IR\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" -msgstr "" +msgstr "آیا می‌خواهید نسخهٔ ذخیره شدهٔ خودکار محلّی از آخرین ویرایش در {} را بار کنید؟" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "باز کردن ویرایش‌گر غنی" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "عنوان" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "زیرعنوان، یا چکیده" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." -msgstr "مقاله را اینجا بنویسید. از مارک‌داون پشتیبانی می‌شود." +msgstr "مقاله‌تان را این‌جا بنویسید. از مارک‌داون پشتیبانی می‌شود." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "نزدیک به {} حرف باقی مانده است" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "برچسب‌ها" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "پروانه" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" -msgstr "تصویر شاخص" +msgstr "جلد" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "این، یک پیش‌نویس است" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "انتشار" diff --git a/po/plume-front/fi.po b/po/plume-front/fi.po index f8f0bedd..61bbb036 100644 --- a/po/plume-front/fi.po +++ b/po/plume-front/fi.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Avaa edistynyt tekstieditori" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Otsikko" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Alaotsikko tai tiivistelmä" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Kirjoita artikkelisi tähän. Markdown -kuvauskieli on tuettu." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "%{count} merkkiä jäljellä" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Tagit" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Lisenssi" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Kansi" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Tämä on luonnos" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Julkaise" diff --git a/po/plume-front/fr.po b/po/plume-front/fr.po index 98ee0eab..a7b12ab3 100644 --- a/po/plume-front/fr.po +++ b/po/plume-front/fr.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-12-11 15:00\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" -msgstr "" +msgstr "Voulez vous charger la sauvegarde automatique locale, éditée la dernière fois à {}?" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Ouvrir l'éditeur de texte avancé" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Titre" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Sous-titre ou résumé" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Écrivez votre article ici. Vous pouvez utiliser du Markdown." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Environ {} caractères restant" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Étiquettes" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licence" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Illustration" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Ceci est un brouillon" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Publier" diff --git a/po/plume-front/gl.po b/po/plume-front/gl.po index ab062f04..7eb7abf1 100644 --- a/po/plume-front/gl.po +++ b/po/plume-front/gl.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Galician\n" "Language: gl_ES\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" -msgstr "" +msgstr "Queres cargar a última copia gardada editada o {}?" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Abre o editor de texto enriquecido" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Título" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Subtítulo, ou resumo" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Escribe aquí o teu artigo: podes utilizar Markdown." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Dispós de {} caracteres" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Etiquetas" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licenza" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Portada" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Este é un borrador" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Publicar" diff --git a/po/plume-front/he.po b/po/plume-front/he.po index 0e326a1e..c33d60c1 100644 --- a/po/plume-front/he.po +++ b/po/plume-front/he.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "" diff --git a/po/plume-front/hi.po b/po/plume-front/hi.po index f4707c45..8013761e 100644 --- a/po/plume-front/hi.po +++ b/po/plume-front/hi.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Language: hi_IN\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "शीर्षक" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "अपना आर्टिकल या लेख यहाँ लिखें. Markdown उपलब्ध है." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "लगभग {} अक्षर बाकी हैं" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "टैग्स" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "लाइसेंस" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "पब्लिश करें" diff --git a/po/plume-front/hr.po b/po/plume-front/hr.po index fde13e94..be4167c1 100644 --- a/po/plume-front/hr.po +++ b/po/plume-front/hr.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Croatian\n" "Language: hr_HR\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Naslov" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Tagovi" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licenca" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Objavi" diff --git a/po/plume-front/hu.po b/po/plume-front/hu.po index fca97b8a..97bfcf5a 100644 --- a/po/plume-front/hu.po +++ b/po/plume-front/hu.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "" diff --git a/po/plume-front/it.po b/po/plume-front/it.po index 655ed56a..bb4963dc 100644 --- a/po/plume-front/it.po +++ b/po/plume-front/it.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Apri il compositore di testo avanzato" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Titolo" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Sottotitolo, o sommario" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Scrivi qui il tuo articolo. È supportato il Markdown." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Circa {} caratteri rimasti" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Etichette" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licenza" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Copertina" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Questa è una bozza" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Pubblica" diff --git a/po/plume-front/ja.po b/po/plume-front/ja.po index 7b4bd287..723c51a4 100644 --- a/po/plume-front/ja.po +++ b/po/plume-front/ja.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "リッチテキストエディターを開く" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "タイトル" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "サブタイトル、または概要" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "投稿をここに書きます。Markdown がサポートされています。" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "残り約 {} 文字" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "タグ" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "ライセンス" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "カバー" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "これは下書きです" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "公開" diff --git a/po/plume-front/ko.po b/po/plume-front/ko.po index b325ad26..45313bb1 100644 --- a/po/plume-front/ko.po +++ b/po/plume-front/ko.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "" diff --git a/po/plume-front/nl.po b/po/plume-front/nl.po index 31bf98ba..9027cec8 100644 --- a/po/plume-front/nl.po +++ b/po/plume-front/nl.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" -msgstr "" +msgstr "Wilt u de lokale auto-opslaan laden? Laatst bewerkt om: {}" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Open de rich-text editor" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Titel" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Ondertitel of samenvatting" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Schrijf hier je artikel. Markdown wordt ondersteund." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Ongeveer {} tekens over" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Tags" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licentie" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Hoofdafbeelding" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Dit is een concept" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Publiceren" diff --git a/po/plume-front/no.po b/po/plume-front/no.po index 93697f3a..08b51c4c 100644 --- a/po/plume-front/no.po +++ b/po/plume-front/no.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" -msgstr "" +msgstr "Lisens" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" -msgstr "" +msgstr "Publiser" diff --git a/po/plume-front/pl.po b/po/plume-front/pl.po index fa02614e..38460c7b 100644 --- a/po/plume-front/pl.po +++ b/po/plume-front/pl.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Otwórz edytor tekstu sformatowanego" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Tytuł" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Podtytuł, lub podsumowanie" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Napisz swój artykuł tutaj. Markdown jest obsługiwany." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Pozostało w okolicy {} znaków" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Tagi" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licencja" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Okładka" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "To jest szkic" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Publikuj" diff --git a/po/plume-front/plume-front.pot b/po/plume-front/plume-front.pot index 5a9d490d..1c67eeac 100644 --- a/po/plume-front/plume-front.pot +++ b/po/plume-front/plume-front.pot @@ -12,46 +12,46 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -# plume-front/src/editor.rs:188 +# plume-front/src/editor.rs:177 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:281 +# plume-front/src/editor.rs:331 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:314 +# plume-front/src/editor.rs:388 msgid "Title" msgstr "" -# plume-front/src/editor.rs:318 +# plume-front/src/editor.rs:392 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:325 +# plume-front/src/editor.rs:399 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:336 +# plume-front/src/editor.rs:410 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:413 +# plume-front/src/editor.rs:519 msgid "Tags" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:520 msgid "License" msgstr "" -# plume-front/src/editor.rs:417 +# plume-front/src/editor.rs:526 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:437 +# plume-front/src/editor.rs:560 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:444 +# plume-front/src/editor.rs:571 msgid "Publish" msgstr "" diff --git a/po/plume-front/pt.po b/po/plume-front/pt.po index 94a5dbd4..50120297 100644 --- a/po/plume-front/pt.po +++ b/po/plume-front/pt.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-12-11 15:00\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" -msgstr "" +msgstr "Você quer carregar o último conteúdo salvo localmente editado em {}?" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Abrir o editor de rich text" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Título" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Subtítulo ou resumo" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Escreva seu artigo aqui. Markdown é suportado." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Cerca de {} caracteres restantes" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Tags" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licença" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Capa" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Isso é um rascunho" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Publicar" diff --git a/po/plume-front/ro.po b/po/plume-front/ro.po index 885f4004..8384fd81 100644 --- a/po/plume-front/ro.po +++ b/po/plume-front/ro.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Deschide editorul de text" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Titlu" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Scrie articolul tău aici. Markdown este acceptat." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "În apropiere de {} caractere rămase" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Etichete" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licenţă" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Coperta" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Aceasta este o ciornă" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Publică" diff --git a/po/plume-front/ru.po b/po/plume-front/ru.po index 54572c87..c81f2a77 100644 --- a/po/plume-front/ru.po +++ b/po/plume-front/ru.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" -msgstr "" +msgstr "Хотите ли вы загрузить локальное автосохранение, сделанное в {}?" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" -msgstr "" +msgstr "Открыть в визуальном редакторе" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Заголовок" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" -msgstr "" +msgstr "Подзаголовок или резюме" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Пишите свою статью здесь. Markdown поддерживается." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Осталось около {} символов" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Теги" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" -msgstr "" +msgstr "Лицензия" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Обложка" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Это черновик" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Опубликовать" diff --git a/po/plume-front/sat.po b/po/plume-front/sat.po index a39bd908..f3b01724 100644 --- a/po/plume-front/sat.po +++ b/po/plume-front/sat.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Santali\n" "Language: sat_IN\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" -msgstr "" +msgstr "ᱟᱢ ᱪᱮᱫ ᱢᱟᱲᱟᱝ {} ᱨᱮ ᱥᱟᱯᱲᱟᱣ ᱟᱠᱟᱱ ᱞᱚᱠᱟᱞ ᱚᱴᱚᱥᱮᱣ ᱞᱟᱫᱮ ᱥᱟᱱᱟᱢ ᱠᱟᱱᱟ ᱥᱮ?" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" -msgstr "ᱨᱤᱪ ᱚᱞ ᱥᱟᱯᱟᱣᱤᱡ ᱠᱷᱩᱞᱟᱹᱭ ᱢᱮᱸ" +msgstr "ᱨᱤᱪ ᱚᱞ ᱥᱟᱯᱟᱣᱤᱡ ᱠᱷᱩᱞᱟᱹᱭ ᱢᱮ" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "ᱴᱭᱴᱚᱞ" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "ᱥᱟᱹᱵᱴᱟᱭᱴᱟᱹᱞ, ᱟᱨ ᱵᱟᱝ ᱥᱟᱹᱢᱢᱟᱨᱭ" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." -msgstr "ᱟᱢᱟᱜ ᱚᱱᱚᱞ ᱱᱚᱰᱮ ᱚᱞ ᱛᱟᱢ ᱾ ᱪᱤᱱᱦᱟᱹ ᱥᱟᱯᱯᱚᱴ ᱜᱮᱭᱟ ᱾" +msgstr "ᱟᱢᱟᱜ ᱚᱱᱚᱞ ᱱᱚᱰᱮ ᱚᱞ ᱛᱟᱢ ᱾ ᱪᱤᱱᱦᱟᱹ ᱥᱟᱯᱚᱴ ᱜᱮᱭᱟ ᱾" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "ᱡᱷᱚᱛᱚ ᱨᱮ {} ᱡᱤᱱᱤᱥ ᱵᱟᱧᱪᱟᱣᱠᱟᱱᱟ" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" -msgstr "ᱴᱮᱜᱥ" +msgstr "ᱴᱮᱜᱽᱥ" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" -msgstr "ᱞᱚᱭᱥᱮᱸᱱᱥ" +msgstr "ᱞᱚᱭᱥᱮᱱᱥ" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" -msgstr "ᱠᱚᱵᱷᱚᱨ" +msgstr "ᱢᱚᱭᱞᱟᱹᱴ" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "ᱱᱚᱶᱟ ᱫᱚ ᱰᱨᱟᱯᱷᱼᱴ ᱠᱟᱱᱟ" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "ᱯᱟᱨᱥᱟᱞ" diff --git a/po/plume-front/si.po b/po/plume-front/si.po index 1f3eb6fb..2b649f51 100644 --- a/po/plume-front/si.po +++ b/po/plume-front/si.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Sinhala\n" "Language: si_LK\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" -msgstr "" +msgstr "මාතෘකාව" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" -msgstr "" +msgstr "බලපත්‍රය" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "" diff --git a/po/plume-front/sk.po b/po/plume-front/sk.po index e726f34e..4e01d1ca 100644 --- a/po/plume-front/sk.po +++ b/po/plume-front/sk.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-12-11 15:00\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Language: sk_SK\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" -msgstr "" +msgstr "Chceš načítať automaticky uloženú zálohu, s poslednou úpravou {}?" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Otvor editor formátovaného textu" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Nadpis" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Zhrnutie, alebo podnadpis" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Tu napíš svoj článok. Markdown je podporovaný." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Zostáva asi {} znakov" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Štítky" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licencia" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Obálka" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Toto je koncept" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Zverejniť" diff --git a/po/plume-front/sl.po b/po/plume-front/sl.po index 35b86d6d..2b37a3eb 100644 --- a/po/plume-front/sl.po +++ b/po/plume-front/sl.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Naslov" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Oznake" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licenca" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "To je osnutek" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Objavi" diff --git a/po/plume-front/sr.po b/po/plume-front/sr.po index 1c5774b8..b5deb77b 100644 --- a/po/plume-front/sr.po +++ b/po/plume-front/sr.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Serbian (Latin)\n" "Language: sr_CS\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Otvori uređivač sa stilizacijom" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Naslov" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Podnaslov, ili sažetak" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Napišite vaš članak ovde. Na raspolaganju vam je Markdown." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Preostalo oko {} znakova" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Markeri" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licenca" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Naslovna strana" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Ovo je nacrt" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Objavi" diff --git a/po/plume-front/sv.po b/po/plume-front/sv.po index 88dfbab6..5fd47098 100644 --- a/po/plume-front/sv.po +++ b/po/plume-front/sv.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Titel" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Skriv din artikel här. Markdown stöds." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Ungefär {} karaktärer kvar" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Taggar" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Licens" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Omslag" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Publicera" diff --git a/po/plume-front/tr.po b/po/plume-front/tr.po index f8c3e3b0..71d4995b 100644 --- a/po/plume-front/tr.po +++ b/po/plume-front/tr.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Zengin metin editörünü (RTE) aç" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Başlık" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "Alt başlık, veya açıklama" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "Makaleni buraya yaz. Markdown kullanabilirsin." -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "Yaklaşık {} karakter kaldı" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "Etiketler" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "Lisans" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "Kapak" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "Bu bir taslaktır" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "Yayınla" diff --git a/po/plume-front/uk.po b/po/plume-front/uk.po index c293fd98..2f4b35e1 100644 --- a/po/plume-front/uk.po +++ b/po/plume-front/uk.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "" diff --git a/po/plume-front/ur.po b/po/plume-front/ur.po new file mode 100644 index 00000000..a3eae779 --- /dev/null +++ b/po/plume-front/ur.po @@ -0,0 +1,63 @@ +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: 2021-05-05 18:31\n" +"Last-Translator: \n" +"Language-Team: Urdu (Pakistan)\n" +"Language: ur_PK\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-Crowdin-Project: plume\n" +"X-Crowdin-Project-ID: 352097\n" +"X-Crowdin-Language: ur-PK\n" +"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" +"X-Crowdin-File-ID: 12\n" + +# plume-front/src/editor.rs:188 +msgid "Do you want to load the local autosave last edited at {}?" +msgstr "" + +# plume-front/src/editor.rs:281 +msgid "Open the rich text editor" +msgstr "" + +# plume-front/src/editor.rs:314 +msgid "Title" +msgstr "" + +# plume-front/src/editor.rs:318 +msgid "Subtitle, or summary" +msgstr "" + +# plume-front/src/editor.rs:325 +msgid "Write your article here. Markdown is supported." +msgstr "" + +# plume-front/src/editor.rs:336 +msgid "Around {} characters left" +msgstr "" + +# plume-front/src/editor.rs:413 +msgid "Tags" +msgstr "" + +# plume-front/src/editor.rs:414 +msgid "License" +msgstr "" + +# plume-front/src/editor.rs:417 +msgid "Cover" +msgstr "" + +# plume-front/src/editor.rs:437 +msgid "This is a draft" +msgstr "" + +# plume-front/src/editor.rs:444 +msgid "Publish" +msgstr "" + diff --git a/po/plume-front/vi.po b/po/plume-front/vi.po index 2e09762f..d30c366c 100644 --- a/po/plume-front/vi.po +++ b/po/plume-front/vi.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -17,47 +17,47 @@ msgstr "" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" msgstr "" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" msgstr "Văn bản của tôi" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" msgstr "Tiêu Châu" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" msgstr "" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." msgstr "" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" msgstr "" -# plume-front/src/editor.rs:414 +# plume-front/src/editor.rs:413 msgid "Tags" msgstr "" -# plume-front/src/editor.rs:415 +# plume-front/src/editor.rs:414 msgid "License" msgstr "" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" msgstr "" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" msgstr "" diff --git a/po/plume-front/zh.po b/po/plume-front/zh.po index e71ea5d0..7b6ecf92 100644 --- a/po/plume-front/zh.po +++ b/po/plume-front/zh.po @@ -3,61 +3,61 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-12-11 15:00\n" "Last-Translator: \n" -"Language-Team: Chinese Simplified\n" -"Language: zh_CN\n" +"Language-Team: Chinese Traditional\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Crowdin-Project: plume\n" "X-Crowdin-Project-ID: 352097\n" -"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-Language: zh-TW\n" "X-Crowdin-File: /master/po/plume-front/plume-front.pot\n" "X-Crowdin-File-ID: 12\n" -# plume-front/src/editor.rs:189 +# plume-front/src/editor.rs:188 msgid "Do you want to load the local autosave last edited at {}?" -msgstr "" +msgstr "你想要載入上次在 {} 编辑的本地自動保存嗎?" -# plume-front/src/editor.rs:282 +# plume-front/src/editor.rs:281 msgid "Open the rich text editor" -msgstr "打开富文本编辑器" +msgstr "開啟 RTF 編輯器" -# plume-front/src/editor.rs:315 +# plume-front/src/editor.rs:314 msgid "Title" -msgstr "标题" +msgstr "標題" -# plume-front/src/editor.rs:319 +# plume-front/src/editor.rs:318 msgid "Subtitle, or summary" -msgstr "副标题或摘要" +msgstr "副標題,或摘要" -# plume-front/src/editor.rs:326 +# plume-front/src/editor.rs:325 msgid "Write your article here. Markdown is supported." -msgstr "在这里写下您的文章。支持 Markdown 语法。" +msgstr "在這裡寫下您的文章。支援 Markdown 語法。" -# plume-front/src/editor.rs:337 +# plume-front/src/editor.rs:336 msgid "Around {} characters left" -msgstr "大约剩余 {} 可输入字符" +msgstr "大約還可輸入 {} 字符" + +# plume-front/src/editor.rs:413 +msgid "Tags" +msgstr "標籤" # plume-front/src/editor.rs:414 -msgid "Tags" -msgstr "标签" - -# plume-front/src/editor.rs:415 msgid "License" -msgstr "许可协议" +msgstr "授權條款" -# plume-front/src/editor.rs:418 +# plume-front/src/editor.rs:417 msgid "Cover" msgstr "封面" -# plume-front/src/editor.rs:438 +# plume-front/src/editor.rs:437 msgid "This is a draft" -msgstr "这是一个草稿" +msgstr "這是草稿" -# plume-front/src/editor.rs:445 +# plume-front/src/editor.rs:444 msgid "Publish" -msgstr "发布" +msgstr "發布" diff --git a/po/plume/af.po b/po/plume/af.po index 7c06fa75..deeb3d4c 100644 --- a/po/plume/af.po +++ b/po/plume/af.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Afrikaans\n" "Language: af_ZA\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -177,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -447,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -479,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -552,10 +543,7 @@ 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." +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 "You are not authorized." @@ -639,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -662,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -674,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -756,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -816,9 +787,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -875,9 +844,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -886,9 +853,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -903,8 +868,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -966,9 +930,7 @@ msgstr "" 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." +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" @@ -1048,3 +1010,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/ar.po b/po/plume/ar.po index 1f955f11..82f68fb5 100644 --- a/po/plume/ar.po +++ b/po/plume/ar.po @@ -3,15 +3,14 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Language: ar_SA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" +"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" "X-Crowdin-Project: plume\n" "X-Crowdin-Project-ID: 352097\n" "X-Crowdin-Language: ar\n" @@ -66,59 +65,59 @@ msgstr "الصفحة التالية" msgid "Optional" msgstr "اختياري" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "لإنشاء مدونة جديدة، تحتاج إلى تسجيل الدخول" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "توجد مدونة تحمل نفس العنوان." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "تم إنشاء مدونتك بنجاح!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "تم حذف مدونتك." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "لا يسمح لك بحذف هذه المدونة." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "لا يسمح لك بتعديل هذه المدونة." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "لا يمكنك استخدام هذه الوسائط كأيقونة للمدونة." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "لا يمكنك استخدام هذه الوسائط كشعار للمدونة." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "تم تحديث معلومات مُدوّنتك." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "تم نشر تعليقك." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "تم حذف تعليقك." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "تم حفظ إعدادات المثيل." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "تم إلغاء حظر {}." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "تم حظر {}." @@ -126,51 +125,51 @@ msgstr "تم حظر {}." msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "البريد الإلكتروني محظور" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "لا يسمح لك القيام بهذا الإجراء." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "تم." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "يجب عليك تسجيل الدخول أولا للإعجاب بهذا المقال" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "لقد تم حذف وسائطك." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "لا يسمح لك بحذف هذه الوسائط." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "تم تحديث صورتك الشخصية." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "لا يسمح لك باستعمال هذه الوسائط." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "يجب عليك تسجيل الدخول أولا لعرض الإشعارات" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "هذا المقال ليس منشورا بعد." @@ -178,118 +177,112 @@ msgstr "هذا المقال ليس منشورا بعد." msgid "To write a new post, you need to be logged in" msgstr "يجب عليك تسجيل الدخول أولا لكتابة مقال جديد" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "لست مِن محرري هذه المدونة." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "منشور جديد" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "تعديل {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "لا يسمح لك بالنشر على هذه المدونة." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "تم تحديث مقالك." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "تم حفظ مقالك." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "مقال جديد" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "لا يسمح لك بحذف هذا المقال." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "تم حذف مقالك." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "لم يتم العثور على المقال الذي تحاول حذفه. ربما سبق حذفه؟" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "تعذر العثور عن معلومات حسابك. المرجو التحقق من صحة إسم المستخدم." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "يجب عليك تسجيل الدخول أولا للإعادت نشر هذا المقال" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "أنت الآن متصل." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "لقد قمتَ بالخروج للتوّ." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "إعادة تعيين كلمة المرور" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "ها هو رابط إعادة تعيين كلمتك السرية: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "تمت إعادة تعيين كلمتك السرية بنجاح." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "يجب عليك تسجيل الدخول أولاللنفاذ إلى لوح المراقبة" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "أنت لم تعد تتابع {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "أنت الآن تتابع {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "للإشتراك بأحد ما، يجب تسجيل الدخول أولا" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "لتعديل الحساب، يجب تسجيل الدخول أولا" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "تم تحديث ملفك الشخصي." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "تم حذف حسابك." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "لا يمكنك حذف حساب شخص آخر." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "التسجيلات مُغلقة على مثيل الخادم هذ." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "لقد تم إنشاء حسابك. ما عليك إلّا الولوج الآن للتمكّن مِن استعماله." msgid "Media upload" @@ -448,11 +441,8 @@ msgstr "كلمة السر" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"المعذرة، لاكن التسجيل مغلق في هذا المثيل بالدات. يمكنك إجاد مثيل آخر للتسجيل." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "المعذرة، لاكن التسجيل مغلق في هذا المثيل بالدات. يمكنك إجاد مثيل آخر للتسجيل." msgid "{0}'s subscriptions" msgstr "{0} اشتراكات" @@ -481,10 +471,8 @@ msgstr "تعديل حسابك" msgid "Your Profile" msgstr "ملفك الشخصي" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"لتغير الصورة التشخيصية قم أولا برفعها إلى الألبوم ثم قم بتعينها من هنالك." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "لتغير الصورة التشخيصية قم أولا برفعها إلى الألبوم ثم قم بتعينها من هنالك." msgid "Upload an avatar" msgstr "تحميل صورة رمزية" @@ -555,13 +543,8 @@ msgstr "نعتذر عن الإزعاج. إن كنت تضن أن هذه مشكل msgid "Invalid CSRF token" msgstr "الرمز المميز CSRF غير صالح" -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 "" -"هناكخطأم ما في رمز CSRF. تحقق أن الكوكيز مفعل في متصفحك وأعد تحميل الصفحة. " -"إذا واجهتهذا الخطأ منجديد يرجى التبليغ." +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 "هناكخطأم ما في رمز CSRF. تحقق أن الكوكيز مفعل في متصفحك وأعد تحميل الصفحة. إذا واجهتهذا الخطأ منجديد يرجى التبليغ." msgid "You are not authorized." msgstr "ليست لديك التصريحات اللازمة للقيام بذلك." @@ -644,21 +627,13 @@ msgstr "الرخصة الافتراضية للمقال" msgid "Save these settings" msgstr "احفظ هذه الإعدادات" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "إذا كنت تصفح هذا الموقع كزائر ، لا يتم تجميع أي بيانات عنك." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -667,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -679,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -761,11 +729,8 @@ 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 "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "يكنك رفع الوسائط للألبوم ومن ثم نسخ شفرة الماركداون في مقالاتك لإدراجها." msgid "Upload media" msgstr "تحميل وسائط" @@ -830,12 +795,8 @@ msgstr "لم أعد أرغب في دعم هذا" msgid "Boost" msgstr "رقّي" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}قم بتسجيل الدخول{1} أو {2}استخدم حسابك على الفديفرس{3} إن كنت ترغب في " -"التفاعل مع هذا المقال" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}قم بتسجيل الدخول{1} أو {2}استخدم حسابك على الفديفرس{3} إن كنت ترغب في التفاعل مع هذا المقال" msgid "Comments" msgstr "التعليقات" @@ -891,12 +852,8 @@ 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 "" -"لقد أرسلنا رسالة للعنوان الذي توصلنا به من طرفك تضمنرابط لإعادت تحديد كلمة " -"المرور." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "لقد أرسلنا رسالة للعنوان الذي توصلنا به من طرفك تضمنرابط لإعادت تحديد كلمة المرور." msgid "Send password reset link" msgstr "أرسل رابط إعادة تعيين الكلمة السرية" @@ -904,9 +861,7 @@ msgstr "أرسل رابط إعادة تعيين الكلمة السرية" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -921,8 +876,7 @@ msgstr "انشاء مدونة" msgid "Edit \"{}\"" msgstr "تعديل \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "يمكن رفع الصور إلى ألبومك من أجل إستعمالها كأيقونة المدونة أو الشعار." msgid "Upload images" @@ -988,12 +942,8 @@ msgstr "بلوم محرك لامركزي للمدونات." 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 "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 "إقرأ القواعد بالتفصيل" @@ -1072,3 +1022,4 @@ msgstr "نشرتحت هذا الترخيص" msgid "Article license" msgstr "رخصة المقال" + diff --git a/po/plume/bg.po b/po/plume/bg.po index fb3331c3..51e7a81f 100644 --- a/po/plume/bg.po +++ b/po/plume/bg.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" @@ -65,59 +65,59 @@ msgstr "Следваща страница" msgid "Optional" msgstr "По избор" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "За да създадете нов блог, трябва да влезете" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Вече съществува блог със същото име." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Блогът Ви бе успешно създаден!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Блогът ви бе изтрит." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Нямате права за да изтриете този блог." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Нямате права за да редактирате този блог." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Не можете да използвате тази медия като икона на блога." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Не можете да използвате тази медия като банер на блога." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Информацията в блога ви бе актуализирана." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Коментарът е публикуван." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Коментарът бе изтрит." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Настройките на инстанциите са запазени." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "{} са отблокирани." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{} са блокирани." @@ -125,51 +125,51 @@ msgstr "{} са блокирани." msgid "Blocks deleted" msgstr "Блоковете са изтрити" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" -msgstr "" +msgstr "Имейлът вече е блокиран" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "Блокиран Email" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "Не можете да промените собствените си права." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "Нямате права да предприемате това действие." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "Свършен." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "За да харесате публикация, трябва да сте влезли в профила си" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Медията ви е изтрита." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Вие нямате права да изтриете тази медия." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Вашият аватар е актуализиран." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Нямате права да използвате тази медия." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "За да видите известията си, трябва да сте влезли в профила си" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Тази публикация все още не е публикувана." @@ -177,127 +177,113 @@ msgstr "Тази публикация все още не е публикуван msgid "To write a new post, you need to be logged in" msgstr "За да напишете нова публикация, трябва да влезете" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Вие не сте автор на този блог." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Нова публикация" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Редактирано от {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Нямате права за публикуване в този блог." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Статията ви е актуализирана." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Вашата статия е запазена." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Нова статия" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Нямате права за изтриване на тази статия." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Статията е изтрита." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Изглежда, че статията, която се опитвате да изтриете не съществува. Може би " -"вече я няма?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Изглежда, че статията, която се опитвате да изтриете не съществува. Може би вече я няма?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Не можа да се получи достатъчно информация за профила ви. Моля, уверете се, " -"че потребителското ви име е правилно." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Не можа да се получи достатъчно информация за профила ви. Моля, уверете се, че потребителското ви име е правилно." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "За да споделите отново публикация, трябва да сте влезли в профила си" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Вече сте свързани." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Вече сте изключени." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Нулиране на паролата" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Ето и връзка, на която да зададете нова парола: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Вашата парола бе успешно възстановена." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" -msgstr "" -"За да получите достъп до таблото си за управление, трябва да сте влезли в " -"профила си" +msgstr "За да получите достъп до таблото си за управление, трябва да сте влезли в профила си" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Вече не следвате {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Вече следите {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "За да се абонирате за някого, трябва да сте влезли в системата" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" -msgstr "За редактирате профила си, трябва да влезете" +msgstr "За да редактирате профила си, трябва да влезете" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Вашият профил е актуализиран." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Вашият акаунт е изтрит." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Не можете да изтриете профила на някой друг." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "Регистрациите са затворени в тази инстанция." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" -"Вашият акаунт беше създаден. Сега просто трябва да влезете за да можете да " -"го използвате." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "Вашият акаунт беше създаден. Сега просто трябва да влезете за да можете да го използвате." msgid "Media upload" msgstr "Качи медия" @@ -455,12 +441,8 @@ msgstr "Парола" msgid "Password confirmation" msgstr "Потвърждение на парола" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Извиняваме се, но регистрациите са затворени за тази конкретна инстанция. " -"Можете обаче да намерите друга." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Извиняваме се, но регистрациите са затворени за тази конкретна инстанция. Можете обаче да намерите друга." msgid "{0}'s subscriptions" msgstr "{0} абонаменти" @@ -472,9 +454,7 @@ msgid "Your Blogs" msgstr "Вашият Блог" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" -"Все още нямате блог. Създайте свой собствен или поискайте да се присъедините " -"към някой друг." +msgstr "Все още нямате блог. Създайте свой собствен или поискайте да се присъедините към някой друг." msgid "Start a new blog" msgstr "Започнете нов блог" @@ -491,10 +471,8 @@ msgstr "Редактирайте профила си" msgid "Your Profile" msgstr "Вашият профил" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"За да промените аватара си, качете го в галерията и след това го изберете." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "За да промените аватара си, качете го в галерията и след това го изберете." msgid "Upload an avatar" msgstr "Качете аватар" @@ -524,17 +502,13 @@ msgid "Danger zone" msgstr "Опасна зона" msgid "Be very careful, any action taken here can't be cancelled." -msgstr "" -"Бъдете много внимателни, всяко действие предприето тук не може да бъде " -"отменено." +msgstr "Бъдете много внимателни, всяко действие предприето тук не може да бъде отменено." msgid "Delete your account" msgstr "Изтриване на вашият профил" msgid "Sorry, but as an admin, you can't leave your own instance." -msgstr "" -"За съжаление, като администратор не можете да напуснете своята собствена " -"инстанция." +msgstr "За съжаление, като администратор не можете да напуснете своята собствена инстанция." msgid "Latest articles" msgstr "Последни статии" @@ -564,20 +538,13 @@ msgid "Something broke on our side." msgstr "Възникна грешка от ваша страна." msgid "Sorry about that. If you think this is a bug, please report it." -msgstr "" -"Извиняваме се за това. Ако смятате, че това е грешка, моля докладвайте я." +msgstr "Извиняваме се за това. Ако смятате, че това е грешка, моля докладвайте я." msgid "Invalid CSRF token" msgstr "Невалиден CSRF token (маркер)" -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 "" -"Нещо не е наред с вашия CSRF token (маркер). Уверете се, че бисквитките са " -"активирани в браузъра и опитайте да заредите отново тази страница. Ако " -"продължите да виждате това съобщение за грешка, моля, подайте сигнал за това." +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 "Нещо не е наред с вашия CSRF token (маркер). Уверете се, че бисквитките са активирани в браузъра и опитайте да заредите отново тази страница. Ако продължите да виждате това съобщение за грешка, моля, подайте сигнал за това." msgid "You are not authorized." msgstr "Не сте упълномощени." @@ -660,29 +627,14 @@ msgstr "Лиценз по подразбиране" msgid "Save these settings" msgstr "Запаметете тези настройки" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "Ако разглеждате този сайт като посетител, не се събират данни за вас." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"Като регистриран потребител трябва да предоставите потребителско име (което " -"не е задължително да е вашето истинско име), вашия функционален имейл адрес " -"и парола за да можете да влезете, да напишете статии и коментари. " -"Съдържанието, което изпращате се съхранява докато не го изтриете." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Като регистриран потребител трябва да предоставите потребителско име (което не е задължително да е вашето истинско име), вашия функционален имейл адрес и парола за да можете да влезете, да напишете статии и коментари. Съдържанието, което изпращате се съхранява докато не го изтриете." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Когато влезете в системата, съхраняваме две „бисквитки“, една за отваряне на " -"сесията, а втората за да попречи на други хора да действат от ваше име. Ние " -"не съхраняваме никакви други бисквитки." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Когато влезете в системата, съхраняваме две „бисквитки“, една за отваряне на сесията, а втората за да попречи на други хора да действат от ваше име. Ние не съхраняваме никакви други бисквитки." msgid "Blocklisted Emails" msgstr "Имейли в череният списък" @@ -690,14 +642,8 @@ msgstr "Имейли в череният списък" msgid "Email address" msgstr "Имейл адрес" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" -"Имейл адресът, който искате да блокирате. За да блокирате домейните можете " -"да използвате широкообхватен синтаксис, например '*@example.com' блокира " -"всички адреси от example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "Имейл адресът, който искате да блокирате. За да блокирате домейните можете да използвате широкообхватен синтаксис, например '*@example.com' блокира всички адреси от example.com" msgid "Note" msgstr "Бележка" @@ -705,22 +651,14 @@ msgstr "Бележка" msgid "Notify the user?" msgstr "Уведомяване на потребителя?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" -"По желание, показва съобщение на потребителя, когато той се опита да създаде " -"акаунт с този адрес" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "По желание, показва съобщение на потребителя, когато той се опита да създаде акаунт с този адрес" msgid "Blocklisting notification" msgstr "Известие за блокиране от списък" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" -"Съобщението, което трябва да се покаже, когато потребителят се опита да " -"създаде акаунт с този имейл адрес" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "Съобщението, което трябва да се покаже, когато потребителят се опита да създаде акаунт с този имейл адрес" msgid "Add blocklisted address" msgstr "Добавяне на адрес в черният списък" @@ -791,12 +729,8 @@ 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 "" -"Можете да качвате мултимедия в галерията си, а след това да копирате " -"Markdown кода в статиите си за да я вмъкнете." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Можете да качвате мултимедия в галерията си, а след това да копирате Markdown кода в статиите си за да я вмъкнете." msgid "Upload media" msgstr "Качете медия" @@ -853,12 +787,8 @@ msgstr "Не искам повече да го подсилвам" msgid "Boost" msgstr "Подсилване" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Влезте {1}или {2}използвайте акаунта си в Fediverse{3}, за да " -"взаимодействате с тази статия" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Влезте {1}или {2}използвайте акаунта си в Fediverse{3}, за да взаимодействате с тази статия" msgid "Comments" msgstr "Коментари" @@ -876,8 +806,7 @@ msgid "Are you sure?" msgstr "Сигурен ли си?" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"Тази статия все още е проект. Само вие и другите автори можете да я видите." +msgstr "Тази статия все още е проект. Само вие и другите автори можете да я видите." msgid "Only you and other authors can edit this article." msgstr "Само вие и другите автори можете да редактирате тази статия." @@ -915,12 +844,8 @@ 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 "" -"Изпратихме емайл с връзка за възстановяване на паролата ви, на адреса който " -"ни дадохте." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "Изпратихме емайл с връзка за възстановяване на паролата ви, на адреса който ни дадохте." msgid "Send password reset link" msgstr "Изпращане на връзка за възстановяване на парола" @@ -928,12 +853,8 @@ msgstr "Изпращане на връзка за възстановяване msgid "This token has expired" msgstr "Този токен е изтекъл" -msgid "" -"Please start the process again by clicking here." -msgstr "" -"Моля, стартирайте процеса отново като щракнете тук." +msgid "Please start the process again by clicking here." +msgstr "Моля, стартирайте процеса отново като щракнете тук." msgid "New Blog" msgstr "Нов блог" @@ -947,11 +868,8 @@ msgstr "Създайте блог" msgid "Edit \"{}\"" msgstr "редактирам \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Можете да качвате изображения в галерията си и да ги използвате като икони " -"на блога или банери." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Можете да качвате изображения в галерията си и да ги използвате като икони на блога или банери." msgid "Upload images" msgstr "Качване на изображения" @@ -969,9 +887,7 @@ msgid "Update blog" msgstr "Актуализация блог" msgid "Be very careful, any action taken here can't be reversed." -msgstr "" -"Бъдете много внимателни, всяко действие, предприето тук не може да бъде " -"отменено." +msgstr "Бъдете много внимателни, всяко действие, предприето тук не може да бъде отменено." msgid "Are you sure that you want to permanently delete this blog?" msgstr "Сигурни ли сте, че искате да изтриете окончателно този блог?" @@ -1012,16 +928,10 @@ msgid "Plume is a decentralized blogging engine." msgstr "Pluma е децентрализиран двигател за блогове." msgid "Authors can manage multiple blogs, each as its own website." -msgstr "" -"Авторите могат да управляват множество блогове, всеки като свой уникален " -"уебсайт." +msgstr "Авторите могат да управляват множество блогове, всеки като свой уникален уебсайт." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Статиите се виждат и на други Plume инстанции като можете да взаимодействате " -"с тях директно и от други платформи като Mastodon." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Статиите се виждат и на други Plume инстанции като можете да взаимодействате с тях директно и от други платформи като Mastodon." msgid "Read the detailed rules" msgstr "Прочетете подробните правила" @@ -1100,3 +1010,4 @@ msgstr "Публикувано под този лиценз" msgid "Article license" msgstr "Лиценз на статията" + diff --git a/po/plume/ca.po b/po/plume/ca.po index 01cd95d6..ba7208fa 100644 --- a/po/plume/ca.po +++ b/po/plume/ca.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" @@ -65,59 +65,59 @@ msgstr "Pàgina següent" msgid "Optional" msgstr "Opcional" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Per a crear un blog nou, heu d’iniciar una sessió" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Ja existeix un blog amb el mateix nom." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "S’ha creat el vostre blog correctament." -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "S’ha suprimit el vostre blog." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "No tens permís per a esborrar aquest blog." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "No tens permís per a editar aquest blog." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "No pots usar aquest Mèdia com a icona del blog." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "No pots usar aquest Mèdia com a capçalera del blog." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "S’ha actualitzat la informació del vostre blog." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "S’ha publicat el vostre comentari." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "S’ha suprimit el vostre comentari." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "S'han desat les configuracions de l'instància." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "{0} ha estat desbloquejat." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{0} ha estat bloquejat." @@ -125,51 +125,51 @@ msgstr "{0} ha estat bloquejat." msgid "Blocks deleted" msgstr "Bloquejos esborrats" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "Adreça de correu bloquejada" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "No pots canviar els teus propis drets." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "No tens permís per a prendre aquesta acció." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "Fet." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Per a agradar-te una publicació necessites iniciar sessió" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "S'ha esborrat el teu Mèdia." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "No tens permís per a esborrar aquest Mèdia." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "S'ha actualitzat el teu avatar." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "No tens permís per a usar aquest Mèdia." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Per a veure les teves notificacions necessites iniciar sessió" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Aquesta entrada encara no està publicada." @@ -177,123 +177,113 @@ msgstr "Aquesta entrada encara no està publicada." msgid "To write a new post, you need to be logged in" msgstr "Per a escriure una nova entrada cal iniciar sessió" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "No ets un autor d'aquest blog." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Apunt nou" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Edita {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "No tens permís per a publicar en aquest blog." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "S’ha actualitzat el vostre article." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "S’ha desat el vostre article." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Article nou" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "No tens permís per a esborrar aquest article." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "S’ha suprimit el vostre article." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Sembla que l'article que intentes esborrar no existeix. Potser ja no hi és?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Sembla que l'article que intentes esborrar no existeix. Potser ja no hi és?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"No s'ha pogut obtenir informació sobre el teu compte. Si us plau, assegura't " -"que el teu nom d'usuari és correcte." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "No s'ha pogut obtenir informació sobre el teu compte. Si us plau, assegura't que el teu nom d'usuari és correcte." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Per a impulsar una entrada cal iniciar sessió" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Ara estàs connectat." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Ara estàs desconnectat." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Reinicialització de contrasenya" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Aquí està l'enllaç per a reiniciar la teva contrasenya: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "S’ha reinicialitzat la vostra contrasenya correctament." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Per a accedir al teu panell cal iniciar sessió" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Ja no segueixes a {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Ara estàs seguint a {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Per a subscriure't a algú cal iniciar sessió" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "Per a editar el teu perfil cal iniciar sessió" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "El teu perfil s'ha actualitzat." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "El teu compte s'ha esborrat." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "No pots esborrar el compte d'algú altre." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "El registre d'aquesta instància és tancat." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" -"S'ha creat el teu compte. Ara cal iniciar sessió per a començar a usar-lo." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "S'ha creat el teu compte. Ara cal iniciar sessió per a començar a usar-lo." msgid "Media upload" msgstr "Carregar Mèdia" @@ -302,9 +292,7 @@ msgid "Description" msgstr "Descripció" msgid "Useful for visually impaired people, as well as licensing information" -msgstr "" -"Molt útil per a persones amb deficiències visuals aixó com informació sobre " -"llicències" +msgstr "Molt útil per a persones amb deficiències visuals aixó com informació sobre llicències" msgid "Content warning" msgstr "Advertència sobre el contingut" @@ -453,12 +441,8 @@ msgstr "Contrasenya" msgid "Password confirmation" msgstr "Confirmació de la contrasenya" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Disculpa, el registre d'aquesta instància és tancat. Pots trobar-ne un altre " -"diferent." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Disculpa, el registre d'aquesta instància és tancat. Pots trobar-ne un altre diferent." msgid "{0}'s subscriptions" msgstr "Subscripcions de {0}" @@ -470,8 +454,7 @@ msgid "Your Blogs" msgstr "Els vostres blogs" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" -"Encara no tens cap bloc. Crea el teu propi o pregunta per a unir-te a un." +msgstr "Encara no tens cap bloc. Crea el teu propi o pregunta per a unir-te a un." msgid "Start a new blog" msgstr "Inicia un nou bloc" @@ -488,11 +471,8 @@ msgstr "Edita el teu compte" msgid "Your Profile" msgstr "El vostre perfil" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"Per a canviar el teu avatar, puja'l a la teva galeria i desprès selecciona'l " -"allà." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "Per a canviar el teu avatar, puja'l a la teva galeria i desprès selecciona'l allà." msgid "Upload an avatar" msgstr "Puja un avatar" @@ -528,8 +508,7 @@ msgid "Delete your account" msgstr "Elimina el teu compte" msgid "Sorry, but as an admin, you can't leave your own instance." -msgstr "" -"Ho sentim però com a admin, no pots abandonar la teva pròpia instància." +msgstr "Ho sentim però com a admin, no pots abandonar la teva pròpia instància." msgid "Latest articles" msgstr "Darrers articles" @@ -564,14 +543,8 @@ msgstr "Disculpa-n's. Si creus que això és un error, si us plau reporta-ho." msgid "Invalid CSRF token" msgstr "Token CSRF invalid" -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 "" -"Alguna cosa no és correcte amb el teu token CSRF. Assegura't que no " -"bloqueges les galetes en el teu navegador i prova refrescant la pàgina. Si " -"continues veient aquest missatge d'error, si us plau informa-ho." +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 "Alguna cosa no és correcte amb el teu token CSRF. Assegura't que no bloqueges les galetes en el teu navegador i prova refrescant la pàgina. Si continues veient aquest missatge d'error, si us plau informa-ho." msgid "You are not authorized." msgstr "No estàs autoritzat." @@ -654,31 +627,14 @@ msgstr "Llicència per defecte dels articles" msgid "Save these settings" msgstr "Desa aquests paràmetres" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"Si estàs navegant aquest lloc com a visitant cap dada sobre tu serà " -"recollida." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Si estàs navegant aquest lloc com a visitant cap dada sobre tu serà recollida." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"Com a usuari registrat has de proporcionar un nom d'usuari (que no ha de ser " -"el teu nom real), una adreça de correu funcional i una contrasenya per a " -"poder ser capaç d'iniciar sessió, escriure articles i comentar-los. El " -"contingut que enviïs es guarda fins que tu l'esborris." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Com a usuari registrat has de proporcionar un nom d'usuari (que no ha de ser el teu nom real), una adreça de correu funcional i una contrasenya per a poder ser capaç d'iniciar sessió, escriure articles i comentar-los. El contingut que enviïs es guarda fins que tu l'esborris." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Quan inicies sessió guardem dues galetes, una per a mantenir la sessió " -"oberta i l l'altre per a evitar que d'altres persones actuïn en el teu nom. " -"No guardem cap altre galeta." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Quan inicies sessió guardem dues galetes, una per a mantenir la sessió oberta i l l'altre per a evitar que d'altres persones actuïn en el teu nom. No guardem cap altre galeta." msgid "Blocklisted Emails" msgstr "Llista de bloqueig d'adreces de correu" @@ -686,14 +642,8 @@ msgstr "Llista de bloqueig d'adreces de correu" msgid "Email address" msgstr "Adreça de correu electrònic" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" -"L'adreça de correu electrònic que desitges bloquejar. Per a bloquejar " -"dominis pots usar la sintaxi global, per exemple '*@exemple.com' bloqueja " -"totes les adreces de exemple.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "L'adreça de correu electrònic que desitges bloquejar. Per a bloquejar dominis pots usar la sintaxi global, per exemple '*@exemple.com' bloqueja totes les adreces de exemple.com" msgid "Note" msgstr "Nota" @@ -701,22 +651,14 @@ msgstr "Nota" msgid "Notify the user?" msgstr "Notificar l'usuari?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" -"Opcional, mostra un missatge al usuari quan intenta crear un compte amb " -"aquesta adreça" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "Opcional, mostra un missatge al usuari quan intenta crear un compte amb aquesta adreça" msgid "Blocklisting notification" msgstr "Notificacions de la llista de bloqueig" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" -"El missatge per a ser mostrat quan l'usuari intenta crear un compte amb " -"aquesta adreça de correu" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "El missatge per a ser mostrat quan l'usuari intenta crear un compte amb aquesta adreça de correu" msgid "Add blocklisted address" msgstr "Afegir adreça a la llista de bloquejos" @@ -787,12 +729,8 @@ msgstr "Subtítol" msgid "Content" msgstr "Contingut" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Pots pujar Mèdia a la teva galeria i desprès copiar el codi Markdown dels " -"teus articles per a inserir-los." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Pots pujar Mèdia a la teva galeria i desprès copiar el codi Markdown dels teus articles per a inserir-los." msgid "Upload media" msgstr "Pujar Mèdia" @@ -849,12 +787,8 @@ msgstr "Ja no vull impulsar més això" msgid "Boost" msgstr "Impuls" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Inicia sessió{1}, o {2}usa el teu compte del Fedivers{3} per a " -"interactuar amb aquest article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Inicia sessió{1}, o {2}usa el teu compte del Fedivers{3} per a interactuar amb aquest article" msgid "Comments" msgstr "Comentaris" @@ -872,9 +806,7 @@ msgid "Are you sure?" msgstr "N’esteu segur?" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"Aquest article és encara un esborrany. Només tu i altres autors podeu " -"veure'l." +msgstr "Aquest article és encara un esborrany. Només tu i altres autors podeu veure'l." msgid "Only you and other authors can edit this article." msgstr "Només tu i altres autors podeu editar aquest article." @@ -912,12 +844,8 @@ msgstr "Actualitza la contrasenya" msgid "Check your inbox!" msgstr "Reviseu la vostra safata d’entrada." -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "" -"Hem enviat un correu a l'adreça que ens vas donar, amb un enllaç per a " -"reiniciar la teva contrasenya." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "Hem enviat un correu a l'adreça que ens vas donar, amb un enllaç per a reiniciar la teva contrasenya." msgid "Send password reset link" msgstr "Envia l'enllaç per a reiniciar la contrasenya" @@ -925,11 +853,8 @@ msgstr "Envia l'enllaç per a reiniciar la contrasenya" msgid "This token has expired" msgstr "Aquest token ha caducat" -msgid "" -"Please start the process again by clicking here." -msgstr "" -"Si us plau inicia el procés clicant aquí." +msgid "Please start the process again by clicking here." +msgstr "Si us plau inicia el procés clicant aquí." msgid "New Blog" msgstr "Blog nou" @@ -943,11 +868,8 @@ msgstr "Crea un blog" msgid "Edit \"{}\"" msgstr "Edita «{}»" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Pots pujar imatges a la teva galeria per a usar-les com a icones o " -"capçaleres del bloc." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Pots pujar imatges a la teva galeria per a usar-les com a icones o capçaleres del bloc." msgid "Upload images" msgstr "Pujar imatges" @@ -1006,16 +928,10 @@ msgid "Plume is a decentralized blogging engine." msgstr "Plume és un motor de blocs descentralitzats." msgid "Authors can manage multiple blogs, each as its own website." -msgstr "" -"Els autors poden gestionar diversos blocs, cadascun amb la seva pròpia " -"pàgina." +msgstr "Els autors poden gestionar diversos blocs, cadascun amb la seva pròpia pàgina." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Els articles son visibles en altres instàncies Plume i pots interactuar " -"directament amb ells des d'altres plataformes com ara Mastodon." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Els articles son visibles en altres instàncies Plume i pots interactuar directament amb ells des d'altres plataformes com ara Mastodon." msgid "Read the detailed rules" msgstr "Llegeix les normes detallades" @@ -1094,3 +1010,4 @@ msgstr "Publicat segons aquesta llicència" msgid "Article license" msgstr "Llicència del article" + diff --git a/po/plume/cs.po b/po/plume/cs.po index 4b8a6852..660b9862 100644 --- a/po/plume/cs.po +++ b/po/plume/cs.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2022-01-02 11:39\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -43,7 +43,7 @@ msgstr "Vaše zdroje" # src/template_utils.rs:117 msgid "Local feed" -msgstr "Místni zdroje" +msgstr "Místní zdroje" # src/template_utils.rs:118 msgid "Federated feed" @@ -55,121 +55,121 @@ msgstr "Avatar uživatele {0}" # src/template_utils.rs:198 msgid "Previous page" -msgstr "" +msgstr "Předchozí stránka" # src/template_utils.rs:209 msgid "Next page" -msgstr "" +msgstr "Následující strana" # src/template_utils.rs:363 msgid "Optional" -msgstr "Nepovinné" +msgstr "Volitelné" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Pro vytvoření nového blogu musíte být přihlášeni" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Blog s rovnakým názvem již existuje." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Váš blog byl úspěšně vytvořen!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Váš blog byl smazán." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Nemáte oprávnění zmazat tento blog." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Nemáte oprávnění upravovat tento blog." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Toto médium nelze použít jako ikonu blogu." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Toto médium nelze použít jako banner blogu." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Údaje o vašem blogu byly aktualizovány." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Váš komentář byl zveřejněn." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Váš komentář byl odstraněn." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Nastavení instance bylo uloženo." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." -msgstr "" +msgstr "{} byl/a odblokován/a." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." -msgstr "" +msgstr "{} byl/a zablokován/a." # src/routes/instance.rs:203 msgid "Blocks deleted" -msgstr "" +msgstr "Blokování odstraněno" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" -msgstr "" +msgstr "Email je již zablokován" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" -msgstr "" +msgstr "Email zablokován" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." -msgstr "" +msgstr "Nemůžete změnit vlastní oprávnění." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." -msgstr "" +msgstr "Nemáte oprávnění k provedení tohoto úkonu." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." -msgstr "" +msgstr "Hotovo." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Pro oblíbení příspěvku musíte být přihlášen/a" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Vaše média byla smazána." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Nemáte oprávnění k smazání tohoto média." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Váš avatar byl aktualizován." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Nemáte oprávnění k použití tohoto média." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Pokud chcete vidět vaše notifikace, musíte být přihlášeni" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Tento příspěvek ještě není zveřejněn." @@ -177,125 +177,113 @@ msgstr "Tento příspěvek ještě není zveřejněn." msgid "To write a new post, you need to be logged in" msgstr "K napsaní nového příspěvku musíte být přihlášeni" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Nejste autorem tohto blogu." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Nový příspěvek" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Upravit {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Nemáte oprávnění zveřejňovat na tomto blogu." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Váš článek byl upraven." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Váš článek byl uložen." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Nový článek" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Nemáte oprávnění zmazat tento článek." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Váš článek byl smazán." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Zdá se, že článek, který jste se snažili smazat, neexistuje, možná je již " -"pryč?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Zdá se, že článek, který jste se snažili smazat, neexistuje, možná je již pryč?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Nemohli jsme zjistit dostatečné množství informací ohledne vašeho účtu. " -"Prosím ověřte si, že vaše předzývka je správná." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Nemohli jsme zjistit dostatečné množství informací ohledne vašeho účtu. Prosím ověřte si, že vaše předzývka je správná." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Pro sdílení příspěvku musíte být přihlášeni" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Nyní jste připojeni." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Nyní jste odhlášeni." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Obnovit heslo" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Zde je odkaz na obnovení vášho hesla: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Vaše heslo bylo úspěšně obnoveno." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Pro přístup k vaší nástěnce musíte být přihlášen/a" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Již nenásledujete {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Teď již nenásledujete {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Chcete-li někoho odebírat, musíte být přihlášeni" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "Pro úpravu vášho profilu musíte být přihlášeni" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Váš profil byl upraven." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Váš účet byl odstraněn." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Nemůžete smazat účet někoho jiného." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "Registrace jsou na téhle instanci uzavřeny." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" -"Váš účet byl vytvořen. Nyní se stačí jenom přihlásit, než ho budete moci " -"používat." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "Váš účet byl vytvořen. Nyní se stačí jenom přihlásit, než ho budete moci používat." msgid "Media upload" msgstr "Nahrávaní médií" @@ -397,7 +385,7 @@ msgid "Matrix room" msgstr "Matrix místnost" msgid "Admin" -msgstr "Administrátor" +msgstr "Správce" msgid "It is you" msgstr "To jste vy" @@ -453,12 +441,8 @@ msgstr "Heslo" msgid "Password confirmation" msgstr "Potvrzení hesla" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Omlouváme se, ale registrace je uzavřena na této konkrétní instanci. Můžete " -"však najít jinou." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Omlouváme se, ale registrace je uzavřena na této konkrétní instanci. Můžete však najít jinou." msgid "{0}'s subscriptions" msgstr "Odběry uživatele {0}" @@ -470,9 +454,7 @@ msgid "Your Blogs" msgstr "Vaše Blogy" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" -"Zatím nemáte žádný blog. Vytvořte si vlastní, nebo požádejte v nejakém o " -"členství." +msgstr "Zatím nemáte žádný blog. Vytvořte si vlastní, nebo požádejte v nejakém o členství." msgid "Start a new blog" msgstr "Začít nový blog" @@ -489,11 +471,8 @@ msgstr "Upravit váš účet" msgid "Your Profile" msgstr "Váš profil" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"Chcete-li změnit svůj avatar, nahrejte ho do své galérie a pak ho odtud " -"zvolte." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "Chcete-li změnit svůj avatar, nahrejte ho do své galérie a pak ho odtud zvolte." msgid "Upload an avatar" msgstr "Nahrát avatara" @@ -505,10 +484,10 @@ msgid "Summary" msgstr "Souhrn" msgid "Theme" -msgstr "" +msgstr "Motiv" msgid "Default theme" -msgstr "" +msgstr "Výchozí motiv" msgid "Error while loading theme selector." msgstr "" @@ -523,15 +502,13 @@ msgid "Danger zone" msgstr "Nebezpečná zóna" msgid "Be very careful, any action taken here can't be cancelled." -msgstr "" -"Buďte velmi opatrný/á, jakákoliv zde provedená akce nemůže být zrušena." +msgstr "Buďte velmi opatrný/á, jakákoliv zde provedená akce nemůže být zrušena." msgid "Delete your account" msgstr "Smazat váš účet" msgid "Sorry, but as an admin, you can't leave your own instance." -msgstr "" -"Omlouváme se, ale jako administrátor nemůžete opustit svou vlastní instanci." +msgstr "Omlouváme se, ale jako administrátor nemůžete opustit svou vlastní instanci." msgid "Latest articles" msgstr "Nejposlednejší články" @@ -566,14 +543,8 @@ msgstr "Omlouváme se. Pokud si myslíte, že jde o chybu, prosím nahlašte ji. msgid "Invalid CSRF token" msgstr "Neplatný CSRF token" -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 "" -"S vaším tokenem CSRF něco není v pořádku. Ujistěte se, že máte v prohlížeči " -"povolené cookies a zkuste obnovit stránku. Pokud tuto chybovou zprávu budete " -"nadále vidět, prosím nahlašte ji." +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 "S vaším tokenem CSRF něco není v pořádku. Ujistěte se, že máte v prohlížeči povolené cookies a zkuste obnovit stránku. Pokud tuto chybovou zprávu budete nadále vidět, prosím nahlašte ji." msgid "You are not authorized." msgstr "Nemáte oprávnění." @@ -618,13 +589,13 @@ msgid "Run on selected users" msgstr "" msgid "Moderator" -msgstr "" +msgstr "Moderátor" msgid "Moderation" msgstr "" msgid "Home" -msgstr "" +msgstr "Domů" msgid "Administration of {0}" msgstr "Správa {0}" @@ -656,30 +627,14 @@ msgstr "Výchozí licence článků" msgid "Save these settings" msgstr "Uložit tyhle nastavení" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"Pokud si tuto stránku prohlížete jako návštěvník, žádné údaje o vás nejsou " -"shromažďovány." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Pokud si tuto stránku prohlížete jako návštěvník, žádné údaje o vás nejsou shromažďovány." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"Jako registrovaný uživatel musíte poskytnout uživatelské jméno (které nemusí " -"být vaším skutečným jménem), funkční e-mailovou adresu a heslo, aby jste se " -"mohl přihlásit, psát články a komentář." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Jako registrovaný uživatel musíte poskytnout uživatelské jméno (které nemusí být vaším skutečným jménem), funkční e-mailovou adresu a heslo, aby jste se mohl přihlásit, psát články a komentář." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Když se přihlásíte, ukládáme dvě cookies, jedno, aby bylo možné udržet vaše " -"zasedání otevřené, druhé, aby se zabránilo jiným lidem jednat ve vašem " -"jméně. Žádné další cookies neukládáme." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Když se přihlásíte, ukládáme dvě cookies, jedno, aby bylo možné udržet vaše zasedání otevřené, druhé, aby se zabránilo jiným lidem jednat ve vašem jméně. Žádné další cookies neukládáme." msgid "Blocklisted Emails" msgstr "" @@ -687,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -699,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -719,13 +667,13 @@ msgid "There are no blocked emails on your instance" msgstr "" msgid "Delete selected emails" -msgstr "" +msgstr "Smazat vybrané emaily" msgid "Email address:" -msgstr "" +msgstr "Emailová adresa:" msgid "Blocklisted for:" -msgstr "" +msgstr "Blokováno pro:" msgid "Will notify them on account creation with this message:" msgstr "" @@ -781,12 +729,8 @@ msgstr "Podtitul" msgid "Content" msgstr "Obsah" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Můžete nahrát média do své galerie, a pak zkopírovat jejich kód Markdown do " -"vašich článků, pro vložení." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Můžete nahrát média do své galerie, a pak zkopírovat jejich kód Markdown do vašich článků, pro vložení." msgid "Upload media" msgstr "Nahrát média" @@ -847,12 +791,8 @@ msgstr "Už to nechci dále boostovat" msgid "Boost" msgstr "Boostnout" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Přihlasit se{1}, nebo {2}použít váš Fediverse účet{3} k interakci s tímto " -"článkem" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Přihlasit se{1}, nebo {2}použít váš Fediverse účet{3} k interakci s tímto článkem" msgid "Comments" msgstr "Komentáře" @@ -870,8 +810,7 @@ msgid "Are you sure?" msgstr "Jste si jisti?" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"Tento článek je stále konceptem. Jenom vy, a další autoři ho mohou vidět." +msgstr "Tento článek je stále konceptem. Jenom vy, a další autoři ho mohou vidět." msgid "Only you and other authors can edit this article." msgstr "Jenom vy, a další autoři mohou upravovat tento článek." @@ -909,12 +848,8 @@ msgstr "Aktualizovat heslo" msgid "Check your inbox!" msgstr "Zkontrolujte svou příchozí poštu!" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "" -"Zaslali jsme email na adresu, kterou jste nám dodali, s odkazem na obnovu " -"vášho hesla." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "Zaslali jsme email na adresu, kterou jste nám dodali, s odkazem na obnovu vášho hesla." msgid "Send password reset link" msgstr "Poslat odkaz na obnovení hesla" @@ -922,9 +857,7 @@ msgstr "Poslat odkaz na obnovení hesla" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -939,11 +872,8 @@ msgstr "Vytvořit blog" msgid "Edit \"{}\"" msgstr "Upravit \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Můžete nahrát obrázky do své galerie, aby je šlo použít jako ikony blogu, " -"nebo bannery." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Můžete nahrát obrázky do své galerie, aby je šlo použít jako ikony blogu, nebo bannery." msgid "Upload images" msgstr "Nahrát obrázky" @@ -961,8 +891,7 @@ msgid "Update blog" msgstr "Aktualizovat blog" msgid "Be very careful, any action taken here can't be reversed." -msgstr "" -"Buďte velmi opatrný/á, jakákoliv zde provedená akce nemůže být vrácena." +msgstr "Buďte velmi opatrný/á, jakákoliv zde provedená akce nemůže být vrácena." msgid "Are you sure that you want to permanently delete this blog?" msgstr "" @@ -1007,12 +936,8 @@ msgstr "Plume je decentralizovaný blogování systém." msgid "Authors can manage multiple blogs, each as its own website." msgstr "Autoři mohou spravovat vícero blogů, každý jako svou vlastní stránku." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Články jsou viditelné také na ostatních Plume instancích, a můžete s nimi " -"narábět přímo i v rámci jiných platforem, jako je Mastodon." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Články jsou viditelné také na ostatních Plume instancích, a můžete s nimi narábět přímo i v rámci jiných platforem, jako je Mastodon." msgid "Read the detailed rules" msgstr "Přečtěte si podrobná pravidla" @@ -1091,3 +1016,4 @@ msgstr "Zveřejněn pod touto licenci" msgid "Article license" msgstr "Licence článku" + diff --git a/po/plume/da.po b/po/plume/da.po index bf7e6619..36d81fcb 100644 --- a/po/plume/da.po +++ b/po/plume/da.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Danish\n" "Language: da_DK\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -177,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -447,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -479,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -552,10 +543,7 @@ 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." +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 "You are not authorized." @@ -639,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -662,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -674,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -756,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -816,9 +787,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -875,9 +844,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -886,9 +853,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -903,8 +868,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -966,9 +930,7 @@ msgstr "" 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." +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" @@ -1048,3 +1010,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/de.po b/po/plume/de.po index 7fc0ab11..9d96ab8c 100644 --- a/po/plume/de.po +++ b/po/plume/de.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-12-11 15:00\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -65,59 +65,59 @@ msgstr "Nächste Seite" msgid "Optional" msgstr "Optional" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Du musst angemeldet sein, um einen Blog zu erstellen" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Es existiert bereits ein Blog mit diesem Namen." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Dein Blog wurde erfolgreich erstellt!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Dein Blog wurde gelöscht." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Du bist nicht berechtigt, diesen Blog zu löschen." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Du bist nicht berechtigt, diesen Blog zu bearbeiten." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Du kannst dieses Medium nicht als Blog-Symbol verwenden." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Du kannst diese Datei nicht als Blog-Banner verwenden." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Informationen des Blog wurden aktualisiert." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Dein Kommentar wurde veröffentlicht." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Dein Kommentar wurde gelöscht." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Die Instanzeinstellungen wurden gespeichert." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "{} wurde entsperrt." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{} wurde gesperrt." @@ -125,51 +125,51 @@ msgstr "{} wurde gesperrt." msgid "Blocks deleted" msgstr "Blöcke gelöscht" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" -msgstr "" +msgstr "E-Mail-Adresse bereits gesperrt" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "E-Mail-Adresse gesperrt" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "Du kannst deine eigenen Berechtigungen nicht ändern." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "Du bist nicht berechtigt, diese Aktion auszuführen." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "Fertig" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Um einen Beitrag zu liken, musst du angemeldet sein" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Deine Datei wurde gelöscht." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Dir fehlt die Berechtigung, diese Datei zu löschen." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Dein Benutzerbild wurde aktualisiert." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Dir fehlt die Berechtigung, um diese Datei zu nutzen." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Um deine Benachrichtigungen zu sehen, musst du angemeldet sein" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Dieser Beitrag wurde noch nicht veröffentlicht." @@ -177,125 +177,113 @@ msgstr "Dieser Beitrag wurde noch nicht veröffentlicht." msgid "To write a new post, you need to be logged in" msgstr "Um einen neuen Beitrag zu schreiben, musst du angemeldet sein" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Du bist kein Autor dieses Blogs." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Neuer Beitrag" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "{0} bearbeiten" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Dir fehlt die Berechtigung, in diesem Blog zu veröffentlichen." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Dein Artikel wurde aktualisiert." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Dein Artikel wurde gespeichert." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Neuer Artikel" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Dir fehlt die Berechtigung, diesen Artikel zu löschen." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Dein Artikel wurde gelöscht." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Möglicherweise ist der zu löschende Artikel nicht (mehr) vorhanden. Wurde er " -"vielleicht schon entfernt?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Möglicherweise ist der zu löschende Artikel nicht (mehr) vorhanden. Wurde er vielleicht schon entfernt?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Wir konnten nicht genug Informationen über dein Konto finden. Bitte stelle " -"sicher, dass dein Benutzername richtig ist." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Wir konnten nicht genug Informationen über dein Konto finden. Bitte stelle sicher, dass dein Benutzername richtig ist." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Um einen Beitrag erneut zu veröffentlichen, musst du angemeldet sein" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Du bist nun verbunden." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Du bist jetzt abgemeldet." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Passwort zurücksetzen" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Hier der Link, um das Passwort zurückzusetzen: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Dein Passwort wurde erfolgreich zurückgesetzt." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Um auf dein Dashboard zuzugreifen, musst du angemeldet sein" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Du folgst {} nun nicht mehr." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Du folgst nun {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Um jemanden zu abonnieren, musst du angemeldet sein" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "Um dein Profil zu bearbeiten, musst du angemeldet sein" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Dein Profil wurde aktualisiert." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Dein Benutzerkonto wurde gelöscht." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Dir fehlt die Berechtigung, das Konto eines anderen zu löschen." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "Anmeldungen sind auf dieser Instanz aktuell nicht möglich." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" -"Dein Konto wurde erstellt. Jetzt musst du dich nur noch anmelden, um es " -"nutzen zu können." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "Dein Konto wurde erstellt. Jetzt musst du dich nur noch anmelden, um es nutzen zu können." msgid "Media upload" msgstr "Hochladen von Mediendateien" @@ -453,12 +441,8 @@ msgstr "Passwort" msgid "Password confirmation" msgstr "Passwort bestätigen" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Entschuldigung, Registrierungen sind auf dieser Instanz geschlossen. Du " -"kannst jedoch eine andere finden." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Entschuldigung, Registrierungen sind auf dieser Instanz geschlossen. Du kannst jedoch eine andere finden." msgid "{0}'s subscriptions" msgstr "{0}'s Abonnements" @@ -470,9 +454,7 @@ msgid "Your Blogs" msgstr "Deine Blogs" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" -"Du hast noch keinen Blog. Erstelle deinen eigenen, oder frage, um dich einem " -"anzuschließen." +msgstr "Du hast noch keinen Blog. Erstelle deinen eigenen, oder frage, um dich einem anzuschließen." msgid "Start a new blog" msgstr "Neuen Blog beginnen" @@ -481,7 +463,7 @@ msgid "Your Drafts" msgstr "Deine Entwürfe" msgid "Go to your gallery" -msgstr "Zu deiner Gallerie" +msgstr "Zu deiner Galerie" msgid "Edit your account" msgstr "Eigenes Profil bearbeiten" @@ -489,11 +471,8 @@ msgstr "Eigenes Profil bearbeiten" msgid "Your Profile" msgstr "Dein Profil" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"Um dein Profilbild zu ändern, lade es in deine Galerie hoch und wähle es " -"dort aus." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "Um dein Profilbild zu ändern, lade es in deine Galerie hoch und wähle es dort aus." msgid "Upload an avatar" msgstr "Ein Profilbild hochladen" @@ -529,9 +508,7 @@ msgid "Delete your account" msgstr "Eigenen Account löschen" msgid "Sorry, but as an admin, you can't leave your own instance." -msgstr "" -"Entschuldingung, aber als Administrator kannst du deine eigene Instanz nicht " -"verlassen." +msgstr "Entschuldingung, aber als Administrator kannst du deine eigene Instanz nicht verlassen." msgid "Latest articles" msgstr "Neueste Artikel" @@ -561,20 +538,13 @@ msgid "Something broke on our side." msgstr "Bei dir ist etwas schief gegangen." msgid "Sorry about that. If you think this is a bug, please report it." -msgstr "" -"Das tut uns leid. Wenn du denkst, dass dies ein Bug ist, melde ihn bitte." +msgstr "Das tut uns leid. Wenn du denkst, dass dies ein Bug ist, melde ihn bitte." msgid "Invalid CSRF token" msgstr "Ungültiges CSRF-Token" -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 "" -"Irgendetwas stimmt mit deinem CSRF token nicht. Vergewissere dich, dass " -"Cookies in deinem Browser aktiviert sind und versuche diese Seite neu zu " -"laden. Bitte melde diesen Fehler, falls er erneut auftritt." +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 "Irgendetwas stimmt mit deinem CSRF token nicht. Vergewissere dich, dass Cookies in deinem Browser aktiviert sind und versuche diese Seite neu zu laden. Bitte melde diesen Fehler, falls er erneut auftritt." msgid "You are not authorized." msgstr "Berechtigung fehlt" @@ -657,31 +627,14 @@ msgstr "Voreingestellte Artikel-Lizenz" msgid "Save these settings" msgstr "Diese Einstellungen speichern" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"Wenn Sie diese Website als Besucher nutzen, werden keine Daten über Sie " -"erhoben." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Wenn Sie diese Website als Besucher nutzen, werden keine Daten über Sie erhoben." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"Als registrierter Benutzer müssen Sie Ihren Benutzernamen (der nicht Ihr " -"richtiger Name sein muss), Ihre E-Mail-Adresse und ein Passwort angeben, um " -"sich anmelden, Artikel schreiben und kommentieren zu können. Die von Ihnen " -"übermittelten Inhalte werden gespeichert, bis Sie sie löschen." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Als registrierter Benutzer müssen Sie Ihren Benutzernamen (der nicht Ihr richtiger Name sein muss), Ihre E-Mail-Adresse und ein Passwort angeben, um sich anmelden, Artikel schreiben und kommentieren zu können. Die von Ihnen übermittelten Inhalte werden gespeichert, bis Sie sie löschen." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Wenn Sie sich anmelden, speichern wir zwei Cookies, eines, um Ihre Sitzung " -"offen zu halten, das andere, um zu verhindern, dass andere Personen in Ihrem " -"Namen handeln. Wir speichern keine weiteren Cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Wenn Sie sich anmelden, speichern wir zwei Cookies, eines, um Ihre Sitzung offen zu halten, das andere, um zu verhindern, dass andere Personen in Ihrem Namen handeln. Wir speichern keine weiteren Cookies." msgid "Blocklisted Emails" msgstr "Gesperrte E-Mail-Adressen" @@ -689,14 +642,8 @@ msgstr "Gesperrte E-Mail-Adressen" msgid "Email address" msgstr "E‐Mail‐Adresse" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" -"Die E-Mail-Adresse, die du sperren möchtest. Um bestimmte Domänen zu " -"sperren, kannst du den Globbing-Syntax verwenden: Beispielsweise: *@example." -"com” sperrt alle Adressen von example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "Die E-Mail-Adresse, die du sperren möchtest. Um bestimmte Domänen zu sperren, kannst du den Globbing-Syntax verwenden: Beispielsweise: *@example.com” sperrt alle Adressen von example.com" msgid "Note" msgstr "Notiz" @@ -704,22 +651,14 @@ msgstr "Notiz" msgid "Notify the user?" msgstr "Benutzer benachrichtigen?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" -"Optional: Dem Benutzer wird eine Nachricht angezeigt, wenn er versucht, ein " -"Konto mit dieser Adresse zu erstellen" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "Optional: Dem Benutzer wird eine Nachricht angezeigt, wenn er versucht, ein Konto mit dieser Adresse zu erstellen" msgid "Blocklisting notification" msgstr "Sperrlisten-Benachrichtigung" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" -"Die Nachricht, die angezeigt wird, wenn der Benutzer versucht, ein Konto mit " -"dieser E-Mail-Adresse zu erstellen" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "Die Nachricht, die angezeigt wird, wenn der Benutzer versucht, ein Konto mit dieser E-Mail-Adresse zu erstellen" msgid "Add blocklisted address" msgstr "Adresse zur Sperrliste hinzufügen" @@ -737,12 +676,10 @@ msgid "Blocklisted for:" msgstr "Gesperrt für:" msgid "Will notify them on account creation with this message:" -msgstr "" -"Du wirst beim Erstellen eines Kontos mit dieser Nachricht benachrichtigt:" +msgstr "Du wirst beim Erstellen eines Kontos mit dieser Nachricht benachrichtigt:" msgid "The user will be silently prevented from making an account" -msgstr "" -"Der Benutzer wird stillschweigend daran gehindert, ein Konto einzurichten" +msgstr "Der Benutzer wird stillschweigend daran gehindert, ein Konto einzurichten" msgid "Welcome to {}" msgstr "Willkommen bei {}" @@ -792,12 +729,8 @@ msgstr "Untertitel" msgid "Content" msgstr "Inhalt" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Du kannst Medien in deine Galerie hochladen und dann deren Markdown-Code in " -"deine Artikel kopieren, um sie einzufügen." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Du kannst Medien in deine Galerie hochladen und dann deren Markdown-Code in deine Artikel kopieren, um sie einzufügen." msgid "Upload media" msgstr "Medien hochladen" @@ -854,12 +787,8 @@ msgstr "Ich möchte das nicht mehr boosten" msgid "Boost" msgstr "Boosten" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Anmelden{1} oder {2}Ihr Fediverse-Konto verwenden{3}, um mit diesem " -"Artikel zu interagieren." +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Anmelden{1} oder {2}Ihr Fediverse-Konto verwenden{3}, um mit diesem Artikel zu interagieren." msgid "Comments" msgstr "Kommentare" @@ -877,9 +806,7 @@ msgid "Are you sure?" msgstr "Bist du dir sicher?" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"Dieser Artikel ist noch ein Entwurf. Nur Sie und andere Autoren können ihn " -"sehen." +msgstr "Dieser Artikel ist noch ein Entwurf. Nur Sie und andere Autoren können ihn sehen." msgid "Only you and other authors can edit this article." msgstr "Nur Sie und andere Autoren können diesen Artikel bearbeiten." @@ -917,12 +844,8 @@ msgstr "Passwort aktualisieren" msgid "Check your inbox!" msgstr "Posteingang prüfen!" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "" -"Wir haben eine Mail an die von dir angegebene Adresse gesendet, mit einem " -"Link, um dein Passwort zurückzusetzen." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "Wir haben eine Mail an die von dir angegebene Adresse gesendet, mit einem Link, um dein Passwort zurückzusetzen." msgid "Send password reset link" msgstr "Link zum Zurücksetzen des Passworts senden" @@ -930,12 +853,8 @@ msgstr "Link zum Zurücksetzen des Passworts senden" msgid "This token has expired" msgstr "Diese Token ist veraltet" -msgid "" -"Please start the process again by clicking here." -msgstr "" -"Bitte starten Sie den Prozess erneut, indem Sie hier klicken." +msgid "Please start the process again by clicking here." +msgstr "Bitte starten Sie den Prozess erneut, indem Sie hier klicken." msgid "New Blog" msgstr "Neuer Blog" @@ -949,11 +868,8 @@ msgstr "Blog erstellen" msgid "Edit \"{}\"" msgstr "„{}” bearbeiten" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Sie können Bilder in Ihre Galerie hochladen, um sie als Blog-Symbol oder " -"Banner zu verwenden." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Sie können Bilder in Ihre Galerie hochladen, um sie als Blog-Symbol oder Banner zu verwenden." msgid "Upload images" msgstr "Bilder hochladen" @@ -971,9 +887,7 @@ msgid "Update blog" msgstr "Blog aktualisieren" msgid "Be very careful, any action taken here can't be reversed." -msgstr "" -"Seien Sie sehr vorsichtig, alle hier getroffenen Aktionen können nicht " -"widerrufen werden." +msgstr "Seien Sie sehr vorsichtig, alle hier getroffenen Aktionen können nicht widerrufen werden." msgid "Are you sure that you want to permanently delete this blog?" msgstr "Möchten Sie diesen Blog wirklich dauerhaft löschen?" @@ -1016,12 +930,8 @@ msgstr "Plume ist eine dezentrale Blogging-Engine." msgid "Authors can manage multiple blogs, each as its own website." msgstr "Autoren können mehrere Blogs verwalten, jeden als eigene Website." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Artikel sind auch auf anderen Plume-Instanzen sichtbar und du kannst mit " -"ihnen direkt von anderen Plattformen wie Mastodon interagieren." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Artikel sind auch auf anderen Plume-Instanzen sichtbar und du kannst mit ihnen direkt von anderen Plattformen wie Mastodon interagieren." msgid "Read the detailed rules" msgstr "Die detaillierten Regeln lesen" @@ -1100,3 +1010,4 @@ msgstr "Unter dieser Lizenz veröffentlicht" msgid "Article license" msgstr "Artikel-Lizenz" + diff --git a/po/plume/el.po b/po/plume/el.po index 20569c5c..d4e9ae08 100644 --- a/po/plume/el.po +++ b/po/plume/el.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -177,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -447,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -479,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -552,10 +543,7 @@ 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." +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 "You are not authorized." @@ -639,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -662,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -674,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -756,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -816,9 +787,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -875,9 +844,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -886,9 +853,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -903,8 +868,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -966,9 +930,7 @@ msgstr "" 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." +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" @@ -1048,3 +1010,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/en.po b/po/plume/en.po index 7d994fb9..e3a925a7 100644 --- a/po/plume/en.po +++ b/po/plume/en.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: English\n" "Language: en_US\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -177,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -447,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -479,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -552,10 +543,7 @@ 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." +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 "You are not authorized." @@ -639,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -662,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -674,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -756,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -816,9 +787,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -875,9 +844,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -886,9 +853,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -903,8 +868,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -966,9 +930,7 @@ msgstr "" 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." +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" @@ -1048,3 +1010,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/eo.po b/po/plume/eo.po index cde31724..2b83be1a 100644 --- a/po/plume/eo.po +++ b/po/plume/eo.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Esperanto\n" "Language: eo_UY\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Por krei novan blogon, vi devas ensaluti" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Blogon kun la sama nomo jam ekzistas." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Sukcesas krei vian blogon!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Via blogo estis forigita." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Vi ne rajtas forigi ĉi tiun blogon." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Vi ne estas permesita redakti ĉi tiun blogon." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Vi ne povas uzi ĉi tiun aŭdovidaĵon kiel simbolo de blogo." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Viaj blogaj informaĵoj estis ĝisdatigita." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Via komento estis forigita." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Via aŭdovidaĵo estis forigita." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Vi ne rajtas forigi ĉi tiun aŭdovidaĵon." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Via profilbildo estis gîstatiga." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Ĉi tiu skribaĵo ankoraŭ ne estas eldonita." @@ -177,118 +177,112 @@ msgstr "Ĉi tiu skribaĵo ankoraŭ ne estas eldonita." msgid "To write a new post, you need to be logged in" msgstr "Skribi novan skribaĵo, vi bezonas ensaluti vin" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Vi ne estas la verkisto de ĉi tiu blogo." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Nova skribaĵo" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Ŝanĝo {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Via artikolo estis ĝisdatigita." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Via artikolo estis konservita." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Nova artikolo" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Vi ne rajtas forigi ĉi tiun artikolon." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Via artikolo estis forigita." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Via profilo estis ĝisdatigita." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Via konto estis forigita." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Vi ne povas forigi konton de aliulo." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -447,9 +441,7 @@ msgstr "Pasvorto" msgid "Password confirmation" msgstr "Konfirmo de la pasvorto" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -479,10 +471,8 @@ msgstr "Redakti vian konton" msgid "Your Profile" msgstr "Via profilo" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"Por ĉanĝi vian profilbildon, retsendu ĝin en via bildaro kaj selektu ol kie." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "Por ĉanĝi vian profilbildon, retsendu ĝin en via bildaro kaj selektu ol kie." msgid "Upload an avatar" msgstr "Retsendi profilbildo" @@ -553,10 +543,7 @@ 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." +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 "You are not authorized." @@ -640,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "Konservi ĉi tiujn agordojn" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -663,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -675,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -757,9 +729,7 @@ msgstr "" msgid "Content" msgstr "Enhavo" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -817,9 +787,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -876,9 +844,7 @@ msgstr "Ĝisdatigi pasvorton" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -887,9 +853,7 @@ msgstr "Sendi ligilon por restarigi pasvorton" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -904,8 +868,7 @@ msgstr "Krei blogon" msgid "Edit \"{}\"" msgstr "Redakti “{}”" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -967,9 +930,7 @@ msgstr "" 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." +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" @@ -1049,3 +1010,4 @@ msgstr "Eldonita sub ĉi tiu permesilo" msgid "Article license" msgstr "Artikola permesilo" + diff --git a/po/plume/es.po b/po/plume/es.po index 9ff05af8..f8324642 100644 --- a/po/plume/es.po +++ b/po/plume/es.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2022-01-02 11:39\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -65,59 +65,59 @@ msgstr "Página siguiente" msgid "Optional" msgstr "Opcional" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" -msgstr "Para crear un nuevo blog, necesita estar logueado" +msgstr "Para crear un nuevo blog, necesitas estar conectado" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Ya existe un blog con el mismo nombre." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "¡Tu blog se ha creado satisfactoriamente!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Tu blog fue eliminado." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "No está autorizado a eliminar este registro." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "No tiene permiso para editar este blog." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "No puede usar este medio como icono del blog." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "No puede usar este medio como bandera del blog." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "La información de tu blog ha sido actualizada." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Se ha publicado el comentario." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Se ha eliminado el comentario." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Se han guardado los ajustes de la instancia." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "{} ha sido desbloqueado." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{} ha sido bloqueado." @@ -125,177 +125,165 @@ msgstr "{} ha sido bloqueado." msgid "Blocks deleted" msgstr "Bloqueos eliminados" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" -msgstr "" +msgstr "Correo electrónico ya bloqueado" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "Email bloqueado" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "No puedes cambiar tus propios derechos." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "No te está permitido realizar esta acción." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "Hecho." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Para darle un Me Gusta a un artículo, necesita estar conectado" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Tus medios han sido eliminados." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "No tienes permisos para eliminar este medio." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Tu avatar ha sido actualizado." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "No tienes permisos para usar este medio." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Para ver tus notificaciones, necesitas estar conectado" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Esta publicación aún no está publicada." # src/routes/posts.rs:125 msgid "To write a new post, you need to be logged in" -msgstr "Para escribir un nuevo artículo, necesita estar logueado" +msgstr "Para escribir un nuevo artículo, necesitas estar conectado" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." -msgstr "No es un autor de este blog." +msgstr "No eres un autor de este blog." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Nueva publicación" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Editar {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "No tienes permiso para publicar en este blog." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Se ha actualizado el artículo." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Se ha guardado el artículo." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Nueva publicación" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "No tienes permiso para eliminar este artículo." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Se ha eliminado el artículo." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Parece que el artículo que intentaste eliminar no existe. ¿Tal vez ya haya " -"desaparecido?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Parece que el artículo que intentaste eliminar no existe. ¿Tal vez ya haya desaparecido?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"No se pudo obtener suficiente información sobre su cuenta. Por favor, " -"asegúrese de que su nombre de usuario es correcto." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "No se pudo obtener suficiente información sobre su cuenta. Por favor, asegúrese de que su nombre de usuario es correcto." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Para compartir un artículo, necesita estar logueado" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Ahora estás conectado." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Ahora estás desconectado." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Reiniciar contraseña" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Aquí está el enlace para restablecer tu contraseña: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Su contraseña se ha restablecido correctamente." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Para acceder a su panel de control, necesita estar conectado" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Ya no estás siguiendo a {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Ahora estás siguiendo a {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Para suscribirse a alguien, necesita estar conectado" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "Para editar su perfil, necesita estar conectado" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Tu perfil ha sido actualizado." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Tu cuenta ha sido eliminada." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "No puedes eliminar la cuenta de otra persona." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "Los registros están cerrados en esta instancia." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" -"Tu cuenta ha sido creada. Ahora solo necesitas iniciar sesión, antes de " -"poder usarla." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "Tu cuenta ha sido creada. Ahora solo necesitas iniciar sesión, antes de poder usarla." msgid "Media upload" msgstr "Subir medios" @@ -304,9 +292,7 @@ msgid "Description" msgstr "Descripción" msgid "Useful for visually impaired people, as well as licensing information" -msgstr "" -"Útil para personas con discapacidad visual, tanto como información de " -"licencias" +msgstr "Útil para personas con discapacidad visual, tanto como información de licencias" msgid "Content warning" msgstr "Aviso de contenido" @@ -396,7 +382,7 @@ msgid "Source code" msgstr "Código fuente" msgid "Matrix room" -msgstr "Sala de matriz" +msgstr "Sala de Matrix" msgid "Admin" msgstr "Administrador" @@ -455,12 +441,8 @@ msgstr "Contraseña" msgid "Password confirmation" msgstr "Confirmación de contraseña" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Lo sentimos, pero las inscripciones están cerradas en esta instancia. Sin " -"embargo, puede encontrar una instancia distinta." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Lo sentimos, pero las inscripciones están cerradas en esta instancia. Sin embargo, puede encontrar una instancia distinta." msgid "{0}'s subscriptions" msgstr "Suscripciones de {0}" @@ -489,8 +471,7 @@ msgstr "Edita tu cuenta" msgid "Your Profile" msgstr "Tu perfil" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "Para cambiar tu avatar, súbalo a su galería y seleccione de ahí." msgid "Upload an avatar" @@ -527,8 +508,7 @@ msgid "Delete your account" msgstr "Eliminar tu cuenta" msgid "Sorry, but as an admin, you can't leave your own instance." -msgstr "" -"Lo sentimos, pero como un administrador, no puede dejar su propia instancia." +msgstr "Lo sentimos, pero como un administrador, no puede dejar su propia instancia." msgid "Latest articles" msgstr "Últimas publicaciones" @@ -558,20 +538,13 @@ msgid "Something broke on our side." msgstr "Algo ha salido mal de nuestro lado." msgid "Sorry about that. If you think this is a bug, please report it." -msgstr "" -"Disculpe la molestia. Si cree que esto es un defecto, por favor repórtalo." +msgstr "Disculpe la molestia. Si cree que esto es un defecto, por favor repórtalo." msgid "Invalid CSRF token" msgstr "Token CSRF inválido" -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 "" -"Hay un problema con su token CSRF. Asegúrase de que las cookies están " -"habilitadas en su navegador, e intente recargar esta página. Si sigue viendo " -"este mensaje de error, por favor infórmelo." +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 "Hay un problema con su token CSRF. Asegúrase de que las cookies están habilitadas en su navegador, e intente recargar esta página. Si sigue viendo este mensaje de error, por favor infórmelo." msgid "You are not authorized." msgstr "No está autorizado." @@ -654,32 +627,14 @@ msgstr "Licencia del artículo por defecto" msgid "Save these settings" msgstr "Guardar estos ajustes" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"Si está navegando por este sitio como visitante, no se recopilan datos sobre " -"usted." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Si está navegando por este sitio como visitante, no se recopilan datos sobre usted." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"Como usuario registrado, tienes que proporcionar tu nombre de usuario (que " -"no tiene que ser tu nombre real), tu dirección de correo electrónico " -"funcional y una contraseña, con el fin de poder iniciar sesión, escribir " -"artículos y comentarios. El contenido que envíes se almacena hasta que lo " -"elimines." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Como usuario registrado, tienes que proporcionar tu nombre de usuario (que no tiene que ser tu nombre real), tu dirección de correo electrónico funcional y una contraseña, con el fin de poder iniciar sesión, escribir artículos y comentarios. El contenido que envíes se almacena hasta que lo elimines." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Cuando inicias sesión, guardamos dos cookies, una para mantener tu sesión " -"abierta, la segunda para evitar que otras personas actúen en tu nombre. No " -"almacenamos ninguna otra cookie." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Cuando inicias sesión, guardamos dos cookies, una para mantener tu sesión abierta, la segunda para evitar que otras personas actúen en tu nombre. No almacenamos ninguna otra cookie." msgid "Blocklisted Emails" msgstr "Correos en la lista de bloqueos" @@ -687,14 +642,8 @@ msgstr "Correos en la lista de bloqueos" msgid "Email address" msgstr "Dirección de correo electrónico" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" -"La dirección de correo electrónico que deseas bloquear. Para bloquear " -"dominios, puedes usar sintaxis de globbing, por ejemplo '*@example.com' " -"bloquea todas las direcciones de example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "La dirección de correo electrónico que deseas bloquear. Para bloquear dominios, puedes usar sintaxis de globbing, por ejemplo '*@example.com' bloquea todas las direcciones de example.com" msgid "Note" msgstr "Nota" @@ -702,22 +651,14 @@ msgstr "Nota" msgid "Notify the user?" msgstr "¿Notificar al usuario?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" -"Opcional, muestra un mensaje al usuario cuando intenta crear una cuenta con " -"esa dirección" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "Opcional, muestra un mensaje al usuario cuando intenta crear una cuenta con esa dirección" msgid "Blocklisting notification" msgstr "Notificación de bloqueo" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" -"El mensaje que se mostrará cuando el usuario intente crear una cuenta con " -"esta dirección de correo electrónico" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "El mensaje que se mostrará cuando el usuario intente crear una cuenta con esta dirección de correo electrónico" msgid "Add blocklisted address" msgstr "Añadir dirección bloqueada" @@ -732,9 +673,7 @@ msgid "Email address:" msgstr "Dirección de correo electrónico:" msgid "Blocklisted for:" -msgstr "" -"Este texto no tiene información de contexto. El texto es usado en plume.pot. " -"Posición en el archivo: 115:" +msgstr "Este texto no tiene información de contexto. El texto es usado en plume.pot. Posición en el archivo: 115:" msgid "Will notify them on account creation with this message:" msgstr "Les notificará al crear la cuenta con este mensaje:" @@ -790,12 +729,8 @@ msgstr "Subtítulo" msgid "Content" msgstr "Contenido" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Puede subir los medios a su galería, y luego copiar su código Markdown en " -"sus artículos para insertarlos." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Puede subir los medios a su galería, y luego copiar su código Markdown en sus artículos para insertarlos." msgid "Upload media" msgstr "Cargar medios" @@ -852,12 +787,8 @@ msgstr "Ya no quiero compartir esto" msgid "Boost" msgstr "Compartir" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Inicie sesión{1}, o {2}utilice su cuenta del Fediverso{3} para " -"interactuar con este artículo" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Inicie sesión{1}, o {2}utilice su cuenta del Fediverso{3} para interactuar con este artículo" msgid "Comments" msgstr "Comentários" @@ -875,8 +806,7 @@ msgid "Are you sure?" msgstr "¿Está seguro?" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"Este artículo sigue siendo un borrador. Sólo tú y otros autores pueden verlo." +msgstr "Este artículo sigue siendo un borrador. Sólo tú y otros autores pueden verlo." msgid "Only you and other authors can edit this article." msgstr "Sólo tú y otros autores pueden editar este artículo." @@ -914,12 +844,8 @@ msgstr "Actualizar contraseña" msgid "Check your inbox!" msgstr "Revise su bandeja de entrada!" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "" -"Enviamos un correo a la dirección que nos dio, con un enlace para " -"restablecer su contraseña." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "Enviamos un correo a la dirección que nos dio, con un enlace para restablecer su contraseña." msgid "Send password reset link" msgstr "Enviar enlace de restablecimiento de contraseña" @@ -927,12 +853,8 @@ msgstr "Enviar enlace de restablecimiento de contraseña" msgid "This token has expired" msgstr "Este token ha caducado" -msgid "" -"Please start the process again by clicking here." -msgstr "" -"Por favor, vuelva a iniciar el proceso haciendo click aquí." +msgid "Please start the process again by clicking here." +msgstr "Por favor, vuelva a iniciar el proceso haciendo click aquí." msgid "New Blog" msgstr "Nuevo Blog" @@ -946,11 +868,8 @@ msgstr "Crear el blog" msgid "Edit \"{}\"" msgstr "Editar \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Puede subir imágenes a su galería, para usarlas como iconos de blog, o " -"banderas." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Puede subir imágenes a su galería, para usarlas como iconos de blog, o banderas." msgid "Upload images" msgstr "Subir imágenes" @@ -968,9 +887,7 @@ msgid "Update blog" msgstr "Actualizar el blog" msgid "Be very careful, any action taken here can't be reversed." -msgstr "" -"Tenga mucho cuidado, cualquier acción que se tome aquí no puede ser " -"invertida." +msgstr "Tenga mucho cuidado, cualquier acción que se tome aquí no puede ser invertida." msgid "Are you sure that you want to permanently delete this blog?" msgstr "¿Está seguro que desea eliminar permanentemente este blog?" @@ -1011,16 +928,10 @@ msgid "Plume is a decentralized blogging engine." msgstr "Plume es un motor de blogs descentralizado." msgid "Authors can manage multiple blogs, each as its own website." -msgstr "" -"Los autores pueden administrar múltiples blogs, cada uno como su propio " -"sitio web." +msgstr "Los autores pueden administrar múltiples blogs, cada uno como su propio sitio web." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Los artículos también son visibles en otras instancias de Plume, y puede " -"interactuar con ellos directamente desde otras plataformas como Mastodon." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Los artículos también son visibles en otras instancias de Plume, y puede interactuar con ellos directamente desde otras plataformas como Mastodon." msgid "Read the detailed rules" msgstr "Leer las reglas detalladas" @@ -1099,3 +1010,4 @@ msgstr "Publicado bajo esta licencia" msgid "Article license" msgstr "Licencia de artículo" + diff --git a/po/plume/fa.po b/po/plume/fa.po index fb520aed..14a2ae87 100644 --- a/po/plume/fa.po +++ b/po/plume/fa.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-12-11 15:00\n" "Last-Translator: \n" "Language-Team: Persian\n" "Language: fa_IR\n" @@ -19,7 +19,7 @@ msgstr "" # src/template_utils.rs:105 msgid "{0} commented on your article." -msgstr "{0} روی مطلب شما نظر داد." +msgstr "{0} روی مقالهٔ شما نظر داد." # src/template_utils.rs:106 msgid "{0} is subscribed to you." @@ -27,7 +27,7 @@ msgstr "{0} شما را دنبال می‌کند." # src/template_utils.rs:107 msgid "{0} liked your article." -msgstr "{0} مطلب شما را پسندید." +msgstr "{0} مقالهٔ شما را پسندید." # src/template_utils.rs:108 msgid "{0} mentioned you." @@ -35,7 +35,7 @@ msgstr "{0} به شما اشاره کرد." # src/template_utils.rs:109 msgid "{0} boosted your article." -msgstr "{0} مطلب شما را تقویت کرد." +msgstr "{0} مقالهٔ شما را تقویت کرد." # src/template_utils.rs:116 msgid "Your feed" @@ -51,7 +51,7 @@ msgstr "خوراک سراسری" # src/template_utils.rs:154 msgid "{0}'s avatar" -msgstr "آواتار {0}" +msgstr "چهرک {0}" # src/template_utils.rs:198 msgid "Previous page" @@ -65,235 +65,225 @@ msgstr "برگ پسین" msgid "Optional" msgstr "اختیاری" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "برای ساخت یک بلاگ بایستی وارد شوید" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "بلاگی با همین نام از قبل وجود دارد." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "بلاگ شما با موفقیت ساخته شد!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "بلاگ شما پاک شد." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "شما مجاز به پاک کردن این بلاگ نیستید." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "شما مجاز به ویرایش این بلاگ نیستید." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "شما نمی‌توانید این رسانه را به عنوان تصویر بلاگ استفاده کنید." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "شما نمی‌توانید از این رسانه به عنوان تصویر سردر بلاگ استفاده کنید." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "اطلاعات بلاگ شما به‌روز شده است." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "نظر شما فرستاده شده است." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "نظر شما پاک شده است." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "تنظیمات نمونه ذخیره شده است." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "مسدودیت {} رفع شده است." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{} مسدود شده است." # src/routes/instance.rs:203 msgid "Blocks deleted" -msgstr "مسدود سازی حذف شد" +msgstr "مسدودسازی‌ها حذف شدند" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" -msgstr "" +msgstr "رایانامه قبلاً مسدود شده است" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" -msgstr "ایمیل مسدود شده" +msgstr "رایانامه مسدود شده" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "شما نمی‌توانید نقش خود را تغییر دهید." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "شما مجاز به انجام این کار نیستید." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "انجام شد." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" -msgstr "برای پسندیدن یک مطلب بایستی وارد شده باشید" +msgstr "برای پسندیدن یک فرسته، بایستی وارد شده باشید" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "رسانه شما پاک شده است." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "شما مجاز به پاک کردن این رسانه نیستید." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." -msgstr "آواتار شما به‌روز شده است." +msgstr "چهرک شما به‌روز شده است." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "شما مجاز به استفاده از این رسانه نیستید." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "برای دیدن اعلانات خود بایستی وارد شده باشید" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." -msgstr "این مطلب هنوز منتشر نشده است." +msgstr "این فرسته هنوز منتشر نشده است." # src/routes/posts.rs:125 msgid "To write a new post, you need to be logged in" -msgstr "برای نوشتن یک مطلب جدید بایستی وارد شده باشید" +msgstr "برای نوشتن یک فرستهٔ جدید، بایستی وارد شده باشید" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." -msgstr "شما، نویسنده این بلاگ نیستید." +msgstr "شما نویسندهٔ این بلاگ نیستید." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" -msgstr "نوشتهٔ جدید" +msgstr "فرستهٔ جدید" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "ویرایش {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "شما مجاز به انتشار روی این بلاگ نیستید." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." -msgstr "نوشتهٔ شما به‌روز شده است." +msgstr "مقالهٔ شما به‌روز شده است." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." -msgstr "نوشتهٔ شما ذخیره شده است." +msgstr "مقالهٔ شما ذخیره شده است." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" -msgstr "نوشتهٔ جدید" +msgstr "مقالهٔ جدید" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." -msgstr "شما مجاز به حذف این نوشته نیستید." +msgstr "شما مجاز به حذف این مقاله نیستید." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." -msgstr "نوشتهٔ شما پاک شده است." +msgstr "مقالهٔ شما پاک شده است." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"به نظر می‌رسد نوشته‌ای را که می‌خواهید پاک کنید، وجود ندارد. قبلا پاک نشده است؟" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "به نظر می‌رسد مقاله‌ای را که می‌خواهید پاک کنید، وجود ندارد. قبلا پاک نشده است؟" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"نتوانستیم اطلاعات کافی درباره حساب شما دریافت کنیم. لطفا مطمئن شوید که نام " -"کاربری درست است." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "نتوانستیم اطّلاعات کافی دربارهٔ حساب شما دریافت کنیم. لطفاً مطمئن شوید که نام کاربری درست است." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" -msgstr "برای هم‌رسانی یک نوشته لازم است وارد شوید" +msgstr "برای هم‌رسانی یک فرسته لازم است وارد شوید" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "شما اکنون متصل هستید." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "شما اکنون خارج شدید." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "بازنشانی گذرواژه" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "اینجا، پیوندی برای بازنشانی گذرواژهٔ شماست: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "گذرواژه شما با موفقیت بازنشانی شد." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "برای دسترسی به پیشخوان بایستی وارد شده باشید" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "دیگر {} را دنبال نمی‌کنید." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "اکنون {} را دنبال می‌کنید." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "برای دنبال کردن یک نفر، باید وارد شوید" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "برای ویرایش نمایهٔ خود، باید وارد شوید" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "نمایهٔ شما به‌روز شده است." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "حساب شما پاک شده است." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "نمی‌توانید حساب شخص دیگری را پاک کنید." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "ثبت‌نام روی این نمونه بسته شده است." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" -"حساب شما ایجاد شده است. اکنون برای استفاده از آن تنها نیاز است که واردش شوید." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "حساب شما ایجاد شده است. اکنون برای استفاده از آن تنها نیاز است که واردش شوید." msgid "Media upload" msgstr "بارگذاری رسانه" @@ -302,7 +292,7 @@ msgid "Description" msgstr "توضیحات" msgid "Useful for visually impaired people, as well as licensing information" -msgstr "مناسب برای کسانی که مشکل بینایی دارند و نیز درج اطلاعات پروانه نشر" +msgstr "مناسب برای کسانی که مشکل بینایی دارند و نیز درج اطّلاعات پروانه نشر" msgid "Content warning" msgstr "هشدار محتوا" @@ -344,7 +334,7 @@ msgid "Markdown syntax" msgstr "نحو مارک‌داون" msgid "Copy it into your articles, to insert this media:" -msgstr "برای درج رسانه، رونوشت این را در مطلب خود بگذارید:" +msgstr "برای درج این رسانه، این را در مقاله‌تان رونویسی کنید:" msgid "Use as an avatar" msgstr "استفاده به عنوان آواتار" @@ -425,7 +415,7 @@ msgid "{0}'s subscribers" msgstr "دنبال‌کنندگان {0}" msgid "Articles" -msgstr "نوشته‌ها" +msgstr "مقالات" msgid "Subscribers" msgstr "دنبال‌کنندگان" @@ -451,12 +441,8 @@ msgstr "گذرواژه" msgid "Password confirmation" msgstr "تایید گذرواژه" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"معذرت می‌خواهیم. ثبت‌نام روی این نمونه خاص بسته شده است. با این حال شما " -"می‌توانید یک نمونه دیگر پیدا کنید." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "معذرت می‌خواهیم. ثبت‌نام روی این نمونه خاص بسته شده است. با این حال شما می‌توانید یک نمونه دیگر پیدا کنید." msgid "{0}'s subscriptions" msgstr "دنبال‌شوندگان {0}" @@ -468,8 +454,7 @@ msgid "Your Blogs" msgstr "بلاگ‌های شما" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" -"شما هنوز هیچ بلاگی ندارید. یکی بسازید یا درخواست پیوستن به یکی را بدهید." +msgstr "شما هنوز هیچ بلاگی ندارید. یکی بسازید یا درخواست پیوستن به یکی را بدهید." msgid "Start a new blog" msgstr "شروع یک بلاگ جدید" @@ -486,11 +471,8 @@ msgstr "حساب‌تان را ویرایش کنید" msgid "Your Profile" msgstr "نمایهٔ شما" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"برای تغییر تصویر حساب‌تان، ابتدا آن را در نگارخانه بارگذاری کرده و سپس از " -"همان جا انتخابش کنید." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "برای تغییر تصویر حساب‌تان، ابتدا آن را در نگارخانه بارگذاری کرده و سپس از همان جا انتخابش کنید." msgid "Upload an avatar" msgstr "بارگذاری تصویر حساب" @@ -505,7 +487,7 @@ msgid "Theme" msgstr "پوسته" msgid "Default theme" -msgstr "پوسته پیش‌فرض" +msgstr "پوستهٔ پیش‌فرض" msgid "Error while loading theme selector." msgstr "خطا هنگام بار شدن گزینش‌گر پوسته." @@ -529,19 +511,19 @@ msgid "Sorry, but as an admin, you can't leave your own instance." msgstr "ببخشید اما به عنوان مدیر، نمی‌توانید نمونهٔ خودتان را ترک کنید." msgid "Latest articles" -msgstr "آخرین نوشته‌ها" +msgstr "آخرین مقالات" msgid "Atom feed" msgstr "خوراک اتم" msgid "Recently boosted" -msgstr "نوشته‌هایی که اخیرا تقویت شده‌اند" +msgstr "به‌تازگی تقویت شده" msgid "Articles tagged \"{0}\"" -msgstr "نوشته‌های دارای برچسب «{0}»" +msgstr "مقالات دارای برچسب «{0}»" msgid "There are currently no articles with such a tag" -msgstr "در حال حاضر نوشته‌ای با این برچسب وجود ندارد" +msgstr "در حال حاضر مقاله‌ای با این برچسب وجود ندارد" msgid "The content you sent can't be processed." msgstr "محتوایی که فرستادید قابل پردازش نیست." @@ -556,21 +538,13 @@ msgid "Something broke on our side." msgstr "مشکلی سمت ما پیش آمد." msgid "Sorry about that. If you think this is a bug, please report it." -msgstr "" -"از این بابت متاسفیم. اگر فکر می‌کنید این اتفاق ناشی از یک اشکال فنی است، لطفا " -"آن را گزارش کنید." +msgstr "از این بابت متاسفیم. اگر فکر می‌کنید این اتفاق ناشی از یک اشکال فنی است، لطفا آن را گزارش کنید." msgid "Invalid CSRF token" msgstr "توکن CSRF نامعتبر" -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 "" -"مشکلی در ارتباط با توکن CSRF ما وجود دارد. اطمینان حاصل کنید که کوکی در " -"مرورگرتان فعال است و سپس این صفحه را مجددا فراخوانی کنید. اگر این پیام خطا " -"را باز هم مشاهده کردید، موضوع را گزارش کنید." +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 "مشکلی در ارتباط با توکن CSRF ما وجود دارد. اطمینان حاصل کنید که کوکی در مرورگرتان فعّال است و سپس این صفحه را مجددا فراخوانی کنید. اگر این پیام خطا را باز هم مشاهده کردید، موضوع را گزارش کنید." msgid "You are not authorized." msgstr "شما مجاز به این کار نیستید." @@ -648,36 +622,19 @@ msgid "Long description" msgstr "توضیحات بلند" msgid "Default article license" -msgstr "پروانه پیش‌فرض نوشته" +msgstr "پروانهٔ پیش‌فرض مقاله" msgid "Save these settings" msgstr "ذخیره این تنظیمات" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"اگر شما به عنوان یک بازدیدکننده در حال مرور این پایگاه هستید، هیچ داده‌ای " -"درباره شما گردآوری نمی‌شود." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "اگر شما به عنوان یک بازدیدکننده در حال مرور این پایگاه هستید، هیچ داده‌ای درباره شما گردآوری نمی‌شود." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"به عنوان یک کاربر ثبت‌نام شده، برای آن‌که بتوانید وارد شده و مطلب بنویسید یا " -"نظر بدهید، لازم است که نام‌کاربری (که لازم نیست نام واقعی شما باشد) و نشانی " -"رایانامه فعال را ارائه کنید. محتوایی که می‌فرستید، تا زمانی که خودتان آن را " -"پاک نکنید نگه‌داری می‌شود." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "به عنوان یک کاربر ثبت‌نام شده، برای آن‌که بتوانید وارد شده و مقاله بنویسید یا نظر بدهید، لازم است که نام کاربری (که لازم نیست نام واقعی شما باشد) و نشانی رایانامهٔ فعّال‌تان را ارائه کنید. محتوایی که ثبت می‌کنید، تا زمانی که خودتان آن را پاک نکنید نگه‌داری می‌شود." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"وقتی وارد می‌شوید، ما دو کوکی ذخیره می‌کنیم. یکی برای باز نگه‌داشتن نشست جاری و " -"دومی برای اجتناب از فعالیت دیگران از جانب شما. ما هیچ کوکی دیگری ذخیره " -"نمی‌کنیم." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "وقتی وارد می‌شوید، ما دو کوکی ذخیره می‌کنیم. یکی برای باز نگه‌داشتن نشست جاری و دومی برای اجتناب از فعّالیت دیگران از جانب شما. ما هیچ کوکی دیگری ذخیره نمی‌کنیم." msgid "Blocklisted Emails" msgstr "رایانامه‌های مسدود شده" @@ -685,14 +642,8 @@ msgstr "رایانامه‌های مسدود شده" msgid "Email address" msgstr "نشانی رایانامه" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" -"نشانی رایانامه‌ای که می‌خواهید مسدود کنید. اگر می‌خواهید دامنه‌ها را مسدود کنید، " -"می‌تواند از نحو گِلاب استفاده کنید. مثلاً عبارت '‎*@example.com' تمام نشانی‌ها از " -"دامنه example.com را مسدود می‌کند" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "نشانی رایانامه‌ای که می‌خواهید مسدود کنید. اگر می‌خواهید دامنه‌ها را مسدود کنید، می‌تواند از نحو گِلاب استفاده کنید. مثلاً عبارت '‎*@example.com' تمام نشانی‌ها از دامنه example.com را مسدود می‌کند" msgid "Note" msgstr "یادداشت" @@ -700,22 +651,14 @@ msgstr "یادداشت" msgid "Notify the user?" msgstr "به کاربر اعلان شود؟" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" -"اختیاری، هنگامی که کاربر با آن نشانی تلاش برای ایجاد حساب کند، پیامی به او " -"نشان می‌دهد" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "اختیاری، هنگامی که کاربر با آن نشانی تلاش برای ایجاد حساب کند، پیامی به او نشان می‌دهد" msgid "Blocklisting notification" msgstr "اعلان‌ مسدودسازی" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" -"پیامی که هنگام تلاش کاربر برای ساخت حساب با این نشانی رایانامه به او نشان " -"داده می‌شود" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "پیامی که هنگام تلاش کاربر برای ساخت حساب با این نشانی رایانامه به او نشان داده می‌شود" msgid "Add blocklisted address" msgstr "اضافه کردن نشانی مسدودشده" @@ -754,7 +697,7 @@ msgid "Home to {0} people" msgstr "میزبان {0} نفر" msgid "Who wrote {0} articles" -msgstr "که تاکنون {0} مطلب نوشته‌اند" +msgstr "که تاکنون {0} مقاله نوشته‌اند" msgid "And are connected to {0} other instances" msgstr "و به {0} نمونه دیگر متصل‌اند" @@ -786,12 +729,8 @@ 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 "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "می‌تواند رسانه را در نگار‌خانهٔ خود بارگذاری کنید، و سپس کد مارک‌داون آن‌ها را درون مقاله‌تان درج کنید." msgid "Upload media" msgstr "بارگذاری رسانه" @@ -815,7 +754,7 @@ msgid "Update, or publish" msgstr "به‌روزرسانی، یا انتشار" msgid "Publish your post" -msgstr "انتشار نوشته‌تان" +msgstr "انتشار فرسته‌تان" msgid "Written by {0}" msgstr "نوشته شده توسط {0}" @@ -824,7 +763,7 @@ msgid "All rights reserved." msgstr "تمامی حقوق محفوظ است." msgid "This article is under the {0} license." -msgstr "این مطلب تحت پروانه {0} است." +msgstr "این مقاله تحت پروانهٔ {0} است." msgid "One like" msgid_plural "{0} likes" @@ -848,12 +787,8 @@ msgstr "دیگر نمی‌خوام این را تقویت کنم" msgid "Boost" msgstr "تقویت" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}وارد شوید{1} و یا {2}از حساب فدیورس خود{3} برای تعامل با این مطلب استفاده " -"کنید" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}وارد شوید{1}، یا {2}از حساب فدیورس خود{3} برای تعامل با این مقاله استفاده کنید" msgid "Comments" msgstr "نظرات" @@ -871,12 +806,10 @@ msgid "Are you sure?" msgstr "مطمئنید؟" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"این مطلب هنوز یک پیش‌نویس است. تنها شما و دیگر نویسندگان می‌توانید آن را " -"ببینید." +msgstr "این مقاله هنوز یک پیش‌نویس است. تنها شما و دیگر نویسندگان می‌توانید آن را ببینید." msgid "Only you and other authors can edit this article." -msgstr "تنها شما و دیگر نویسندگان می‌توانید این نوشته را ویرایش کنید." +msgstr "تنها شما و دیگر نویسندگان می‌توانید این مقاله را ویرایش کنید." msgid "Edit" msgstr "ویرایش" @@ -900,7 +833,7 @@ msgid "Reset your password" msgstr "بازنشانی گذرواژه" msgid "New password" -msgstr "گذرواژه جدید" +msgstr "گذرواژهٔ جدید" msgid "Confirmation" msgstr "تایید" @@ -911,12 +844,8 @@ 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 "" -"ما، یک رایانامه به نشانی‌ای که به ما دادید فرستاده‌ایم. با پیوندی که در آن است " -"می‌توانید گذرواژه خود را تغییر دهید." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "ما، یک رایانامه به نشانی‌ای که به ما دادید فرستاده‌ایم. با پیوندی که در آن است می‌توانید گذرواژه خود را تغییر دهید." msgid "Send password reset link" msgstr "فرستادن پیوند بازنشانی گذرواژه" @@ -924,11 +853,8 @@ msgstr "فرستادن پیوند بازنشانی گذرواژه" msgid "This token has expired" msgstr "این توکن منقضی شده است" -msgid "" -"Please start the process again by clicking here." -msgstr "" -"لطفاً برای شروع فرایند، اینجا کلیک کنید." +msgid "Please start the process again by clicking here." +msgstr "لطفاً برای شروع فرایند، اینجا کلیک کنید." msgid "New Blog" msgstr "بلاگ جدید" @@ -942,11 +868,8 @@ msgstr "ایجاد بلاگ" msgid "Edit \"{}\"" msgstr "ویرایش «{}»" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"می‌توانید تصاویرتان را در نگارخانه بارگذاری کرده و از آن‌ها به عنوان شکلک و یا " -"تصویر سردر بلاگ استفاده کنید." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "می‌توانید تصاویرتان را در نگارخانه بارگذاری کرده و از آن‌ها به عنوان شکلک و یا تصویر سردر بلاگ استفاده کنید." msgid "Upload images" msgstr "بارگذاری تصاویر" @@ -964,8 +887,7 @@ msgid "Update blog" msgstr "به‌روزرسانی بلاگ" msgid "Be very careful, any action taken here can't be reversed." -msgstr "" -"حواس‌تان خیلی جمع باشد! هر اقدامی که اینجا انجام دهید غیرقابل بازگشت است." +msgstr "حواس‌تان خیلی جمع باشد! هر اقدامی که اینجا انجام دهید غیرقابل بازگشت است." msgid "Are you sure that you want to permanently delete this blog?" msgstr "آیا مطمئن هستید که می‌خواهید این بلاگ را برای همیشه حذف کنید؟" @@ -982,7 +904,7 @@ msgstr[0] "یک نویسنده در این بلاگ است: " msgstr[1] "{0} نویسنده در این بلاگ هستند: " msgid "No posts to see here yet." -msgstr "هنوز نوشته‌ای برای دیدن وجود ندارد." +msgstr "هنوز فرسته‌ای برای دیدن وجود ندارد." msgid "Nothing to see here yet." msgstr "هنوز اینجا چیزی برای دیدن نیست." @@ -1006,16 +928,10 @@ msgid "Plume is a decentralized blogging engine." msgstr "پلوم یک موتور بلاگ‌نویسی غیرمتمرکز است." msgid "Authors can manage multiple blogs, each as its own website." -msgstr "" -"نویسندگان می‌توانند چندین بلاگ را مدیریت کنند که هر کدام‌شان مانند یک پایگاه " -"وب مستقل هستند." +msgstr "نویسندگان می‌توانند چندین بلاگ را مدیریت کنند که هر کدام‌شان مانند یک پایگاه وب مستقل هستند." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -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 "قوانین کامل را مطالعه کنید" @@ -1042,7 +958,7 @@ msgid "Advanced search" msgstr "جستجوی پیشرفته" msgid "Article title matching these words" -msgstr "عنوان مطلب با این واژگان انطباق داشته باشد" +msgstr "عنوان مقاله با این واژگان انطباق داشته باشد" msgid "Subtitle matching these words" msgstr "زیرعنوان با این واژگان انطباق داشته باشد" @@ -1066,19 +982,19 @@ msgid "Tags" msgstr "برچسب‌ها" msgid "Posted on one of these instances" -msgstr "منتشر شده روی یکی از این نمونه‌ها" +msgstr "فرستاده شده روی یکی از این نمونه‌ها" msgid "Instance domain" msgstr "دامنهٔ نمونه" msgid "Posted by one of these authors" -msgstr "منتشر شده توسط یکی از این نویسندگان" +msgstr "فرستاده شده توسط یکی از این نویسندگان" msgid "Author(s)" msgstr "نویسنده(ها)" msgid "Posted on one of these blogs" -msgstr "منتشر شده روی یکی از این بلاگ‌ها" +msgstr "فرستاده شده روی یکی از این بلاگ‌ها" msgid "Blog title" msgstr "عنوان بلاگ" @@ -1093,4 +1009,5 @@ msgid "Published under this license" msgstr "منتشر شده تحت این پروانه" msgid "Article license" -msgstr "پروانهٔ نوشته" +msgstr "پروانهٔ مقاله" + diff --git a/po/plume/fi.po b/po/plume/fi.po index 1afbec1d..1c92e5c4 100644 --- a/po/plume/fi.po +++ b/po/plume/fi.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "Valinnainen" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Luodaksesi blogin sinun tulee olla sisäänkirjautuneena" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Saman niminen blogi on jo olemassa." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Blogisi luotiin onnistuneesti!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Blogisi poistettiin." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Sinulla ei ole oikeutta poistaa tätä blogia." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Sinulla ei ole oikeutta muokata tätä blogia." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Et voi käyttää tätä mediaa blogin ikonina." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Et voi käyttää tätä mediaa blogin bannerina." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Blogisi tiedot on päivitetty." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Kommentisi lähetettiin." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Sisältösi poistettiin." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Instanssin asetukset on tallennettu." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Tykätäksesi postauksesta sinun tulee olla sisäänkirjautuneena" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Mediasi on poistettu." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Sinulla ei ole oikeutta poistaa tätä mediaa." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Avatarisi on päivitetty." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Sinulla ei ole oikeutta käyttää tätä mediaa." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Nähdäksesi ilmoituksesi sinun tulee olla sisäänkirjautuneena" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Tätä postausta ei ole vielä julkaistu." @@ -177,122 +177,112 @@ msgstr "Tätä postausta ei ole vielä julkaistu." msgid "To write a new post, you need to be logged in" msgstr "Kirjoittaaksesi uuden postauksen sinun tulee olla sisäänkirjautuneena" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Et ole tämän blogin kirjoittaja." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Uusi postaus" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Muokkaa {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Sinulla ei ole oikeutta julkaista tällä blogilla." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Artikkeli päivitetty." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Artikkeli on tallennettu." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Uusi artikkeli" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Sinulla ei ole oikeutta poistaa tätä artikkelia." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Artikkelisi on poistettu." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Näyttää siltä, että koetat poistaa artikkelia jota ei ole olemassa. Ehkä se " -"on jo poistettu?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Näyttää siltä, että koetat poistaa artikkelia jota ei ole olemassa. Ehkä se on jo poistettu?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Tunnuksestasi ei saatu haettua tarpeeksi tietoja. Varmistathan että " -"käyttäjätunkuksesi on oikein." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Tunnuksestasi ei saatu haettua tarpeeksi tietoja. Varmistathan että käyttäjätunkuksesi on oikein." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Uudelleenjakaaksesi postauksen sinun tulee olla sisäänkirjatuneena" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Olette nyt yhdistetty." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -451,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -483,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -556,10 +543,7 @@ 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." +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 "You are not authorized." @@ -643,21 +627,13 @@ msgstr "Oletus lisenssi artikelleille" msgid "Save these settings" msgstr "Tallenna nämä asetukset" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "Jos aelailet tätä sivua vierailijana, sinusta ei kerätä yhtään dataa." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -666,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -678,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -760,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -820,9 +787,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -879,9 +844,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -890,9 +853,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -907,8 +868,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -970,9 +930,7 @@ msgstr "" 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." +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" @@ -1052,3 +1010,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/fr.po b/po/plume/fr.po index 3ed3f8dd..dfe84e14 100644 --- a/po/plume/fr.po +++ b/po/plume/fr.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-12-11 15:00\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -23,7 +23,7 @@ msgstr "{0} a commenté votre article." # src/template_utils.rs:106 msgid "{0} is subscribed to you." -msgstr "{0} est abonné à vous." +msgstr "{0} vous suit." # src/template_utils.rs:107 msgid "{0} liked your article." @@ -65,59 +65,59 @@ msgstr "Page suivante" msgid "Optional" msgstr "Optionnel" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Vous devez vous connecter pour créer un nouveau blog" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Un blog avec le même nom existe déjà." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" -msgstr "Votre blog a été créé avec succès!" +msgstr "Votre blog a été créé avec succès !" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Votre blog a été supprimé." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Vous n'êtes pas autorisé⋅e à supprimer ce blog." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Vous n'êtes pas autorisé à éditer ce blog." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Vous ne pouvez pas utiliser ce media comme icône de blog." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Vous ne pouvez pas utiliser ce media comme illustration de blog." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Les informations de votre blog ont été mise à jour." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Votre commentaire a été publié." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Votre commentaire a été supprimé." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Les paramètres de votre instance ont été enregistrés." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "{} a été débloqué⋅e." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{} a été bloqué⋅e." @@ -125,51 +125,51 @@ msgstr "{} a été bloqué⋅e." msgid "Blocks deleted" msgstr "Blocages supprimés" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" -msgstr "" +msgstr "E-mail déjà bloqué" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" -msgstr "Adresse email bloquée" +msgstr "E-mail bloqué" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "Vous ne pouvez pas changer vos propres droits." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "Vous n'avez pas l'autorisation d'effectuer cette action." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "Terminé." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Vous devez vous connecter pour aimer un article" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Votre média a été supprimé." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Vous n'êtes pas autorisé à supprimer ce média." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Votre avatar a été mis à jour." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Vous n'êtes pas autorisé à utiliser ce média." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Vous devez vous connecter pour voir vos notifications" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Cet article n’est pas encore publié." @@ -177,125 +177,113 @@ msgstr "Cet article n’est pas encore publié." msgid "To write a new post, you need to be logged in" msgstr "Vous devez vous connecter pour écrire un nouvel article" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Vous n'êtes pas auteur⋅rice de ce blog." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Nouvel article" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Modifier {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Vous n'êtes pas autorisé à publier sur ce blog." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Votre article a été mis à jour." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Votre article a été enregistré." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Nouvel article" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Vous n'êtes pas autorisé à supprimer cet article." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Votre article a été supprimé." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Il semble que l'article que vous avez essayé de supprimer n'existe pas. Peut-" -"être a-t-il déjà été supprimé ?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Il semble que l'article que vous avez essayé de supprimer n'existe pas. Peut-être a-t-il déjà été supprimé ?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Nous n'avons pas pu obtenir assez d'informations à propos de votre compte. " -"Veuillez vous assurer que votre nom d'utilisateur est correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Nous n'avons pas pu obtenir assez d'informations à propos de votre compte. Veuillez vous assurer que votre nom d'utilisateur est correct." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Vous devez vous connecter pour partager un article" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Vous êtes maintenant connecté." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Vous êtes maintenant déconnecté." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Réinitialisation du mot de passe" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Voici le lien pour réinitialiser votre mot de passe : {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Votre mot de passe a été réinitialisé avec succès." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Vous devez vous connecter pour accéder à votre tableau de bord" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Vous ne suivez plus {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Vous suivez maintenant {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Vous devez vous connecter pour vous abonner à quelqu'un" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" -msgstr "Vous devez vous connecter pour pour modifier votre profil" +msgstr "Vous devez vous connecter pour modifier votre profil" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Votre profil a été mis à jour." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Votre compte a été supprimé." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Vous ne pouvez pas supprimer le compte d'une autre personne." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." -msgstr "Les inscriptions sont fermées dans cette instance." +msgstr "Les inscriptions sont fermées sur cette instance." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" -"Votre compte a été créé. Vous avez juste à vous connecter, avant de pouvoir " -"l'utiliser." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "Votre compte a été créé. Vous avez juste à vous connecter, avant de pouvoir l'utiliser." msgid "Media upload" msgstr "Téléversement de média" @@ -304,15 +292,13 @@ msgid "Description" msgstr "Description" msgid "Useful for visually impaired people, as well as licensing information" -msgstr "" -"Utile pour les personnes malvoyantes, ainsi que pour les informations de " -"licence" +msgstr "Utile pour les personnes malvoyantes, ainsi que pour les informations de licence" msgid "Content warning" msgstr "Avertissement" msgid "Leave it empty, if none is needed" -msgstr "Laisser vide, si aucun n'est nécessaire" +msgstr "Laissez vide, si aucun avertissement n'est nécessaire" msgid "File" msgstr "Fichier" @@ -348,7 +334,7 @@ msgid "Markdown syntax" msgstr "Syntaxe markdown" msgid "Copy it into your articles, to insert this media:" -msgstr "Copiez-le dans vos articles, à insérer ce média :" +msgstr "Copiez-le dans vos articles, pour insérer ce média :" msgid "Use as an avatar" msgstr "Utiliser comme avatar" @@ -455,12 +441,8 @@ msgstr "Mot de passe" msgid "Password confirmation" msgstr "Confirmation du mot de passe" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Désolé, mais les inscriptions sont fermées sur cette instance en " -"particulier. Vous pouvez, toutefois, en trouver une autre." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Désolé, mais les inscriptions sont fermées sur cette instance en particulier. Vous pouvez, toutefois, en trouver une autre." msgid "{0}'s subscriptions" msgstr "Abonnements de {0}" @@ -472,9 +454,7 @@ msgid "Your Blogs" msgstr "Vos Blogs" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" -"Vous n'avez pas encore de blog. Créez votre propre blog, ou demandez de vous " -"joindre à un." +msgstr "Vous n'avez pas encore de blog. Créez votre propre blog, ou demandez de vous joindre à un." msgid "Start a new blog" msgstr "Commencer un nouveau blog" @@ -489,13 +469,10 @@ msgid "Edit your account" msgstr "Modifier votre compte" msgid "Your Profile" -msgstr "Votre Profile" +msgstr "Votre Profil" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"Pour modifier votre avatar, téléversez-le dans votre galerie et sélectionner " -"à partir de là." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "Pour modifier votre avatar, téléversez-le dans votre galerie puis sélectionnez-le à partir de là." msgid "Upload an avatar" msgstr "Téléverser un avatar" @@ -531,9 +508,7 @@ msgid "Delete your account" msgstr "Supprimer votre compte" msgid "Sorry, but as an admin, you can't leave your own instance." -msgstr "" -"Désolé, mais en tant qu'administrateur, vous ne pouvez pas laisser votre " -"propre instance." +msgstr "Désolé, mais en tant qu'administrateur, vous ne pouvez pas quitter votre propre instance." msgid "Latest articles" msgstr "Derniers articles" @@ -563,21 +538,13 @@ msgid "Something broke on our side." msgstr "Nous avons cassé quelque chose." msgid "Sorry about that. If you think this is a bug, please report it." -msgstr "" -"Nous sommes désolé⋅e⋅s. Si vous pensez que c’est un bogue, merci de le " -"signaler." +msgstr "Nous sommes désolé⋅e⋅s. Si vous pensez que c’est un bogue, merci de le signaler." msgid "Invalid CSRF token" msgstr "Jeton CSRF invalide" -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 "" -"Quelque chose ne va pas avec votre jeton CSRF. Assurez-vous que les cookies " -"sont activés dans votre navigateur, et essayez de recharger cette page. Si " -"vous continuez à voir cette erreur, merci de la signaler." +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 "Quelque chose ne va pas avec votre jeton CSRF. Assurez-vous que les cookies sont activés dans votre navigateur, et essayez de recharger cette page. Si vous continuez à voir cette erreur, merci de la signaler." msgid "You are not authorized." msgstr "Vous n’avez pas les droits." @@ -601,7 +568,7 @@ msgid "Instances" msgstr "Instances" msgid "Email blocklist" -msgstr "Liste noire des emails" +msgstr "Liste des e-mails proscrits" msgid "Grant admin rights" msgstr "Accorder les droits d'administration" @@ -619,7 +586,7 @@ msgid "Ban" msgstr "Bannir" msgid "Run on selected users" -msgstr "Exécuter sur les utilisateurices sélectionné⋅e⋅s" +msgstr "Appliquer aux utilisateurices sélectionné⋅e⋅s" msgid "Moderator" msgstr "Modérateurice" @@ -660,47 +627,23 @@ msgstr "Licence d'article par défaut" msgid "Save these settings" msgstr "Sauvegarder ces paramètres" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"Si vous naviguez sur ce site en tant que visiteur, aucune donnée ne vous " -"concernant n'est collectée." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Si vous naviguez sur ce site en tant que visiteur, aucune donnée ne vous concernant n'est collectée." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"En tant qu'utilisateur enregistré, vous devez fournir votre nom " -"d'utilisateur (qui n'est pas forcément votre vrai nom), votre adresse e-mail " -"fonctionnelle et un mot de passe, afin de pouvoir vous connecter, écrire des " -"articles et commenter. Le contenu que vous soumettez est stocké jusqu'à ce " -"que vous le supprimiez." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "En tant qu'utilisateur enregistré, vous devez fournir votre nom d'utilisateur (qui n'est pas forcément votre vrai nom), votre adresse e-mail fonctionnelle et un mot de passe, afin de pouvoir vous connecter, écrire des articles et commenter. Le contenu que vous soumettez est stocké jusqu'à ce que vous le supprimiez." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Lorsque vous vous connectez, nous stockons deux cookies, l'un pour garder " -"votre session ouverte, le second pour empêcher d'autres personnes d'agir en " -"votre nom. Nous ne stockons aucun autre cookie." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Lorsque vous vous connectez, nous stockons deux cookies, l'un pour garder votre session ouverte, le second pour empêcher d'autres personnes d'agir en votre nom. Nous ne stockons aucun autre cookie." msgid "Blocklisted Emails" msgstr "Emails bloqués" msgid "Email address" -msgstr "Adresse mail" +msgstr "Adresse e-mail" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" -"L'adresse e-mail que vous souhaitez bloquer. Pour bloquer des domaines, vous " -"pouvez utiliser la syntaxe : '*@example.com' qui bloque toutes les adresses " -"du domain exemple.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "L'adresse e-mail que vous souhaitez bloquer. Pour bloquer des domaines, vous pouvez utiliser la syntaxe : '*@example.com' qui bloque toutes les adresses du domaine exemple.com" msgid "Note" msgstr "Note" @@ -708,21 +651,14 @@ msgstr "Note" msgid "Notify the user?" msgstr "Notifier l'utilisateurice ?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" -"Optionnel, affiche un message lors de la création d'un compte avec cette " -"adresse" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "Optionnel, affiche un message lors de la création d'un compte avec cette adresse" msgid "Blocklisting notification" msgstr "Notification de blocage" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" -"Le message à afficher lors de la création d'un compte avec cette adresse mail" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "Le message à afficher lors de la création d'un compte avec cette adresse e-mail" msgid "Add blocklisted address" msgstr "Bloquer une adresse" @@ -734,7 +670,7 @@ msgid "Delete selected emails" msgstr "Supprimer le(s) adresse(s) sélectionnée(s)" msgid "Email address:" -msgstr "Adresse mail:" +msgstr "Adresse e-mail:" msgid "Blocklisted for:" msgstr "Bloqué pour :" @@ -793,12 +729,8 @@ msgstr "Sous-titre" msgid "Content" msgstr "Contenu" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Vous pouvez télécharger des médias dans votre galerie, et copier leur code " -"Markdown dans vos articles pour les insérer." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Vous pouvez télécharger des médias dans votre galerie, et copier leur code Markdown dans vos articles pour les insérer." msgid "Upload media" msgstr "Téléverser un média" @@ -855,12 +787,8 @@ msgstr "Je ne veux plus le repartager" msgid "Boost" msgstr "Partager" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Connectez-vous{1}, ou {2}utilisez votre compte sur le Fediverse{3} pour " -"interagir avec cet article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Connectez-vous{1}, ou {2}utilisez votre compte sur le Fediverse{3} pour interagir avec cet article" msgid "Comments" msgstr "Commentaires" @@ -878,9 +806,7 @@ msgid "Are you sure?" msgstr "Êtes-vous sûr⋅e ?" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"Cet article est toujours un brouillon. Seuls vous et les autres auteur·e·s " -"peuvent le voir." +msgstr "Cet article est toujours un brouillon. Seuls vous et les autres auteur·e·s peuvent le voir." msgid "Only you and other authors can edit this article." msgstr "Seuls vous et les autres auteur·e·s peuvent modifier cet article." @@ -916,14 +842,10 @@ msgid "Update password" msgstr "Mettre à jour le mot de passe" msgid "Check your inbox!" -msgstr "Vérifiez votre boîte de réception!" +msgstr "Vérifiez votre boîte de réception !" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "" -"Nous avons envoyé un mail à l'adresse que vous nous avez donnée, avec un " -"lien pour réinitialiser votre mot de passe." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "Nous avons envoyé un mail à l'adresse que vous nous avez donnée, avec un lien pour réinitialiser votre mot de passe." msgid "Send password reset link" msgstr "Envoyer un lien pour réinitialiser le mot de passe" @@ -931,12 +853,8 @@ msgstr "Envoyer un lien pour réinitialiser le mot de passe" msgid "This token has expired" msgstr "Ce jeton a expiré" -msgid "" -"Please start the process again by clicking here." -msgstr "" -"Veuillez recommencer le processus en cliquant ici." +msgid "Please start the process again by clicking here." +msgstr "Veuillez recommencer le processus en cliquant ici." msgid "New Blog" msgstr "Nouveau Blog" @@ -950,11 +868,8 @@ msgstr "Créer le blog" msgid "Edit \"{}\"" msgstr "Modifier \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Vous pouvez téléverser des images dans votre galerie, pour les utiliser " -"comme icônes de blog ou illustrations." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Vous pouvez téléverser des images dans votre galerie, pour les utiliser comme icônes de blog ou illustrations." msgid "Upload images" msgstr "Téléverser des images" @@ -1013,17 +928,10 @@ msgid "Plume is a decentralized blogging engine." msgstr "Plume est un moteur de blog décentralisé." msgid "Authors can manage multiple blogs, each as its own website." -msgstr "" -"Les auteurs peuvent avoir plusieurs blogs, chacun étant comme un site " -"indépendant." +msgstr "Les auteurs peuvent avoir plusieurs blogs, chacun étant comme un site indépendant." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Les articles sont également visibles sur d'autres instances Plume, et vous " -"pouvez interagir avec eux directement à partir d'autres plateformes comme " -"Mastodon." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Les articles sont également visibles sur d'autres instances Plume, et vous pouvez interagir avec eux directement à partir d'autres plateformes comme Mastodon." msgid "Read the detailed rules" msgstr "Lire les règles détaillées" @@ -1068,7 +976,7 @@ msgid "To this date" msgstr "Avant cette date" msgid "Containing these tags" -msgstr "Avec ces tags" +msgstr "Avec ces étiquettes" msgid "Tags" msgstr "Étiquettes" @@ -1102,3 +1010,4 @@ msgstr "Placé sous cette licence" msgid "Article license" msgstr "Licence de l'article" + diff --git a/po/plume/gl.po b/po/plume/gl.po index f8305fec..07e36280 100644 --- a/po/plume/gl.po +++ b/po/plume/gl.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Galician\n" "Language: gl_ES\n" @@ -65,59 +65,59 @@ msgstr "Páxina seguinte" msgid "Optional" msgstr "Opcional" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Para crear un novo blog debes estar conectada" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Xa existe un blog co mesmo nome." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "O teu blog creouse correctamente!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Eliminaches o blog." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Non tes permiso para eliminar este blog." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Non podes editar este blog." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Non podes utilizar este medio como icona do blog." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Non podes utilizar este medio como cabeceira do blog." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Actualizouse a información sobre o blog." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "O teu comentario foi publicado." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Eliminouse o comentario." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Gardáronse os axustes das instancia." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "{} foi desbloqueada." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{} foi bloqueada." @@ -125,51 +125,51 @@ msgstr "{} foi bloqueada." msgid "Blocks deleted" msgstr "Bloqueos eliminados" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" -msgstr "" +msgstr "O email xa está bloqueado" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "Email bloqueado" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "Non podes cambiar os teus propios permisos." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "Non tes permiso para realizar esta acción." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "Feito." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Para darlle a gústame, debes estar conectada" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Eliminouse o ficheiro de medios." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Non tes permiso para eliminar este ficheiro." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Actualizouse o avatar." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Non tes permiso para usar este ficheiro de medios." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Para ver as túas notificacións, debes estar conectada" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Esto é un borrador, non publicar por agora." @@ -177,121 +177,112 @@ msgstr "Esto é un borrador, non publicar por agora." msgid "To write a new post, you need to be logged in" msgstr "Para escribir un novo artigo, debes estar conectada" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Non es autora de este blog." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Novo artigo" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Editar {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Non tes permiso para publicar en este blog." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Actualizouse o artigo." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Gardouse o artigo." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Novo artigo" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Non tes permiso para eliminar este artigo." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Eliminouse o artigo." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Semella que o artigo que quere eliminar non existe. Igual xa foi eliminado?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Semella que o artigo que quere eliminar non existe. Igual xa foi eliminado?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Non se puido obter información suficiente sobre a súa conta. Por favor " -"asegúrese de que o nome de usuaria é correcto." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Non se puido obter información suficiente sobre a súa conta. Por favor asegúrese de que o nome de usuaria é correcto." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Para compartir un artigo, debe estar conectada" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Está conectada." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Está desconectada." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Restablecer contrasinal" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Aquí está a ligazón para restablecer o contrasinal: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "O contrasinal restableceuse correctamente." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Para acceder ao taboleiro, debes estar conectada" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Xa non está a seguir a {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Está a seguir a {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Para suscribirse a un blog, debe estar conectada" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "Para editar o seu perfil, debe estar conectada" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Actualizouse o perfil." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Eliminouse a túa conta." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Non pode eliminar a conta de outra persoa." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "O rexistro está pechado en esta instancia." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "Creouse a túa conta. Agora só tes que conectarte para poder utilizala." msgid "Media upload" @@ -301,8 +292,7 @@ msgid "Description" msgstr "Descrición" msgid "Useful for visually impaired people, as well as licensing information" -msgstr "" -"Útil para persoas con deficiencias visuais, así como información da licenza" +msgstr "Útil para persoas con deficiencias visuais, así como información da licenza" msgid "Content warning" msgstr "Aviso sobre o contido" @@ -401,7 +391,7 @@ msgid "It is you" msgstr "Es ti" msgid "Edit your profile" -msgstr "Edite o seu perfil" +msgstr "Edita o teu perfil" msgid "Open on {0}" msgstr "Aberto en {0}" @@ -451,12 +441,8 @@ msgstr "Contrasinal" msgid "Password confirmation" msgstr "Confirmación do contrasinal" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Desculpe, pero o rexistro en esta instancia está pechado. Porén pode atopar " -"outra no fediverso." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Desculpe, pero o rexistro en esta instancia está pechado. Porén pode atopar outra no fediverso." msgid "{0}'s subscriptions" msgstr "Suscricións de {0}" @@ -485,11 +471,8 @@ msgstr "Edite a súa conta" msgid "Your Profile" msgstr "O seu Perfil" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"Para cambiar o avatar, suba a imaxe a súa galería e despois escollaa desde " -"alí." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "Para cambiar o avatar, suba a imaxe a súa galería e despois escollaa desde alí." msgid "Upload an avatar" msgstr "Subir un avatar" @@ -525,9 +508,7 @@ msgid "Delete your account" msgstr "Eliminar a súa conta" msgid "Sorry, but as an admin, you can't leave your own instance." -msgstr "" -"Lamentámolo, pero como administradora, non pode deixar a súa propia " -"instancia." +msgstr "Lamentámolo, pero como administradora, non pode deixar a súa propia instancia." msgid "Latest articles" msgstr "Últimos artigos" @@ -562,14 +543,8 @@ msgstr "Lamentálmolo. Si cree que é un bug, infórmenos por favor." msgid "Invalid CSRF token" msgstr "Testemuño CSRF non válido" -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 "" -"Hai un problema co seu testemuño CSRF. Asegúrese de ter as cookies activadas " -"no navegador, e recargue a páxina. Si persiste o aviso de este fallo, " -"informe por favor." +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 "Hai un problema co seu testemuño CSRF. Asegúrese de ter as cookies activadas no navegador, e recargue a páxina. Si persiste o aviso de este fallo, informe por favor." msgid "You are not authorized." msgstr "Non ten permiso." @@ -652,29 +627,14 @@ msgstr "Licenza por omisión dos artigos" msgid "Save these settings" msgstr "Gardar estas preferencias" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "Se estás lendo esta web como visitante non se recollen datos sobre ti." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"Como usuaria rexistrada, tes que proporcionar un nome de usuaria (que non " -"ten que ser o teu nome real), un enderezo activo de correo electrónico e un " -"contrasinal, para poder conectarte, escribir artigos e comentar. O contido " -"que envíes permanece ata que o borres." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Como usuaria rexistrada, tes que proporcionar un nome de usuaria (que non ten que ser o teu nome real), un enderezo activo de correo electrónico e un contrasinal, para poder conectarte, escribir artigos e comentar. O contido que envíes permanece ata que o borres." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Cando te conectas, gardamos dous testemuños, un para manter a sesión aberta " -"e o segundo para previr que outra xente actúe no teu nome. Non gardamos máis " -"testemuños." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Cando te conectas, gardamos dous testemuños, un para manter a sesión aberta e o segundo para previr que outra xente actúe no teu nome. Non gardamos máis testemuños." msgid "Blocklisted Emails" msgstr "Emails na lista de bloqueo" @@ -682,14 +642,8 @@ msgstr "Emails na lista de bloqueo" msgid "Email address" msgstr "Enderezo de email" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" -"O enderezo de email que queres bloquear. Para poder bloquear dominios, podes " -"usar sintaxe globbing, por exemplo '*@exemplo.com' bloquea todos os " -"enderezos de exemplo.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "O enderezo de email que queres bloquear. Para poder bloquear dominios, podes usar sintaxe globbing, por exemplo '*@exemplo.com' bloquea todos os enderezos de exemplo.com" msgid "Note" msgstr "Nota" @@ -697,22 +651,14 @@ msgstr "Nota" msgid "Notify the user?" msgstr "Notificar a usuaria?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" -"Optativo, mostra unha mensaxe a usuaria cando intenta crear unha conta con " -"ese enderezo" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "Optativo, mostra unha mensaxe a usuaria cando intenta crear unha conta con ese enderezo" msgid "Blocklisting notification" msgstr "Notificación do bloqueo" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" -"A mensaxe será amosada cando a usuaria intente crear unha conta on ese " -"enderezo de email" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "A mensaxe será amosada cando a usuaria intente crear unha conta on ese enderezo de email" msgid "Add blocklisted address" msgstr "Engadir a lista de bloqueo" @@ -783,12 +729,8 @@ msgstr "Subtítulo" msgid "Content" msgstr "Contido" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Pode subir medios a galería e despois copiar o seu código Markdown nos " -"artigos para incrustalos." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Pode subir medios a galería e despois copiar o seu código Markdown nos artigos para incrustalos." msgid "Upload media" msgstr "Subir medios" @@ -845,12 +787,8 @@ msgstr "Xa non quero promocionar este artigo" msgid "Boost" msgstr "Promover" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Conectar{1}, ou {2}utilice a súa conta no Fediverso{3} para interactuar " -"con este artigo" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Conectar{1}, ou {2}utilice a súa conta no Fediverso{3} para interactuar con este artigo" msgid "Comments" msgstr "Comentarios" @@ -906,12 +844,8 @@ msgstr "Actualizar contrasinal" msgid "Check your inbox!" msgstr "Comprobe o seu correo!" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "" -"Enviamoslle un correo ao enderezo que nos deu, con unha ligazón para " -"restablecer o contrasinal." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "Enviamoslle un correo ao enderezo que nos deu, con unha ligazón para restablecer o contrasinal." msgid "Send password reset link" msgstr "Enviar ligazón para restablecer contrasinal" @@ -919,11 +853,8 @@ msgstr "Enviar ligazón para restablecer contrasinal" msgid "This token has expired" msgstr "O testemuño caducou" -msgid "" -"Please start the process again by clicking here." -msgstr "" -"Inicia o preceso de novo premendo aquí." +msgid "Please start the process again by clicking here." +msgstr "Inicia o preceso de novo premendo aquí." msgid "New Blog" msgstr "Novo Blog" @@ -937,10 +868,8 @@ msgstr "Crear blog" msgid "Edit \"{}\"" msgstr "Editar \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Pode subir imaxes a súa galería, e utilizalas como iconas do blog ou banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Pode subir imaxes a súa galería, e utilizalas como iconas do blog ou banners." msgid "Upload images" msgstr "Subir imaxes" @@ -999,15 +928,10 @@ msgid "Plume is a decentralized blogging engine." msgstr "Plume é un motor de publicación descentralizada." msgid "Authors can manage multiple blogs, each as its own website." -msgstr "" -"As autoras poden xestionar múltiples blogs, cada un no seu propio sitio web." +msgstr "As autoras poden xestionar múltiples blogs, cada un no seu propio sitio web." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Os artigos tamén son visibles en outras instancias Plume, e pode interactuar " -"con eles directamente ou desde plataformas como Mastodon." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Os artigos tamén son visibles en outras instancias Plume, e pode interactuar con eles directamente ou desde plataformas como Mastodon." msgid "Read the detailed rules" msgstr "Lea o detalle das normas" @@ -1086,3 +1010,4 @@ msgstr "Publicado baixo esta licenza" msgid "Article license" msgstr "Licenza do artigo" + diff --git a/po/plume/he.po b/po/plume/he.po index d9b93e25..3de38a57 100644 --- a/po/plume/he.po +++ b/po/plume/he.po @@ -3,15 +3,14 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3;\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" "X-Crowdin-Project: plume\n" "X-Crowdin-Project-ID: 352097\n" "X-Crowdin-Language: he\n" @@ -66,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -126,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -178,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -448,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -480,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -553,10 +543,7 @@ 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." +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 "You are not authorized." @@ -640,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -663,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -675,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -757,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -821,9 +791,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -880,9 +848,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -891,9 +857,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -908,8 +872,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -973,9 +936,7 @@ msgstr "" 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." +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" @@ -1055,3 +1016,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/hi.po b/po/plume/hi.po index 345abf01..1c666804 100644 --- a/po/plume/hi.po +++ b/po/plume/hi.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Language: hi_IN\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "वैकल्पिक" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "नया ब्लॉग बनाने के लिए आपको लोग इन करना होगा" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "ये नाम से पहले ही एक ब्लॉग है" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "आपको ये ब्लॉग डिलीट करने की अनुमति नहीं है" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "आपको ये ब्लॉग में बदलाव करने की अनुमति नहीं है" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "इस फोटो को ब्लॉग आइकॉन के लिए इस्तेमाल नहीं कर सकते" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "इस media को blog banner के लिए इस्तेमाल नहीं कर सकते" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Post को like करने के लिए आपको log in करना होगा" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Notifications देखने के लिए आपको log in करना होगा" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "इस post को publish नहीं किया गया है" @@ -177,120 +177,112 @@ msgstr "इस post को publish नहीं किया गया है" msgid "To write a new post, you need to be logged in" msgstr "नया post लिखने के लिए आपको log in करना होगा" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "आप इस blog के लेखक नहीं हैं" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "नया post" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Edit करें {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "नया लेख" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"आपके अकाउंट के बारे में पर्याप्त जानकारी नहीं मिल पायी. कृपया जांच करें की आपका यूजरनाम " -"सही है." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "आपके अकाउंट के बारे में पर्याप्त जानकारी नहीं मिल पायी. कृपया जांच करें की आपका यूजरनाम सही है." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Post reshare करने के लिए आपको log in करना होगा" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "पासवर्ड रीसेट करें" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "आपका पासवर्ड रिसेट करने का लिंक: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "आपका पासवर्ड रिसेट कर दिया गया है" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "डैशबोर्ड पर जाने के लिए, लोग इन करें" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "सब्सक्राइब करने के लिए, लोग इन करें" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "प्रोफाइल में बदलाव करने के लिए, लोग इन करें" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -449,9 +441,7 @@ msgstr "पासवर्ड" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -481,8 +471,7 @@ msgstr "अपने अकाउंट में बदलाव करें" msgid "Your Profile" msgstr "आपकी प्रोफाइल" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -554,10 +543,7 @@ 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." +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 "You are not authorized." @@ -641,21 +627,13 @@ msgstr "डिफ़ॉल्ट आलेख लायसेंस" msgid "Save these settings" msgstr "इन सेटिंग्स को सेव करें" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -664,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -676,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -758,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -818,12 +787,8 @@ msgstr "मुझे अब इसे बूस्ट नहीं करना msgid "Boost" msgstr "बूस्ट" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}लोग इन करें{1}, या {2}आपके फेडिवेर्से अकाउंट का इस्तेमाल करें{3} इस आर्टिकल से इंटरैक्ट " -"करने के लिए" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}लोग इन करें{1}, या {2}आपके फेडिवेर्से अकाउंट का इस्तेमाल करें{3} इस आर्टिकल से इंटरैक्ट करने के लिए" msgid "Comments" msgstr "कमैंट्स" @@ -879,9 +844,7 @@ msgstr "पासवर्ड अपडेट करें" msgid "Check your inbox!" msgstr "आपका इनबॉक्स चेक करें" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "हमने आपके दिए गए इ-मेल पे पासवर्ड रिसेट लिंक भेज दिया है." msgid "Send password reset link" @@ -890,9 +853,7 @@ msgstr "पासवर्ड रिसेट करने के लिए ल msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -907,8 +868,7 @@ msgstr "ब्लॉग बनाएं" msgid "Edit \"{}\"" msgstr "{0} में बदलाव करें" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "आप गैलरी में फोटो दाल कर, उनका ब्लॉग आइकॉन या बैनर के लिए उपयोग कर सकते हैं" msgid "Upload images" @@ -970,9 +930,7 @@ msgstr "" 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." +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" @@ -1052,3 +1010,4 @@ msgstr "इस लिसेंसे के साथ पब्लिश कि msgid "Article license" msgstr "आर्टिकल लाइसेंस" + diff --git a/po/plume/hr.po b/po/plume/hr.po index 3ab5e997..977df768 100644 --- a/po/plume/hr.po +++ b/po/plume/hr.po @@ -3,15 +3,14 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Croatian\n" "Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Crowdin-Project: plume\n" "X-Crowdin-Project-ID: 352097\n" "X-Crowdin-Language: hr\n" @@ -66,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -126,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Ovaj post još nije objavljen." @@ -178,118 +177,112 @@ msgstr "Ovaj post još nije objavljen." msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Ti ne autor ovog bloga." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Novi članak" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Uredi {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Poništavanje zaporke" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -448,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -480,8 +471,7 @@ msgstr "Uredite svoj račun" msgid "Your Profile" msgstr "Tvoj Profil" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -553,10 +543,7 @@ 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." +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 "You are not authorized." @@ -640,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -663,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -675,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -757,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -819,9 +789,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -878,9 +846,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -889,9 +855,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -906,8 +870,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -970,9 +933,7 @@ msgstr "" 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." +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" @@ -1052,3 +1013,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/hu.po b/po/plume/hu.po index 21769b85..9a927c98 100644 --- a/po/plume/hu.po +++ b/po/plume/hu.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -177,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -447,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -479,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -552,10 +543,7 @@ 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." +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 "You are not authorized." @@ -639,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -662,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -674,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -756,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -816,9 +787,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -875,9 +844,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -886,9 +853,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -903,8 +868,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -966,9 +930,7 @@ msgstr "" 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." +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" @@ -1048,3 +1010,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/it.po b/po/plume/it.po index ff339e1e..af849868 100644 --- a/po/plume/it.po +++ b/po/plume/it.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -65,59 +65,59 @@ msgstr "Pagina successiva" msgid "Optional" msgstr "Opzionale" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Per creare un nuovo blog, devi avere effettuato l'accesso" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Un blog con lo stesso nome esiste già." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Il tuo blog è stato creato con successo!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Il tuo blog è stato eliminato." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Non ti è consentito di eliminare questo blog." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Non ti è consentito modificare questo blog." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Non puoi utilizzare questo media come icona del blog." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Non puoi utilizzare questo media come copertina del blog." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Le informazioni del tuo blog sono state aggiornate." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Il tuo commento è stato pubblicato." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Il tuo commento è stato eliminato." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Le impostazioni dell'istanza sono state salvate." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "{} è stato sbloccato." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{} è stato bloccato." @@ -125,51 +125,51 @@ msgstr "{} è stato bloccato." msgid "Blocks deleted" msgstr "Blocco eliminato" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "Email Bloccata" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "Non puoi modificare i tuoi diritti." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "Non puoi compiere quest'azione." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "Fatto." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Per mettere mi piace ad un post, devi avere effettuato l'accesso" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "I tuoi media sono stati eliminati." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Non ti è consentito rimuovere questo media." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "La tua immagine di profilo è stata aggiornata." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Non ti è consentito utilizzare questo media." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Per vedere le tue notifiche, devi avere effettuato l'accesso" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Questo post non è ancora stato pubblicato." @@ -177,125 +177,113 @@ msgstr "Questo post non è ancora stato pubblicato." msgid "To write a new post, you need to be logged in" msgstr "Per scrivere un nuovo post, devi avere effettuato l'accesso" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Non sei un autore di questo blog." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Nuovo post" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Modifica {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Non ti è consentito pubblicare su questo blog." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Il tuo articolo è stato aggiornato." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Il tuo articolo è stato salvato." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Nuovo articolo" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Non è consentito eliminare questo articolo." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Il tuo articolo è stato eliminato." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Sembra che l'articolo che cerchi di eliminare non esista. Forse è già stato " -"cancellato?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Sembra che l'articolo che cerchi di eliminare non esista. Forse è già stato cancellato?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Non è stato possibile ottenere abbastanza informazioni sul tuo account. Per " -"favore assicurati che il tuo nome utente sia corretto." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Non è stato possibile ottenere abbastanza informazioni sul tuo account. Per favore assicurati che il tuo nome utente sia corretto." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Per ricondividere un post, devi avere effettuato l'accesso" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Ora sei connesso." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Ti sei disconnesso." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Reimposta password" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Qui c'è il collegamento per reimpostare la tua password: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "La tua password è stata reimpostata con successo." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Per accedere al tuo pannello, devi avere effettuato l'accesso" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Non stai più seguendo {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Ora stai seguendo {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Per iscriverti a qualcuno, devi avere effettuato l'accesso" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "Per modificare il tuo profilo, devi avere effettuato l'accesso" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Il tuo profilo è stato aggiornato." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Il tuo account è stato eliminato." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Non puoi eliminare l'account di qualcun altro." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "Le registrazioni sono chiuse su questa istanza." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" -"Il tuo account è stato creato. Ora devi solo effettuare l'accesso prima di " -"poterlo utilizzare." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "Il tuo account è stato creato. Ora devi solo effettuare l'accesso prima di poterlo utilizzare." msgid "Media upload" msgstr "Caricamento di un media" @@ -453,12 +441,8 @@ msgstr "Password" msgid "Password confirmation" msgstr "Conferma password" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Spiacenti, ma le registrazioni sono chiuse per questa istanza. Puoi comunque " -"trovarne un'altra." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Spiacenti, ma le registrazioni sono chiuse per questa istanza. Puoi comunque trovarne un'altra." msgid "{0}'s subscriptions" msgstr "Iscrizioni di {0}" @@ -470,9 +454,7 @@ msgid "Your Blogs" msgstr "I Tuoi Blog" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" -"Non hai ancora nessun blog. Creane uno tuo, o chiedi di unirti ad uno " -"esistente." +msgstr "Non hai ancora nessun blog. Creane uno tuo, o chiedi di unirti ad uno esistente." msgid "Start a new blog" msgstr "Inizia un nuovo blog" @@ -489,11 +471,8 @@ msgstr "Modifica il tuo account" msgid "Your Profile" msgstr "Il Tuo Profilo" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"Per modificare la tua immagine di profilo, caricala nella tua galleria e poi " -"selezionala da là." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "Per modificare la tua immagine di profilo, caricala nella tua galleria e poi selezionala da là." msgid "Upload an avatar" msgstr "Carica un'immagine di profilo" @@ -523,8 +502,7 @@ msgid "Danger zone" msgstr "Zona pericolosa" msgid "Be very careful, any action taken here can't be cancelled." -msgstr "" -"Fai molta attenzione, qualsiasi scelta fatta qui non può essere annullata." +msgstr "Fai molta attenzione, qualsiasi scelta fatta qui non può essere annullata." msgid "Delete your account" msgstr "Elimina il tuo account" @@ -565,14 +543,8 @@ msgstr "Scusa per questo. Se pensi sia un bug, per favore segnalacelo." msgid "Invalid CSRF token" msgstr "Token CSRF non valido" -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 "" -"Qualcosa è andato storto con il tuo token CSRF. Assicurati di aver abilitato " -"i cookies nel tuo browser, e prova a ricaricare questa pagina. Se l'errore " -"si dovesse ripresentare, per favore segnalacelo." +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 "Qualcosa è andato storto con il tuo token CSRF. Assicurati di aver abilitato i cookies nel tuo browser, e prova a ricaricare questa pagina. Se l'errore si dovesse ripresentare, per favore segnalacelo." msgid "You are not authorized." msgstr "Non sei autorizzato." @@ -655,31 +627,14 @@ msgstr "Licenza predefinita degli articoli" msgid "Save these settings" msgstr "Salva queste impostazioni" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"Se stai navigando in questo sito come visitatore, non vengono raccolti dati " -"su di te." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Se stai navigando in questo sito come visitatore, non vengono raccolti dati su di te." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"Come utente registrato, devi fornire il tuo nome utente (che può anche non " -"essere il tuo vero nome), un tuo indirizzo email funzionante e una password, " -"per poter accedere, scrivere articoli e commenti. Il contenuto che invii è " -"memorizzato fino a quando non lo elimini." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Come utente registrato, devi fornire il tuo nome utente (che può anche non essere il tuo vero nome), un tuo indirizzo email funzionante e una password, per poter accedere, scrivere articoli e commenti. Il contenuto che invii è memorizzato fino a quando non lo elimini." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Quando accedi, conserviamo due cookie, uno per mantenere aperta la sessione, " -"il secondo per impedire ad altre persone di agire al tuo posto. Non " -"conserviamo nessun altro cookie." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Quando accedi, conserviamo due cookie, uno per mantenere aperta la sessione, il secondo per impedire ad altre persone di agire al tuo posto. Non conserviamo nessun altro cookie." msgid "Blocklisted Emails" msgstr "Email Blocklist" @@ -687,14 +642,8 @@ msgstr "Email Blocklist" msgid "Email address" msgstr "Indirizzo email" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" -"L'indirizzo email che vuoi bloccare. Per bloccare i domini, puoi usare la " -"sintassi di globbing, per esempio '*@example.com' blocca tutti gli indirizzi " -"da example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "L'indirizzo email che vuoi bloccare. Per bloccare i domini, puoi usare la sintassi di globbing, per esempio '*@example.com' blocca tutti gli indirizzi da example.com" msgid "Note" msgstr "Nota" @@ -702,22 +651,14 @@ msgstr "Nota" msgid "Notify the user?" msgstr "Notifica l'utente?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" -"Opzionale, mostra un messaggio all'utente quando tenta di creare un conto " -"con quell'indirizzo" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "Opzionale, mostra un messaggio all'utente quando tenta di creare un conto con quell'indirizzo" msgid "Blocklisting notification" msgstr "Notifica di blocklist" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" -"Il messaggio da mostrare quando l'utente tenta di creare un profilo con " -"questo indirizzo email" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "Il messaggio da mostrare quando l'utente tenta di creare un profilo con questo indirizzo email" msgid "Add blocklisted address" msgstr "Aggiungi indirizzo messo in blocklist" @@ -788,12 +729,8 @@ msgstr "Sottotitolo" msgid "Content" msgstr "Contenuto" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Puoi caricare media nella tua galleria, e poi copiare il loro codice " -"Markdown nei tuoi articoli per inserirli." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Puoi caricare media nella tua galleria, e poi copiare il loro codice Markdown nei tuoi articoli per inserirli." msgid "Upload media" msgstr "Carica media" @@ -850,12 +787,8 @@ msgstr "Non voglio più boostare questo" msgid "Boost" msgstr "Boost" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Accedi{1}, o {2}usa il tuo account del Fediverso{3} per interagire con " -"questo articolo" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Accedi{1}, o {2}usa il tuo account del Fediverso{3} per interagire con questo articolo" msgid "Comments" msgstr "Commenti" @@ -873,9 +806,7 @@ msgid "Are you sure?" msgstr "Sei sicuro?" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"Questo articolo è ancora una bozza. Solo voi e gli altri autori la potete " -"vedere." +msgstr "Questo articolo è ancora una bozza. Solo voi e gli altri autori la potete vedere." msgid "Only you and other authors can edit this article." msgstr "Solo tu e gli altri autori potete modificare questo articolo." @@ -913,12 +844,8 @@ msgstr "Aggiorna password" msgid "Check your inbox!" msgstr "Controlla la tua casella di posta in arrivo!" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "" -"Ti abbiamo inviato una mail all'indirizzo che ci hai fornito, con il " -"collegamento per reimpostare la tua password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "Ti abbiamo inviato una mail all'indirizzo che ci hai fornito, con il collegamento per reimpostare la tua password." msgid "Send password reset link" msgstr "Invia collegamento per reimpostare la password" @@ -926,12 +853,8 @@ msgstr "Invia collegamento per reimpostare la password" msgid "This token has expired" msgstr "Questo token è scaduto" -msgid "" -"Please start the process again by clicking here." -msgstr "" -"Sei pregato di riavviare il processo cliccando qui." +msgid "Please start the process again by clicking here." +msgstr "Sei pregato di riavviare il processo cliccando qui." msgid "New Blog" msgstr "Nuovo Blog" @@ -945,11 +868,8 @@ msgstr "Crea blog" msgid "Edit \"{}\"" msgstr "Modifica \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Puoi caricare immagini nella tua galleria, ed utilizzarle come icone del " -"blog, o copertine." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Puoi caricare immagini nella tua galleria, ed utilizzarle come icone del blog, o copertine." msgid "Upload images" msgstr "Carica immagini" @@ -967,8 +887,7 @@ msgid "Update blog" msgstr "Aggiorna blog" msgid "Be very careful, any action taken here can't be reversed." -msgstr "" -"Fai molta attenzione, qualsiasi scelta fatta qui non può essere annullata." +msgstr "Fai molta attenzione, qualsiasi scelta fatta qui non può essere annullata." msgid "Are you sure that you want to permanently delete this blog?" msgstr "Sei sicuro di voler eliminare permanentemente questo blog?" @@ -1009,16 +928,10 @@ msgid "Plume is a decentralized blogging engine." msgstr "Plume è un motore di blog decentralizzato." msgid "Authors can manage multiple blogs, each as its own website." -msgstr "" -"Gli autori possono gestire blog multipli, ognuno come fosse un sito web " -"differente." +msgstr "Gli autori possono gestire blog multipli, ognuno come fosse un sito web differente." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Gli articoli sono anche visibili su altre istanze Plume, e puoi interagire " -"con loro direttamente da altre piattaforme come Mastodon." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Gli articoli sono anche visibili su altre istanze Plume, e puoi interagire con loro direttamente da altre piattaforme come Mastodon." msgid "Read the detailed rules" msgstr "Leggi le regole dettagliate" @@ -1097,3 +1010,4 @@ msgstr "Pubblicato sotto questa licenza" msgid "Article license" msgstr "Licenza dell'articolo" + diff --git a/po/plume/ja.po b/po/plume/ja.po index fdfc9979..6ab6ee84 100644 --- a/po/plume/ja.po +++ b/po/plume/ja.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -65,59 +65,59 @@ msgstr "次のページ" msgid "Optional" msgstr "省略可" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "新しいブログを作成するにはログインが必要です" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "同じ名前のブログがすでに存在しています。" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "ブログは正常に作成されました。" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "ブログを削除しました。" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "このブログを削除する権限がありません。" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "このブログを編集する権限がありません。" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "このメディアはブログアイコンに使用できません。" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "このメディアはブログバナーに使用できません。" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "ブログ情報を更新しました。" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "コメントを投稿しました。" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "コメントを削除しました。" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "インスタンスの設定を保存しました。" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "{} のブロックを解除しました。" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{} をブロックしました。" @@ -125,51 +125,51 @@ msgstr "{} をブロックしました。" msgid "Blocks deleted" msgstr "ブロックリストから削除しました" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "メールがブロックされました" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "あなた自身の権限は変更できません。" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "この操作を行う権限がありません。" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "完了しました。" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "投稿をいいねするにはログインが必要です" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "メディアを削除しました。" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "このメディアを削除する権限がありません。" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "アバターを更新しました。" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "このメディアを使用する権限がありません。" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "通知を表示するにはログインが必要です" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "この投稿はまだ公開されていません。" @@ -177,121 +177,112 @@ msgstr "この投稿はまだ公開されていません。" msgid "To write a new post, you need to be logged in" msgstr "新しい投稿を書くにはログインが必要です" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "あなたはこのブログの投稿者ではありません。" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "新しい投稿" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "{0} を編集" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "このブログで投稿を公開する権限がありません。" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "投稿を更新しました。" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "投稿を保存しました。" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "新しい投稿" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "この投稿を削除する権限がありません。" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "投稿を削除しました。" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"削除しようとしている投稿は存在しないようです。すでに削除していませんか?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "削除しようとしている投稿は存在しないようです。すでに削除していませんか?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"お使いのアカウントに関する十分な情報を取得できませんでした。ご自身のユーザー" -"名が正しいことを確認してください。" +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "お使いのアカウントに関する十分な情報を取得できませんでした。ご自身のユーザー名が正しいことを確認してください。" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "投稿を再共有するにはログインが必要です" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "接続しました。" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "ログアウトしました。" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "パスワードのリセット" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "こちらのリンクから、パスワードをリセットできます: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "パスワードが正常にリセットされました。" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "ダッシュボードにアクセスするにはログインが必要です" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "{} のフォローを解除しました。" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "{} をフォローしました。" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "誰かをフォローするにはログインが必要です" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "プロフィールを編集するにはログインが必要です" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "プロフィールを更新しました。" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "アカウントを削除しました。" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "他人のアカウントは削除できません。" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "登録はこのインスタンス内に限定されています。" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "アカウントを作成しました。使用前に、ログインする必要があります。" msgid "Media upload" @@ -450,12 +441,8 @@ msgstr "パスワード" msgid "Password confirmation" msgstr "パスワードの確認" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"申し訳ありませんが、このインスタンスでの登録は限定されています。ですが、他の" -"インスタンスを見つけることはできます。" +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "申し訳ありませんが、このインスタンスでの登録は限定されています。ですが、他のインスタンスを見つけることはできます。" msgid "{0}'s subscriptions" msgstr "{0} がフォロー中のユーザー" @@ -467,9 +454,7 @@ msgid "Your Blogs" msgstr "ブログ" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" -"ブログはまだありません。ご自身のブログを作成するか、他の人のブログに参加でき" -"るか確認しましょう。" +msgstr "ブログはまだありません。ご自身のブログを作成するか、他の人のブログに参加できるか確認しましょう。" msgid "Start a new blog" msgstr "新しいブログを開始" @@ -486,8 +471,7 @@ msgstr "アカウントを編集" msgid "Your Profile" msgstr "プロフィール" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "アバターを変更するには、ギャラリーにアップロードして選択してください。" msgid "Upload an avatar" @@ -554,20 +538,13 @@ msgid "Something broke on our side." msgstr "サーバー側で何らかの問題が発生しました。" msgid "Sorry about that. If you think this is a bug, please report it." -msgstr "" -"申し訳ありません。これがバグだと思われる場合は、問題を報告してください。" +msgstr "申し訳ありません。これがバグだと思われる場合は、問題を報告してください。" msgid "Invalid CSRF token" msgstr "無効な CSRF トークンです" -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 "" -"CSRF トークンに問題が発生しました。お使いのブラウザーで Cookie が有効になって" -"いることを確認して、このページを再読み込みしてみてください。このエラーメッ" -"セージが表示され続ける場合は、問題を報告してください。" +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 "CSRF トークンに問題が発生しました。お使いのブラウザーで Cookie が有効になっていることを確認して、このページを再読み込みしてみてください。このエラーメッセージが表示され続ける場合は、問題を報告してください。" msgid "You are not authorized." msgstr "許可されていません。" @@ -650,31 +627,14 @@ msgstr "投稿のデフォルトのライセンス" msgid "Save these settings" msgstr "設定を保存" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"閲覧者としてこのサイトをご覧になっている場合、ご自身のデータは一切収集されま" -"せん。" +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "閲覧者としてこのサイトをご覧になっている場合、ご自身のデータは一切収集されません。" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"登録ユーザーの場合、ログインしたり記事やコメントを投稿したりできるようにする" -"ため、ご自身のユーザー名(本名である必要はありません)、利用可能なメールアド" -"レス、パスワードを指定する必要があります。投稿したコンテンツは、削除しない限" -"り保存されます。" +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "登録ユーザーの場合、ログインしたり記事やコメントを投稿したりできるようにするため、ご自身のユーザー名(本名である必要はありません)、利用可能なメールアドレス、パスワードを指定する必要があります。投稿したコンテンツは、削除しない限り保存されます。" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"ログインの際に、2 個の Cookie を保存します。1 つはセッションを開いた状態にす" -"るため、もう 1 つは誰かがあなたになりすますのを防ぐために使われます。この他に" -"は、一切の Cookie を保存しません。" +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "ログインの際に、2 個の Cookie を保存します。1 つはセッションを開いた状態にするため、もう 1 つは誰かがあなたになりすますのを防ぐために使われます。この他には、一切の Cookie を保存しません。" msgid "Blocklisted Emails" msgstr "ブロックするメール" @@ -682,13 +642,8 @@ msgstr "ブロックするメール" msgid "Email address" msgstr "メールアドレス" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" -"ブロックするメールアドレス。*記法を使ってドメインをブロックすることができま" -"す。例えば '*@example.com' はexample.com の全てのアドレスをブロックします。" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "ブロックするメールアドレス。*記法を使ってドメインをブロックすることができます。例えば '*@example.com' はexample.com の全てのアドレスをブロックします。" msgid "Note" msgstr "メモ" @@ -696,21 +651,14 @@ msgstr "メモ" msgid "Notify the user?" msgstr "ユーザーに知らせるか?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" -"省略可。このアドレスでアカウントを作ろうとした時にユーザーにメッセージを表示" -"します" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "省略可。このアドレスでアカウントを作ろうとした時にユーザーにメッセージを表示します" msgid "Blocklisting notification" msgstr "ブロックリストの通知" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" -"ユーザーがこのメールアドレスでアカウントを作ろうとした時に表示するメッセージ" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "ユーザーがこのメールアドレスでアカウントを作ろうとした時に表示するメッセージ" msgid "Add blocklisted address" msgstr "ブロックするアドレスを追加" @@ -781,12 +729,8 @@ 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 "" -"メディアをギャラリーにアップロードして、その Markdown コードをコピーして投稿" -"に挿入できます。" +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "メディアをギャラリーにアップロードして、その Markdown コードをコピーして投稿に挿入できます。" msgid "Upload media" msgstr "メディアをアップロード" @@ -841,12 +785,8 @@ msgstr "このブーストを取り消します" msgid "Boost" msgstr "ブースト" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"この記事と関わるには{0}ログイン{1}するか {2}Fediverse アカウントを使用{3}して" -"ください" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "この記事と関わるには{0}ログイン{1}するか {2}Fediverse アカウントを使用{3}してください" msgid "Comments" msgstr "コメント" @@ -902,12 +842,8 @@ 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 "" -"指定された宛先に、パスワードをリセットするためのリンクを記載したメールを送信" -"しました。" +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "指定された宛先に、パスワードをリセットするためのリンクを記載したメールを送信しました。" msgid "Send password reset link" msgstr "パスワードリセットリンクを送信" @@ -915,12 +851,8 @@ msgstr "パスワードリセットリンクを送信" msgid "This token has expired" msgstr "このトークンは有効期限切れです" -msgid "" -"Please start the process again by clicking here." -msgstr "" -"こちらをクリックして、手順をやり直してくださ" -"い。" +msgid "Please start the process again by clicking here." +msgstr "こちらをクリックして、手順をやり直してください。" msgid "New Blog" msgstr "新しいブログ" @@ -934,10 +866,8 @@ msgstr "ブログを作成" msgid "Edit \"{}\"" msgstr "\"{}\" を編集" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"ギャラリーにアップロードした画像を、ブログアイコンやバナーに使用できます。" +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "ギャラリーにアップロードした画像を、ブログアイコンやバナーに使用できます。" msgid "Upload images" msgstr "画像をアップロード" @@ -997,12 +927,8 @@ msgstr "Plume は分散型ブログエンジンです。" 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 "" -"投稿は他の Plume インスタンスからも閲覧可能であり、Mastdon のように他のプラッ" -"トフォームから直接記事にアクセスできます。" +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "投稿は他の Plume インスタンスからも閲覧可能であり、Mastdon のように他のプラットフォームから直接記事にアクセスできます。" msgid "Read the detailed rules" msgstr "詳細な規則を読む" @@ -1081,3 +1007,4 @@ msgstr "適用されているライセンス" msgid "Article license" msgstr "投稿のライセンス" + diff --git a/po/plume/ko.po b/po/plume/ko.po index a39e2337..2b3f7b02 100644 --- a/po/plume/ko.po +++ b/po/plume/ko.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -177,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -447,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -479,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -552,10 +543,7 @@ 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." +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 "You are not authorized." @@ -639,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -662,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -674,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -756,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -814,9 +785,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -873,9 +842,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -884,9 +851,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -901,8 +866,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -963,9 +927,7 @@ msgstr "" 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." +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" @@ -1045,3 +1007,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/nl.po b/po/plume/nl.po index 9c0ee892..ec34552a 100644 --- a/po/plume/nl.po +++ b/po/plume/nl.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -65,59 +65,59 @@ msgstr "Volgende pagina" msgid "Optional" msgstr "Optioneel" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Om een nieuwe blog te maken moet je ingelogd zijn" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Er bestaat al een blog met dezelfde naam." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Je blog is succesvol aangemaakt!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Je blog is verwijderd." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Je mag deze blog niet verwijderen." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Je mag deze blog niet bewerken." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Je kunt dit object niet als blogpictogram gebruiken." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Je kunt dit object niet als blog banner gebruiken." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Je bloginformatie is bijgewerkt." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Je reactie is geplaatst." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Je reactie is verwijderd." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Serverinstellingen zijn opgeslagen." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "{} is gedeblokkeerd." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{} is geblokkeerd." @@ -125,51 +125,51 @@ msgstr "{} is geblokkeerd." msgid "Blocks deleted" msgstr "Blokken verwijderd" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" -msgstr "" +msgstr "E-mail al geblokkeerd" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "E-mailadres geblokkeerd" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "Je kunt je eigen rechten niet veranderen." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "Je mag deze actie niet uitvoeren." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "Klaar." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Om een bericht leuk te vinden, moet je ingelogd zijn" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Je media zijn verwijderd." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Je mag dit medium niet verwijderen." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Je avatar is bijgewerkt." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Je mag dit mediabestand niet gebruiken." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Om je meldingen te kunnen zien, moet je ingelogd zijn" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Dit bericht is nog niet gepubliceerd." @@ -177,125 +177,113 @@ msgstr "Dit bericht is nog niet gepubliceerd." msgid "To write a new post, you need to be logged in" msgstr "Om een nieuwe bericht te schrijven moet je ingelogd zijn" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Je bent geen schrijver van deze blog." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Nieuw bericht" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "{0} bewerken" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Je mag niet publiceren op deze blog." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Je artikel is bijgewerkt." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Je artikel is opgeslagen." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Nieuw artikel" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Je mag dit artikel niet verwijderen." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Je artikel is verwijderd." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Het lijkt erop dat het artikel dat je probeerde te verwijderen niet bestaat. " -"Misschien is het al verdwenen?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Het lijkt erop dat het artikel dat je probeerde te verwijderen niet bestaat. Misschien is het al verdwenen?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Kon niet genoeg informatie over je account opvragen. Controleer of je " -"gebruikersnaam juist is." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Kon niet genoeg informatie over je account opvragen. Controleer of je gebruikersnaam juist is." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Om een bericht opnieuw te kunnen delen, moet je ingelogd zijn" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Je bent nu verbonden." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Je bent nu uitgelogd." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Wachtwoord opnieuw instellen" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Hier is de link om je wachtwoord opnieuw in te stellen: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Je wachtwoord is succesvol ingesteld." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Om toegang te krijgen tot je dashboard, moet je ingelogd zijn" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Je volgt {} niet langer." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Je volgt nu {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Om je te abonneren op iemand, moet je ingelogd zijn" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "Om je profiel te bewerken moet je ingelogd zijn" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Je profiel is bijgewerkt." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Je account is verwijderd." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Je kunt het account van iemand anders niet verwijderen." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "Registraties zijn gesloten op deze server." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" -"Je account is aangemaakt. Nu hoe je alleen maar in te loggen, om het te " -"kunnen gebruiken." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "Je account is aangemaakt. Nu hoe je alleen maar in te loggen, om het te kunnen gebruiken." msgid "Media upload" msgstr "Media uploaden" @@ -453,12 +441,8 @@ msgstr "Wachtwoord" msgid "Password confirmation" msgstr "Wachtwoordbevestiging" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Excuses, maar registraties zijn gesloten voor deze server. Je kunt wel een " -"andere vinden." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Excuses, maar registraties zijn gesloten voor deze server. Je kunt wel een andere vinden." msgid "{0}'s subscriptions" msgstr "{0}'s abonnementen" @@ -470,9 +454,7 @@ msgid "Your Blogs" msgstr "Je blogs" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" -"Je hebt nog geen blog. Maak een blog, of vraag om aan een blog mee te mogen " -"doen." +msgstr "Je hebt nog geen blog. Maak een blog, of vraag om aan een blog mee te mogen doen." msgid "Start a new blog" msgstr "Start een nieuwe blog" @@ -489,11 +471,8 @@ msgstr "Bewerk je account" msgid "Your Profile" msgstr "Je profiel" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"Om je avatar te veranderen upload je die naar je galerij en selecteer je " -"avatar daar." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "Om je avatar te veranderen upload je die naar je galerij en selecteer je avatar daar." msgid "Upload an avatar" msgstr "Upload een avatar" @@ -564,14 +543,8 @@ msgstr "Sorry. Als je denkt dat dit een bug is, rapporteer het dan." msgid "Invalid CSRF token" msgstr "Ongeldig CSRF token" -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 "" -"Er is iets mis met het CSRF-token. Zorg ervoor dat cookies ingeschakeld zijn " -"in je browser en probeer deze pagina opnieuw te laden. Als je dit " -"foutbericht blijft zien, rapporteer het dan." +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 "Er is iets mis met het CSRF-token. Zorg ervoor dat cookies ingeschakeld zijn in je browser en probeer deze pagina opnieuw te laden. Als je dit foutbericht blijft zien, rapporteer het dan." msgid "You are not authorized." msgstr "Je bent niet geautoriseerd." @@ -654,31 +627,14 @@ msgstr "Standaard artikellicentie" msgid "Save these settings" msgstr "Deze instellingen opslaan" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"Als je deze site als bezoeker bekijkt, worden er geen gegevens over jou " -"verzameld." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Als je deze site als bezoeker bekijkt, worden er geen gegevens over jou verzameld." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"Als geregistreerde gebruiker moet je je gebruikersnaam invoeren (dat hoeft " -"niet je echte naam te zijn), je bestaande e-mailadres en een wachtwoord om " -"in te kunnen loggen, artikelen en commentaar te schrijven. De inhoud die je " -"opgeeft wordt opgeslagen totdat je die verwijdert." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Als geregistreerde gebruiker moet je je gebruikersnaam invoeren (dat hoeft niet je echte naam te zijn), je bestaande e-mailadres en een wachtwoord om in te kunnen loggen, artikelen en commentaar te schrijven. De inhoud die je opgeeft wordt opgeslagen totdat je die verwijdert." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Als je inlogt, slaan we twee cookies op, de eerste om je sessie open te " -"houden, de tweede om andere mensen te verhinderen om namens jou iets te " -"doen. We slaan geen andere cookies op." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Als je inlogt, slaan we twee cookies op, de eerste om je sessie open te houden, de tweede om andere mensen te verhinderen om namens jou iets te doen. We slaan geen andere cookies op." msgid "Blocklisted Emails" msgstr "Geblokkeerde e-mailadressen" @@ -686,14 +642,8 @@ msgstr "Geblokkeerde e-mailadressen" msgid "Email address" msgstr "E-mailadres" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" -"Het e-mailadres dat je wilt blokkeren. Om hele domeinen te blokkeren, kunt " -"je de globale syntax gebruiken, bijvoorbeeld '*@example.com' blokkeert alle " -"adressen van example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "Het e-mailadres dat je wilt blokkeren. Om hele domeinen te blokkeren, kunt je de globale syntax gebruiken, bijvoorbeeld '*@example.com' blokkeert alle adressen van example.com" msgid "Note" msgstr "Opmerking" @@ -701,22 +651,14 @@ msgstr "Opmerking" msgid "Notify the user?" msgstr "De gebruiker informeren?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" -"Optioneel. Toont een bericht aan gebruikers wanneer ze een account met dat " -"adres proberen aan te maken" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "Optioneel. Toont een bericht aan gebruikers wanneer ze een account met dat adres proberen aan te maken" msgid "Blocklisting notification" msgstr "Blokkeringsmelding" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" -"Het bericht dat wordt getoond als iemand een account met dit e-mailadres " -"probeert aan te maken" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "Het bericht dat wordt getoond als iemand een account met dit e-mailadres probeert aan te maken" msgid "Add blocklisted address" msgstr "Te blokkeren adres toevoegen" @@ -787,12 +729,8 @@ msgstr "Ondertitel" msgid "Content" msgstr "Inhoud" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Je kunt media uploaden naar je galerij en vervolgens de Markdown code in je " -"artikelen kopiëren om ze in te voegen." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Je kunt media uploaden naar je galerij en vervolgens de Markdown code in je artikelen kopiëren om ze in te voegen." msgid "Upload media" msgstr "Media uploaden" @@ -849,12 +787,8 @@ msgstr "Ik wil dit niet meer boosten" msgid "Boost" msgstr "Boosten" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Log in{1}, of {2}gebruik je Fediverse account{3} om over dit artikel te " -"communiceren" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Log in{1}, of {2}gebruik je Fediverse account{3} om over dit artikel te communiceren" msgid "Comments" msgstr "Reacties" @@ -872,9 +806,7 @@ msgid "Are you sure?" msgstr "Weet je het zeker?" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"Dit artikel is nog een concept. Alleen jij en andere auteurs kunnen het " -"bekijken." +msgstr "Dit artikel is nog een concept. Alleen jij en andere auteurs kunnen het bekijken." msgid "Only you and other authors can edit this article." msgstr "Alleen jij en andere auteurs kunnen dit artikel bewerken." @@ -912,12 +844,8 @@ msgstr "Wachtwoord bijwerken" msgid "Check your inbox!" msgstr "Ga naar je inbox!" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "" -"We hebben een e-mail gestuurd naar het adres dat je hebt opgegeven, met een " -"link om je wachtwoord te resetten." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "We hebben een e-mail gestuurd naar het adres dat je hebt opgegeven, met een link om je wachtwoord te resetten." msgid "Send password reset link" msgstr "Wachtwoordresetlink versturen" @@ -925,12 +853,8 @@ msgstr "Wachtwoordresetlink versturen" msgid "This token has expired" msgstr "Dit token is verlopen" -msgid "" -"Please start the process again by clicking here." -msgstr "" -"Start het proces opnieuw door hier te " -"klikken." +msgid "Please start the process again by clicking here." +msgstr "Start het proces opnieuw door hier te klikken." msgid "New Blog" msgstr "Nieuwe blog" @@ -944,11 +868,8 @@ msgstr "Creëer blog" msgid "Edit \"{}\"" msgstr "\"{}\" bewerken" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Je kunt afbeeldingen uploaden naar je galerij om ze als blogpictogrammen of " -"banners te gebruiken." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Je kunt afbeeldingen uploaden naar je galerij om ze als blogpictogrammen of banners te gebruiken." msgid "Upload images" msgstr "Afbeeldingen opladen" @@ -1009,12 +930,8 @@ msgstr "Plume is een gedecentraliseerde blogging-engine." msgid "Authors can manage multiple blogs, each as its own website." msgstr "Auteurs kunnen meerdere blogs beheren, elk als een eigen website." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Artikelen zijn ook zichtbaar op andere Plume-servers en je kunt ze direct " -"vanuit andere platforms zoals Mastodon gebruiken." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Artikelen zijn ook zichtbaar op andere Plume-servers en je kunt ze direct vanuit andere platforms zoals Mastodon gebruiken." msgid "Read the detailed rules" msgstr "Lees de gedetailleerde instructies" @@ -1093,3 +1010,4 @@ msgstr "Gepubliceerd onder deze licentie" msgid "Article license" msgstr "Artikel licentie" + diff --git a/po/plume/no.po b/po/plume/no.po index 5fc0475d..b91a74d8 100644 --- a/po/plume/no.po +++ b/po/plume/no.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "Valgfritt" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Du må være logget inn for å lage en ny blogg" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Det eksisterer allerede en blogg med dette navnet." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Bloggen ble opprettet!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Bloggen din er nå slettet." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Du har ikke rettigheter til å slette denne bloggen." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Du har ikke rettigheter til å endre denne bloggen." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Du kan ikke bruke dette bildet som bloggikon." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Du kan ikke bruke dette bildet som bloggbanner." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Informasjon om bloggen er oppdatert." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Kommentaren din er lagt til." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Kommentaren din er slettet." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Innstillingene for instansen er lagret." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Du må være innlogget for å like ett innlegg" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Mediet er slettet." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Du har ikke rettigheter til å slette dette mediet." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Avataren din er oppdatert." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Du har ikke rettigheter til å bruke dette mediet." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Du må være innlogget for se varsler" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Dette innlegget er ikke publisert enda." @@ -177,122 +177,112 @@ msgstr "Dette innlegget er ikke publisert enda." msgid "To write a new post, you need to be logged in" msgstr "Du må være innlogget for å skrive ett nytt innlegg" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Du er ikke forfatter av denne bloggen." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Nytt innlegg" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Rediger {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Du har ikke rettigheter til å publisere på denne bloggen." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Artikkelen er oppdatert." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Artikkelen er lagret." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Ny artikkel" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Du har ikke rettigheter til å slette denne artikkelen." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Artikkelen er slettet." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Det ser ut som arikkelen du prøvde allerede er slettet; Kanskje den allerede " -"er fjernet?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Det ser ut som arikkelen du prøvde allerede er slettet; Kanskje den allerede er fjernet?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Klarte ikke å hente informasjon om kontoen din. Vennligst sjekk at " -"brukernavnet er korrekt." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Klarte ikke å hente informasjon om kontoen din. Vennligst sjekk at brukernavnet er korrekt." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Du må være innlogget for å dele ett innlegg" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Du er nå koblet til." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Du er logget ut." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Gjenopprette passord" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Her denne pekeren for å gjenopprette passordet ditt: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Passordet ditt er gjenopprettet." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Du må være innlogget for å se skrivebordet" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Du følger ikke lenger {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Du følger nå {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Du må være innlogget for å følge noen" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "Du må være innlogget for å endre profilen din" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Profilen din er oppdatert." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Kontoen din er slettet." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Du kan ikke slette andres kontoer." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "Registrering er lukket på denne instansen." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "Kontoen din er opprettet. Du må logge inn for å bruke den." msgid "Media upload" @@ -451,12 +441,8 @@ msgstr "Passord" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Beklager, nyregistreringer er lukket på denne instansen. Du kan istedet " -"finne en annen instans." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Beklager, nyregistreringer er lukket på denne instansen. Du kan istedet finne en annen instans." msgid "{0}'s subscriptions" msgstr "" @@ -485,10 +471,8 @@ msgstr "Endre kontoen din" msgid "Your Profile" msgstr "Din profil" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"For å endre avataren din må du legge den til galleriet og velge den der." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "For å endre avataren din må du legge den til galleriet og velge den der." msgid "Upload an avatar" msgstr "Last opp en avatar" @@ -554,21 +538,13 @@ msgid "Something broke on our side." msgstr "Noe brakk hos oss." msgid "Sorry about that. If you think this is a bug, please report it." -msgstr "" -"Beklager! Hvis du tror at dette er en programfeil, setter vi pris på at du " -"sier ifra." +msgstr "Beklager! Hvis du tror at dette er en programfeil, setter vi pris på at du sier ifra." msgid "Invalid CSRF token" msgstr "Ugyldig CSRF token" -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 "" -"Noe er galt med CSRF token. Påse at informasjonskapsler er aktivert i " -"nettleseren, prøv så å hente nettsiden på nytt. Hvis du fortsatt ser denne " -"feilen, setter vi pris på om du sier ifra." +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 "Noe er galt med CSRF token. Påse at informasjonskapsler er aktivert i nettleseren, prøv så å hente nettsiden på nytt. Hvis du fortsatt ser denne feilen, setter vi pris på om du sier ifra." msgid "You are not authorized." msgstr "Du har ikke tilgang." @@ -651,30 +627,14 @@ msgstr "Standardlisens for artikler" msgid "Save these settings" msgstr "Lagre innstillingene" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"Hvis du besøker denne siden som gjest, lagres ingen informasjon om deg." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Hvis du besøker denne siden som gjest, lagres ingen informasjon om deg." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"For å registrere deg må du oppgi ett brukernavn (dette behøver ikke å " -"samsvare med ditt ekte navn), en fungerende epost-adresse og ett passord. " -"Dette gjør at du kan logge inn, skrive artikler og kommentarer. Innholdet du " -"legger inn blir lagret inntil du sletter det." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "For å registrere deg må du oppgi ett brukernavn (dette behøver ikke å samsvare med ditt ekte navn), en fungerende epost-adresse og ett passord. Dette gjør at du kan logge inn, skrive artikler og kommentarer. Innholdet du legger inn blir lagret inntil du sletter det." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Når du logger inn lagrer vi to informasjonskapsler. Den har informasjon om " -"sesjonen din, den andre beskytter identiteten din. Vi lagrer ingen andre " -"informasjonskapsler." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Når du logger inn lagrer vi to informasjonskapsler. Den har informasjon om sesjonen din, den andre beskytter identiteten din. Vi lagrer ingen andre informasjonskapsler." msgid "Blocklisted Emails" msgstr "" @@ -682,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -694,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -776,12 +729,8 @@ msgstr "" msgid "Content" msgstr "Innhold" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Du kan laste opp medier til galleriet, og så lime inn Markdown syntaksen inn " -"i artiklen for å bruke dem." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Du kan laste opp medier til galleriet, og så lime inn Markdown syntaksen inn i artiklen for å bruke dem." msgid "Upload media" msgstr "Last opp medie" @@ -838,12 +787,8 @@ msgstr "Jeg vil ikke fremheve dette lenger" msgid "Boost" msgstr "Fremhev" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Logg inn{1} eller {2}bruk din Fediverse konto{3} for å interaktere med " -"denne artikkelen" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Logg inn{1} eller {2}bruk din Fediverse konto{3} for å interaktere med denne artikkelen" msgid "Comments" msgstr "Kommentarer" @@ -861,8 +806,7 @@ msgid "Are you sure?" msgstr "" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"Denne artikkelen er ett utkast. Bare du og andre forfattere kan se den." +msgstr "Denne artikkelen er ett utkast. Bare du og andre forfattere kan se den." msgid "Only you and other authors can edit this article." msgstr "Bare du og andre forfattere kan endre denne artikkelen." @@ -900,9 +844,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -911,9 +853,7 @@ msgstr "Send lenke for tilbakestilling av passord" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -928,11 +868,8 @@ msgstr "Opprett blogg" msgid "Edit \"{}\"" msgstr "Rediger \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Du kan legge opp bilder til galleriet ditt for å bruke den som bloggikoner " -"eller bannere." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Du kan legge opp bilder til galleriet ditt for å bruke den som bloggikoner eller bannere." msgid "Upload images" msgstr "Last opp bilder" @@ -993,9 +930,7 @@ msgstr "" 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." +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" @@ -1075,3 +1010,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/pl.po b/po/plume/pl.po index ee86262b..38e50e0b 100644 --- a/po/plume/pl.po +++ b/po/plume/pl.po @@ -3,16 +3,14 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" -"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" -"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" "X-Crowdin-Project: plume\n" "X-Crowdin-Project-ID: 352097\n" "X-Crowdin-Language: pl\n" @@ -67,59 +65,59 @@ msgstr "Następna strona" msgid "Optional" msgstr "Nieobowiązkowe" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Aby utworzyć nowy blog, musisz być zalogowany" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Blog o tej samej nazwie już istnieje." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Twój blog został pomyślnie utworzony!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Twój blog został usunięty." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Nie masz uprawnień do usunięcia tego bloga." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Nie masz uprawnień edytować tego bloga." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Nie możesz użyć tego nośnika jako ikony blogu." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Nie możesz użyć tego nośnika jako banner na blogu." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Twoje informacje o blogu zostały zaktualizowane." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Twój komentarz został opublikowany." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Twój komentarz został usunięty." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Zapisano ustawienia instancji." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "{} został(a) odblokowany(-a)." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{} został(a) zablokowany(-a)." @@ -127,51 +125,51 @@ msgstr "{} został(a) zablokowany(-a)." msgid "Blocks deleted" msgstr "Usunięte blokady" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "E-mail Zablokowany" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "Nie możesz zmienićswoich własnych uprawnień." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "Nie masz uprawnień do wykonania tego działania." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "Gotowe." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Aby polubić post, musisz być zalogowany" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Twoje media zostały usunięte." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Nie można usunąć tego medium." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Twój awatar został zaktualizowany." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Nie możesz użyć tego medium." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Aby zobaczyć powiadomienia, musisz być zalogowany" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Ten wpis nie został jeszcze opublikowany." @@ -179,125 +177,113 @@ msgstr "Ten wpis nie został jeszcze opublikowany." msgid "To write a new post, you need to be logged in" msgstr "Aby napisać nowy artykuł, musisz być zalogowany" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Nie jesteś autorem tego bloga." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Nowy wpis" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Edytuj {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Nie możesz publikować na tym blogu." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Twój artykuł został zaktualizowany." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Twój artykuł został zapisany." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Nowy artykuł" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Nie można usunąć tego artykułu." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Twój artykuł został usunięty." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Wygląda na to, że artykuł który próbowałeś(-aś) usunąć nie istnieje. Może " -"został usunięty wcześniej?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Wygląda na to, że artykuł który próbowałeś(-aś) usunąć nie istnieje. Może został usunięty wcześniej?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Nie można uzyskać wystarczającej ilości informacji o Twoim koncie. Upewnij " -"się, że nazwa użytkownika jest prawidłowa." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Nie można uzyskać wystarczającej ilości informacji o Twoim koncie. Upewnij się, że nazwa użytkownika jest prawidłowa." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Aby udostępnić post, musisz być zalogowany" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Teraz jesteś połączony." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Teraz jesteś wylogowany." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Resetowanie hasła" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Tutaj jest link do zresetowania hasła: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Twoje hasło zostało pomyślnie zresetowane." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Aby uzyskać dostęp do panelu, musisz być zalogowany" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Już nie obserwujesz użytkownika {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Obserwujesz teraz użytkownika {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Aby subskrybować do kogoś, musisz być zalogowany" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "Aby edytować swój profil, musisz być zalogowany" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Twój profil został zaktualizowany." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Twoje konto zostało usunięte." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Nie możesz usunąć konta innej osoby." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "Rejestracje są zamknięte w tej instancji." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" -"Twoje konto zostało utworzone. Zanim będziesz mógł(-ogła) z niego korzystać, " -"musisz się zalogować." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "Twoje konto zostało utworzone. Zanim będziesz mógł(-ogła) z niego korzystać, musisz się zalogować." msgid "Media upload" msgstr "Wysyłanie zawartości multimedialnej" @@ -306,9 +292,7 @@ msgid "Description" msgstr "Opis" msgid "Useful for visually impaired people, as well as licensing information" -msgstr "" -"Przydatny dla osób z problemami ze wzrokiem oraz do umieszczenia informacji " -"o licencji" +msgstr "Przydatny dla osób z problemami ze wzrokiem oraz do umieszczenia informacji o licencji" msgid "Content warning" msgstr "Ostrzeżenie o zawartości" @@ -457,12 +441,8 @@ msgstr "Hasło" msgid "Password confirmation" msgstr "Potwierdzenie hasła" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Przepraszamy, rejestracja jest zamknięta na tej instancji. Spróbuj znaleźć " -"inną." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Przepraszamy, rejestracja jest zamknięta na tej instancji. Spróbuj znaleźć inną." msgid "{0}'s subscriptions" msgstr "Subskrypcje {0}" @@ -474,9 +454,7 @@ msgid "Your Blogs" msgstr "Twoje blogi" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" -"Nie posiadasz żadnego bloga. Utwórz własny, lub poproś o dołączanie do " -"istniejącego." +msgstr "Nie posiadasz żadnego bloga. Utwórz własny, lub poproś o dołączanie do istniejącego." msgid "Start a new blog" msgstr "Utwórz nowy blog" @@ -493,11 +471,8 @@ msgstr "Edytuj swoje konto" msgid "Your Profile" msgstr "Twój profil" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"Aby zmienić swój awatar, prześlij go do Twojej galerii, a następnie wybierz " -"go stamtąd." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "Aby zmienić swój awatar, prześlij go do Twojej galerii, a następnie wybierz go stamtąd." msgid "Upload an avatar" msgstr "Wczytaj awatara" @@ -563,20 +538,13 @@ msgid "Something broke on our side." msgstr "Coś poszło nie tak." msgid "Sorry about that. If you think this is a bug, please report it." -msgstr "" -"Przepraszamy. Jeżeli uważasz że wystąpił błąd, prosimy o zgłoszenie go." +msgstr "Przepraszamy. Jeżeli uważasz że wystąpił błąd, prosimy o zgłoszenie go." msgid "Invalid CSRF token" msgstr "Nieprawidłowy token CSRF" -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 "" -"Coś poszło nie tak z tokenem CSRF. Upewnij się, że w przeglądarce są " -"włączone pliki cookies i spróbuj odświeżyć stronę. Jeżeli wciąż widzisz tę " -"wiadomość, zgłoś to." +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 "Coś poszło nie tak z tokenem CSRF. Upewnij się, że w przeglądarce są włączone pliki cookies i spróbuj odświeżyć stronę. Jeżeli wciąż widzisz tę wiadomość, zgłoś to." msgid "You are not authorized." msgstr "Nie jesteś zalogowany." @@ -659,31 +627,14 @@ msgstr "Domyślna licencja artykułów" msgid "Save these settings" msgstr "Zapisz te ustawienia" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"Jeśli przeglądasz tę witrynę jako odwiedzający, nie zbierasz żadnych danych " -"o Tobie." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Jeśli przeglądasz tę witrynę jako odwiedzający, nie zbierasz żadnych danych o Tobie." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"Jako zarejestrowany użytkownik, musisz podać swoją nazwę użytkownika (nie " -"musi to być Twoje imię i nazwisko), działający adres e-mail i hasło, aby móc " -"zalogować się, pisać artykuły i komentować. Dodane treści są przechowywane " -"do czasu, gdy je usuniesz." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Jako zarejestrowany użytkownik, musisz podać swoją nazwę użytkownika (nie musi to być Twoje imię i nazwisko), działający adres e-mail i hasło, aby móc zalogować się, pisać artykuły i komentować. Dodane treści są przechowywane do czasu, gdy je usuniesz." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Po zalogowaniu się, przechowujemy dwa ciasteczka – jedno, aby utrzymać " -"aktywną sesję i drugie, aby uniemożliwić innym podszywanie się pod Ciebie. " -"Nie przechowujemy innych plików cookie." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Po zalogowaniu się, przechowujemy dwa ciasteczka – jedno, aby utrzymać aktywną sesję i drugie, aby uniemożliwić innym podszywanie się pod Ciebie. Nie przechowujemy innych plików cookie." msgid "Blocklisted Emails" msgstr "Zablokowane adresy e-mail" @@ -691,14 +642,8 @@ msgstr "Zablokowane adresy e-mail" msgid "Email address" msgstr "Adresy e-mail" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" -"Adres e-mail, który chcesz zablokować. Aby zablokować domeny, możesz użyć " -"globbing syntax, na przykład '*@example.com' blokuje wszystkie adresy z " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "Adres e-mail, który chcesz zablokować. Aby zablokować domeny, możesz użyć globbing syntax, na przykład '*@example.com' blokuje wszystkie adresy z example.com" msgid "Note" msgstr "Notatka" @@ -706,22 +651,14 @@ msgstr "Notatka" msgid "Notify the user?" msgstr "Powiadomić użytkownika?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" -"Opcjonalnie, pokazuje wiadomość użytkownikowi gdy próbuje utworzyć konto o " -"tym adresie" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "Opcjonalnie, pokazuje wiadomość użytkownikowi gdy próbuje utworzyć konto o tym adresie" msgid "Blocklisting notification" msgstr "Zablokuj powiadomienie" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" -"Wiadomość do wyświetlenia, gdy użytkownik próbuje utworzyć konto z tym " -"adresem e-mail" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "Wiadomość do wyświetlenia, gdy użytkownik próbuje utworzyć konto z tym adresem e-mail" msgid "Add blocklisted address" msgstr "Dodaj zablokowany adres" @@ -792,12 +729,8 @@ msgstr "Podtytuł" msgid "Content" msgstr "Zawartość" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Możesz przesłać multimedia do swojej galerii, i następnie skopiuj ich kod " -"Markdown do artykułów, aby je wstawić." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Możesz przesłać multimedia do swojej galerii, i następnie skopiuj ich kod Markdown do artykułów, aby je wstawić." msgid "Upload media" msgstr "Przesłać media" @@ -858,12 +791,8 @@ msgstr "Nie chcę tego podbijać" msgid "Boost" msgstr "Podbij" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Zaloguj się{1} lub {2}użyj konta w Fediwersum{3}, aby wejść w interakcje " -"z tym artykułem" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Zaloguj się{1} lub {2}użyj konta w Fediwersum{3}, aby wejść w interakcje z tym artykułem" msgid "Comments" msgstr "Komentarze" @@ -919,12 +848,8 @@ msgstr "Zaktualizuj hasło" msgid "Check your inbox!" msgstr "Sprawdź do swoją skrzynki odbiorczej!" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "" -"Wysłaliśmy maila na adres, który nam podałeś, z linkiem do zresetowania " -"hasła." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "Wysłaliśmy maila na adres, który nam podałeś, z linkiem do zresetowania hasła." msgid "Send password reset link" msgstr "Wyślij e-mail resetujący hasło" @@ -932,12 +857,8 @@ msgstr "Wyślij e-mail resetujący hasło" msgid "This token has expired" msgstr "Ten token utracił własność" -msgid "" -"Please start the process again by clicking here." -msgstr "" -"Rozpocznij ten proces ponownie klikając tutaj." +msgid "Please start the process again by clicking here." +msgstr "Rozpocznij ten proces ponownie klikając tutaj." msgid "New Blog" msgstr "Nowy blog" @@ -951,11 +872,8 @@ msgstr "Utwórz blog" msgid "Edit \"{}\"" msgstr "Edytuj \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Możesz przesłać zdjęcia do swojej galerii, aby używać ich jako ikon, lub " -"banery blogów." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Możesz przesłać zdjęcia do swojej galerii, aby używać ich jako ikon, lub banery blogów." msgid "Upload images" msgstr "Przesyłać zdjęcia" @@ -1018,13 +936,8 @@ msgstr "Plume jest zdecentralizowanym silnikiem blogowym." msgid "Authors can manage multiple blogs, each as its own website." msgstr "Autorzy mogą zarządzać różne blogi, każdy jako unikalny stronie." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Artykuły są również widoczne w innych instancjach Plume i możesz też " -"wchodzić bezpośrednio interakcje z nimi z innych platform, takich jak " -"Mastodon." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Artykuły są również widoczne w innych instancjach Plume i możesz też wchodzić bezpośrednio interakcje z nimi z innych platform, takich jak Mastodon." msgid "Read the detailed rules" msgstr "Przeczytaj szczegółowe zasady" @@ -1103,3 +1016,4 @@ msgstr "Opublikowany na tej licencji" msgid "Article license" msgstr "Licencja artykułu" + diff --git a/po/plume/plume.pot b/po/plume/plume.pot index 8d82c5b3..592658b7 100644 --- a/po/plume/plume.pot +++ b/po/plume/plume.pot @@ -60,51 +60,51 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:159 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:167 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:218 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:274 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:292 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:326 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:99 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:178 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:118 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" @@ -116,27 +116,27 @@ msgstr "" msgid "{} has been blocked." msgstr "" -# src/routes/instance.rs:201 +# src/routes/instance.rs:203 msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:216 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:221 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:312 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:323 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:359 +# src/routes/instance.rs:363 msgid "Done." msgstr "" @@ -144,23 +144,23 @@ msgstr "" msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:153 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:158 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:175 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:180 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" @@ -168,51 +168,51 @@ msgstr "" msgid "This post isn't published yet." msgstr "" -# src/routes/posts.rs:126 +# src/routes/posts.rs:125 msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:143 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:150 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:195 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "" -# src/routes/posts.rs:264 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:363 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:553 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:560 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:597 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:622 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:627 +# src/routes/posts.rs:630 msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:667 +# src/routes/posts.rs:672 msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" @@ -220,63 +220,63 @@ msgstr "" msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:88 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:109 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:155 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:215 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:142 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:164 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:181 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:261 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:365 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:411 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:438 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:444 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:528 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:551 +# src/routes/user.rs:486 msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" diff --git a/po/plume/pt.po b/po/plume/pt.po index 61c9b874..bc0b0c99 100644 --- a/po/plume/pt.po +++ b/po/plume/pt.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-12-11 15:00\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -55,121 +55,121 @@ msgstr "Imagem de perfil de {0}" # src/template_utils.rs:198 msgid "Previous page" -msgstr "" +msgstr "Página anterior" # src/template_utils.rs:209 msgid "Next page" -msgstr "" +msgstr "Próxima página" # src/template_utils.rs:363 msgid "Optional" msgstr "Opcional" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Para criar um novo blog, você precisa entrar" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Um blog com o mesmo nome já existe." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Seu blog foi criado com sucesso!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Seu blog foi excluído." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Você não tem permissão para excluir este blog." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Você não tem permissão para editar este blog." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Você não pode usar esta mídia como ícone do blog." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Você não pode usar esta mídia como capa do blog." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Os dados do seu blog foram atualizados." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Seu comentário foi publicado." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Seu comentário foi excluído." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "As configurações da instância foram salvas." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." -msgstr "" +msgstr "{0} foi desbloqueado." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." -msgstr "" +msgstr "{0} foi bloqueado." # src/routes/instance.rs:203 msgid "Blocks deleted" -msgstr "" +msgstr "Bloqueios excluídos" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" -msgstr "" +msgstr "E-mail já está bloqueado" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" -msgstr "" +msgstr "E-mail bloqueado" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." -msgstr "" +msgstr "Você não pode alterar sua própria permissão." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." -msgstr "" +msgstr "Você não tem permissão para executar esta ação." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." -msgstr "" +msgstr "Feito." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Para curtir um artigo, você precisa entrar" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Sua mídia foi excluída." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Você não tem permissão para excluir esta mídia." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Sua imagem de perfil foi atualizada." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Você não tem permissão para usar esta mídia." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Para ver suas notificações, você precisa entrar" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Este artigo ainda não foi publicado." @@ -177,122 +177,112 @@ msgstr "Este artigo ainda não foi publicado." msgid "To write a new post, you need to be logged in" msgstr "Para escrever um novo artigo, você precisa entrar" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Você não é um autor deste blog." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Nova postagem" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Editar {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Você não tem permissão para postar neste blog." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Seu artigo foi atualizado." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Seu artigo foi salvo." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Novo artigo" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Você não tem permissão para excluir este artigo." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Seu artigo foi excluído." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Parece que o artigo que você tentou excluir não existe. Talvez ele já tenha " -"sido excluído?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Parece que o artigo que você tentou excluir não existe. Talvez ele já tenha sido excluído?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Não foi possível obter informações sobre sua conta. Por favor, certifique-se " -"de que seu nome de usuário completo está certo." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Não foi possível obter informações sobre sua conta. Por favor, certifique-se de que seu nome de usuário completo está certo." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Para compartilhar um artigo, você precisa entrar" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Agora você está conectado." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Você saiu." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Redefinir senha" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Aqui está o link para redefinir sua senha: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Sua senha foi redefinida com sucesso." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Para acessar seu painel, você precisa entrar" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Você deixou de seguir {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Você seguiu {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Para se inscrever, você precisa entrar" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "Para editar seu perfil, você precisa entrar" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Seu perfil foi atualizado." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Sua conta foi excluída." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Você não pode excluir a conta de outra pessoa." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "Os registros estão fechados nesta instância." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "Sua conta foi criada. Agora você só precisa entrar para poder usá-la." msgid "Media upload" @@ -302,8 +292,7 @@ msgid "Description" msgstr "Descrição" msgid "Useful for visually impaired people, as well as licensing information" -msgstr "" -"Útil para pessoas com deficiência visual e para informações de licenciamento" +msgstr "Útil para pessoas com deficiência visual e para informações de licenciamento" msgid "Content warning" msgstr "Alerta de conteúdo" @@ -452,12 +441,8 @@ msgstr "Senha" msgid "Password confirmation" msgstr "Confirmação de senha" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Desculpe, mas os registros estão fechados nesta instância. Você pode, no " -"entanto, procurar outra." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Desculpe, mas os registros estão fechados nesta instância. Você pode, no entanto, procurar outra." msgid "{0}'s subscriptions" msgstr "Inscrições de {0}" @@ -486,8 +471,7 @@ msgstr "Editar sua conta" msgid "Your Profile" msgstr "Seu Perfil" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "Para mudar sua imagem de perfil, selecione uma nova na galeria." msgid "Upload an avatar" @@ -500,16 +484,16 @@ msgid "Summary" msgstr "Resumo" msgid "Theme" -msgstr "" +msgstr " Tema" msgid "Default theme" -msgstr "" +msgstr "Tema padrão" msgid "Error while loading theme selector." -msgstr "" +msgstr "Erro ao carregar o seletor de tema." msgid "Never load blogs custom themes" -msgstr "" +msgstr "Nunca carregar temas personalizados de blogs" msgid "Update account" msgstr "Atualizar conta" @@ -518,16 +502,13 @@ msgid "Danger zone" msgstr "Zona de risco" msgid "Be very careful, any action taken here can't be cancelled." -msgstr "" -"Tenha muito cuidado, qualquer ação tomada aqui não poderá ser desfeita." +msgstr "Tenha muito cuidado, qualquer ação tomada aqui não poderá ser desfeita." msgid "Delete your account" msgstr "Excluir sua conta" msgid "Sorry, but as an admin, you can't leave your own instance." -msgstr "" -"Desculpe, mas como administrador(a), você não pode sair da sua própria " -"instância." +msgstr "Desculpe, mas como administrador(a), você não pode sair da sua própria instância." msgid "Latest articles" msgstr "Artigos recentes" @@ -562,14 +543,8 @@ msgstr "Desculpe por isso. Se você acha que é um bug, por favor, reporte-o." msgid "Invalid CSRF token" msgstr "Token CSRF inválido" -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 "" -"Algo está errado com seu token CSRF. Certifique-se de que os cookies estão " -"habilitados no seu navegador e tente atualizar esta página. Se você " -"continuar vendo esta mensagem de erro, por favor reporte-a." +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 "Algo está errado com seu token CSRF. Certifique-se de que os cookies estão habilitados no seu navegador e tente atualizar esta página. Se você continuar vendo esta mensagem de erro, por favor reporte-a." msgid "You are not authorized." msgstr "Você não tem permissão." @@ -593,34 +568,34 @@ msgid "Instances" msgstr "Instâncias" msgid "Email blocklist" -msgstr "" +msgstr "Lista de bloqueio de e-mails" msgid "Grant admin rights" -msgstr "" +msgstr "Conceder permissão de administração" msgid "Revoke admin rights" -msgstr "" +msgstr "Revogar permissão de administração" msgid "Grant moderator rights" -msgstr "" +msgstr "Conceder permissão de moderação" msgid "Revoke moderator rights" -msgstr "" +msgstr "Revogar permissão de moderação" msgid "Ban" msgstr "Banir" msgid "Run on selected users" -msgstr "" +msgstr "Executar em usuários selecionados" msgid "Moderator" -msgstr "" +msgstr "Moderador(a)" msgid "Moderation" -msgstr "" +msgstr "Moderação" msgid "Home" -msgstr "" +msgstr "Página Inicial" msgid "Administration of {0}" msgstr "Administração de {0}" @@ -652,83 +627,59 @@ msgstr "Licença padrão do artigo" msgid "Save these settings" msgstr "Salvar estas configurações" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"Se você está navegando neste site como um visitante, nenhum dado sobre você " -"é coletado." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Se você está navegando neste site como um visitante, nenhum dado sobre você é coletado." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"Como usuário registrado, você deve fornecer seu nome de usuário (que não " -"precisa ser seu nome real), seu endereço de e-mail funcional e uma senha, " -"para poder entrar, escrever artigos e comentários. O conteúdo que você " -"enviar é armazenado até que você o exclua." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Como usuário registrado, você deve fornecer seu nome de usuário (que não precisa ser seu nome real), seu endereço de e-mail funcional e uma senha, para poder entrar, escrever artigos e comentários. O conteúdo que você enviar é armazenado até que você o exclua." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Quando você entra, armazenamos dois cookies, um para manter a sua sessão " -"aberta e o outro para impedir outras pessoas de agirem em seu nome. Não " -"armazenamos nenhum outro cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Quando você entra, armazenamos dois cookies, um para manter a sua sessão aberta e o outro para impedir outras pessoas de agirem em seu nome. Não armazenamos nenhum outro cookies." msgid "Blocklisted Emails" -msgstr "" +msgstr "E-mails Bloqueados" msgid "Email address" -msgstr "" +msgstr "Endereço de e-mail" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "O endereço de e-mail que você deseja bloquear. Para bloquear domínios, você pode usar sintaxe global, por exemplo, '*@exemplo.com' bloqueia todos os endereços de exemplo.com" msgid "Note" -msgstr "" +msgstr "Nota" msgid "Notify the user?" -msgstr "" +msgstr "Notificar o usuário?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "Opcional, mostra uma mensagem para o usuário quando ele tenta criar uma conta com este endereço de e-mail" msgid "Blocklisting notification" -msgstr "" +msgstr "Notificação de bloqueio" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "A mensagem a ser mostrada quando o usuário tenta criar uma conta com este endereço de e-mail" msgid "Add blocklisted address" -msgstr "" +msgstr "Adicionar endereço bloqueado" msgid "There are no blocked emails on your instance" -msgstr "" +msgstr "Não há e-mails bloqueados na sua instância" msgid "Delete selected emails" -msgstr "" +msgstr "Excluir email(s) selecionado(s)" msgid "Email address:" -msgstr "" +msgstr "E-mail:" msgid "Blocklisted for:" -msgstr "" +msgstr "Bloqueado por:" msgid "Will notify them on account creation with this message:" -msgstr "" +msgstr "Irá notificá-los na criação da conta com esta mensagem:" msgid "The user will be silently prevented from making an account" -msgstr "" +msgstr "O usuário será impedido de criar uma conta silenciosamente" msgid "Welcome to {}" msgstr "Boas vindas ao {}" @@ -778,12 +729,8 @@ msgstr "Subtítulo" msgid "Content" msgstr "Conteúdo" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Você pode enviar mídia da sua galeria e inserí-la no artigo usando o código " -"Markdown." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Você pode enviar mídia da sua galeria e inserí-la no artigo usando o código Markdown." msgid "Upload media" msgstr "Enviar mídia" @@ -840,12 +787,8 @@ msgstr "Não quero mais compartilhar isso" msgid "Boost" msgstr "Compartilhar" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Entrar{1}, ou {2}usar sua conta do Fediverso{3} para interagir com este " -"artigo" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Entrar{1}, ou {2}usar sua conta do Fediverso{3} para interagir com este artigo" msgid "Comments" msgstr "Comentários" @@ -863,8 +806,7 @@ msgid "Are you sure?" msgstr "Você tem certeza?" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"Este artigo ainda é um rascunho. Apenas você e outros autores podem vê-lo." +msgstr "Este artigo ainda é um rascunho. Apenas você e outros autores podem vê-lo." msgid "Only you and other authors can edit this article." msgstr "Apenas você e outros autores podem editar este artigo." @@ -902,21 +844,17 @@ msgstr "Atualizar senha" msgid "Check your inbox!" msgstr "Verifique sua caixa de entrada!" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "Enviamos para você um e-mail com um link para redefinir sua senha." msgid "Send password reset link" msgstr "Enviar link para redefinir senha" msgid "This token has expired" -msgstr "" +msgstr "Este token expirou" -msgid "" -"Please start the process again by clicking here." -msgstr "" +msgid "Please start the process again by clicking here." +msgstr "Por favor, inicie o processo novamente clicando em aqui." msgid "New Blog" msgstr "Novo Blog" @@ -930,11 +868,8 @@ msgstr "Criar blog" msgid "Edit \"{}\"" msgstr "Editar \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Você pode enviar imagens da sua galeria, para usá-las como ícones ou capas " -"do blog." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Você pode enviar imagens da sua galeria, para usá-las como ícones ou capas do blog." msgid "Upload images" msgstr "Enviar imagens" @@ -946,17 +881,16 @@ msgid "Blog banner" msgstr "Capa do blog" msgid "Custom theme" -msgstr "" +msgstr "Tema personalizado" msgid "Update blog" msgstr "Atualizar blog" msgid "Be very careful, any action taken here can't be reversed." -msgstr "" -"Tenha muito cuidado, qualquer ação tomada aqui não poderá ser desfeita." +msgstr "Tenha muito cuidado, qualquer ação tomada aqui não poderá ser desfeita." msgid "Are you sure that you want to permanently delete this blog?" -msgstr "" +msgstr "Tem certeza que deseja apagar permanentemente este blog?" msgid "Permanently delete this blog" msgstr "Excluir permanentemente este blog" @@ -973,7 +907,7 @@ msgid "No posts to see here yet." msgstr "Sem artigos ainda." msgid "Nothing to see here yet." -msgstr "" +msgstr "Nada para ver aqui ainda." msgid "None" msgstr "Nenhum" @@ -996,12 +930,8 @@ msgstr "Plume é um motor de blogs descentralizado." msgid "Authors can manage multiple blogs, each as its own website." msgstr "Autores podem gerenciar vários blogs, cada um como seu próprio site." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Os artigos também são visíveis em outras instâncias Plume, e você pode " -"interagir com elas diretamente de outras plataformas como o Mastodon." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Os artigos também são visíveis em outras instâncias Plume, e você pode interagir com elas diretamente de outras plataformas como o Mastodon." msgid "Read the detailed rules" msgstr "Leia as regras detalhadas" @@ -1034,7 +964,7 @@ msgid "Subtitle matching these words" msgstr "Subtítulo correspondente a estas palavras" msgid "Content macthing these words" -msgstr "" +msgstr "Conteúdo que contenha estas palavras" msgid "Body content" msgstr "Conteúdo do artigo" @@ -1080,3 +1010,4 @@ msgstr "Publicado sob esta licença" msgid "Article license" msgstr "Licença do artigo" + diff --git a/po/plume/ro.po b/po/plume/ro.po index 5a25df01..5696324d 100644 --- a/po/plume/ro.po +++ b/po/plume/ro.po @@ -3,15 +3,14 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n" -"%100<20)) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" "X-Crowdin-Project: plume\n" "X-Crowdin-Project-ID: 352097\n" "X-Crowdin-Language: ro\n" @@ -66,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "Opţional" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Pentru a crea un nou blog, trebuie sa fii logat" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Nu aveți permisiunea de a șterge acest blog." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -126,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Acest post nu a fost publicată încă." @@ -178,118 +177,112 @@ msgstr "Acest post nu a fost publicată încă." msgid "To write a new post, you need to be logged in" msgstr "Pentru a scrie un post nou, trebuie să fii logat" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Postare nouă" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Editare {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Pentru a redistribui un post, trebuie să fii logat" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Resetare parolă" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Parola dumneavoastră a fost resetată cu succes." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -448,9 +441,7 @@ msgstr "Parolă" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -480,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -553,10 +543,7 @@ 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." +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 "You are not authorized." @@ -640,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -663,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -675,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -757,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -819,9 +789,7 @@ msgstr "" msgid "Boost" msgstr "Boost" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -878,9 +846,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -889,9 +855,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -906,8 +870,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -970,9 +933,7 @@ msgstr "" 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." +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" @@ -1052,3 +1013,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/ru.po b/po/plume/ru.po index 4ebc4989..38238217 100644 --- a/po/plume/ru.po +++ b/po/plume/ru.po @@ -3,16 +3,14 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 " -"&& n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 " -"&& n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" "X-Crowdin-Project: plume\n" "X-Crowdin-Project-ID: 352097\n" "X-Crowdin-Language: ru\n" @@ -29,7 +27,7 @@ msgstr "{0} подписан на вас." # src/template_utils.rs:107 msgid "{0} liked your article." -msgstr "{0} понравился вашей статье." +msgstr "{0} понравилась ваша статья." # src/template_utils.rs:108 msgid "{0} mentioned you." @@ -37,7 +35,7 @@ msgstr "{0} упомянул вас." # src/template_utils.rs:109 msgid "{0} boosted your article." -msgstr "{0} понравилась ваша статья." +msgstr "{0} продвинули вашу статью." # src/template_utils.rs:116 msgid "Your feed" @@ -49,7 +47,7 @@ msgstr "Локальная лента" # src/template_utils.rs:118 msgid "Federated feed" -msgstr "" +msgstr "Объединенная лента" # src/template_utils.rs:154 msgid "{0}'s avatar" @@ -67,59 +65,59 @@ msgstr "Следующая страница" msgid "Optional" msgstr "Не обязательно" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" -msgstr "" +msgstr "Для создания нового блога необходимо войти в систему" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Блог с таким именем уже существует." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Ваш блог был успешно создан!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Ваш блог был удален." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Вы не можете удалить этот блог." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Вы не можете редактировать этот блог." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." -msgstr "" +msgstr "Вы не можете использовать этот объект в качестве иконки блога." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." -msgstr "" +msgstr "Вы не можете использовать этот объект как баннер блога." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." -msgstr "" +msgstr "Информация о вашем блоге обновлена." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Ваш комментарий опубликован." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Ваш комментарий был удалён." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." -msgstr "" +msgstr "Настройки экземпляра сохранены." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "Пользователь {} был разблокирован." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "Пользователь {} был заблокирован." @@ -127,171 +125,165 @@ msgstr "Пользователь {} был заблокирован." msgid "Blocks deleted" msgstr "Блоки удалены" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" -msgstr "" +msgstr "Почтовый адрес уже заблокирован" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "Email заблокирован" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." -msgstr "" +msgstr "Вы не можете изменить ваши собственные права." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "Вы не можете выполнить это действие." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "Выполнено." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" -msgstr "" +msgstr "Чтобы лайкнуть сообщением, вы должны войти в систему" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." -msgstr "" +msgstr "Ваш файл был удалён." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." -msgstr "" +msgstr "У вас нет прав на удаление этого файла." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Ваш аватар был обновлен." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." -msgstr "" +msgstr "Вы не можете использовать этот файл." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" -msgstr "" +msgstr "Чтобы увидеть ваши уведомления, вы должны войти в систему" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Этот пост ещё не опубликован." # src/routes/posts.rs:125 msgid "To write a new post, you need to be logged in" -msgstr "" +msgstr "Чтобы написать новое сообщение, необходимо войти в систему" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." -msgstr "" +msgstr "Вы не являетесь автором этого блога." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Новый пост" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Редактировать {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." -msgstr "" +msgstr "Вы не имеете прав на публикацию в этом блоге." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Ваша статья была обновлена." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Ваша статья сохранена." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Новая статья" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Вы не можете удалить эту статью." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." -msgstr "" +msgstr "Ваша статья была удалена." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Похоже, статья, которую вы пытаетесь удалить, не существует. Возможно она уже исчезла?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Не удалось получить достаточную информацию о вашей учетной записи. Пожалуйста, убедитесь, что ваше имя пользователя правильно." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" -msgstr "" +msgstr "Чтобы поделиться сообщением, вы должны войти в систему" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." -msgstr "" +msgstr "Теперь в списке контактов." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." -msgstr "" +msgstr "Вы теперь вышли." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Восстановление пароля" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Перейдите по ссылке для сброса вашего пароля: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Ваш пароль был успешно сброшен." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" -msgstr "" +msgstr "Для доступа к панели инструментов необходимо войти в систему" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." -msgstr "" +msgstr "Вы больше не отслеживаете {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." -msgstr "" +msgstr "Теперь вы отслеживаете {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" -msgstr "" +msgstr "Чтобы подписаться на кого-то, необходимо войти в систему" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" -msgstr "" +msgstr "Для редактирования профиля необходимо войти в систему" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." -msgstr "" +msgstr "Ваш профиль был изменен." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." -msgstr "" +msgstr "Ваша учетная запись удалена." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." -msgstr "" +msgstr "Вы не можете удалить чужую учетную запись." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." -msgstr "" +msgstr "Регистрации на данном экземпляре закрыты." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "Ваша учетная запись была создана. Теперь вам нужно авторизоваться, прежде чем вы сможете ее использовать." msgid "Media upload" msgstr "Загрузка медиафайлов" @@ -300,13 +292,13 @@ msgid "Description" msgstr "Описание" msgid "Useful for visually impaired people, as well as licensing information" -msgstr "" +msgstr "Полезно для людей с недостатками зрения и для информации об авторских правах" msgid "Content warning" msgstr "Предупреждение о контенте" msgid "Leave it empty, if none is needed" -msgstr "" +msgstr "Оставьте пустым, если оно вам не нужно" msgid "File" msgstr "Файл" @@ -321,16 +313,16 @@ msgid "Upload" msgstr "Загрузить" msgid "You don't have any media yet." -msgstr "" +msgstr "У вас еще нет медиа-файлов." msgid "Content warning: {0}" -msgstr "" +msgstr "Предупреждение о содержимом: {0}" msgid "Delete" msgstr "Удалить" msgid "Details" -msgstr "" +msgstr "Подробности" msgid "Media details" msgstr "Детали медиафайла" @@ -339,16 +331,16 @@ msgid "Go back to the gallery" msgstr "Вернуться в галерею" msgid "Markdown syntax" -msgstr "" +msgstr "Синтаксис Markdown" msgid "Copy it into your articles, to insert this media:" -msgstr "" +msgstr "Скопируйте это в статьи, чтобы вставить этот объект:" msgid "Use as an avatar" -msgstr "" +msgstr "Установить в качестве аватара" msgid "Plume" -msgstr "" +msgstr "Plume" msgid "Menu" msgstr "Меню" @@ -378,13 +370,13 @@ msgid "About this instance" msgstr "Об этом узле" msgid "Privacy policy" -msgstr "" +msgstr "Политика приватности" msgid "Administration" msgstr "Администрирование" msgid "Documentation" -msgstr "" +msgstr "Документация" msgid "Source code" msgstr "Исходный код" @@ -396,40 +388,40 @@ msgid "Admin" msgstr "Администратор" msgid "It is you" -msgstr "" +msgstr "Это вы" msgid "Edit your profile" msgstr "Редактировать ваш профиль" msgid "Open on {0}" -msgstr "" +msgstr "Открыть в {0}" msgid "Unsubscribe" -msgstr "" +msgstr "Отписаться" msgid "Subscribe" -msgstr "" +msgstr "Подписаться" msgid "Follow {}" -msgstr "" +msgstr "Отслеживать {}" msgid "Log in to follow" -msgstr "" +msgstr "Войдите, чтобы включить отслеживание" msgid "Enter your full username handle to follow" -msgstr "" +msgstr "Введите ваше полное имя пользователя для того, чтобы отслеживать" msgid "{0}'s subscribers" -msgstr "" +msgstr "{0} подписчиков" msgid "Articles" msgstr "Статьи" msgid "Subscribers" -msgstr "" +msgstr "Подписчики" msgid "Subscriptions" -msgstr "" +msgstr "Подписки" msgid "Create your account" msgstr "Создать аккаунт" @@ -447,24 +439,22 @@ msgid "Password" msgstr "Пароль" msgid "Password confirmation" -msgstr "" +msgstr "Подтверждение пароля" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Приносим извинения, но регистрация на данном узле закрыта. Однако, вы можете найти другой." msgid "{0}'s subscriptions" -msgstr "" +msgstr "{0} подписок" msgid "Your Dashboard" msgstr "Ваша панель управления" msgid "Your Blogs" -msgstr "" +msgstr "Ваш блог" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" +msgstr "У вас пока нет ни одного блога. Создайте свой собственный блог, или попросите разрешения присоединиться к одному из существующих." msgid "Start a new blog" msgstr "Начать новый блог" @@ -479,106 +469,97 @@ msgid "Edit your account" msgstr "Редактировать ваш аккаунт" msgid "Your Profile" -msgstr "" +msgstr "Ваш профиль" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "Чтобы изменить свой аватар, загрузите его в галерею и затем выберите из неё." msgid "Upload an avatar" -msgstr "" +msgstr "Загрузить аватар" msgid "Display name" -msgstr "" +msgstr "Имя для отображения" msgid "Summary" -msgstr "" +msgstr "Краткое описание" msgid "Theme" -msgstr "" +msgstr "Тема" msgid "Default theme" -msgstr "" +msgstr "Тема по умолчанию" msgid "Error while loading theme selector." -msgstr "" +msgstr "Ошибка при загрузке селектора темы." msgid "Never load blogs custom themes" -msgstr "" +msgstr "Никогда не загружать пользовательские темы блогов" msgid "Update account" -msgstr "" +msgstr "Обновить учетную запись" msgid "Danger zone" msgstr "Опасная зона" msgid "Be very careful, any action taken here can't be cancelled." -msgstr "" +msgstr "Будьте очень осторожны, никакие действия здесь не могут быть отменены." msgid "Delete your account" msgstr "Удалить ваш аккаунт" msgid "Sorry, but as an admin, you can't leave your own instance." -msgstr "" +msgstr "Извините, но как администратор вы не можете покинуть свой собственный экземпляр." msgid "Latest articles" -msgstr "" +msgstr "Последние статьи" msgid "Atom feed" -msgstr "" +msgstr "Канал Atom" msgid "Recently boosted" msgstr "Недавно продвинутые" msgid "Articles tagged \"{0}\"" -msgstr "" +msgstr "Статьи с тегом \"{0}\"" msgid "There are currently no articles with such a tag" -msgstr "" +msgstr "В настоящее время нет статей с таким тегом" msgid "The content you sent can't be processed." -msgstr "" +msgstr "Контент, который вы отправили, не может быть обработан." msgid "Maybe it was too long." -msgstr "" +msgstr "Может быть, он слишком длинный." msgid "Internal server error" -msgstr "" +msgstr "Внутренняя ошибка сервера" msgid "Something broke on our side." -msgstr "Произошла ошибка на вашей стороне." +msgstr "На нашей стороне что-то пошло не так." msgid "Sorry about that. If you think this is a bug, please report it." -msgstr "" -"Приносим извинения. Если вы считаете что это ошибка, пожалуйста сообщите о " -"ней." +msgstr "Приносим извинения. Если вы считаете что это ошибка, пожалуйста сообщите о ней." msgid "Invalid CSRF token" -msgstr "" +msgstr "Неверный CSRF токен" -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 "" -"Что-то не так с вашим CSRF-токеном. Убедитесь что в вашем браузере включены " -"cookies и попробуйте перезагрузить страницу. Если вы продолжите видеть это " -"сообщение об ошибке, сообщите об этом." +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 "Что-то не так с вашим CSRF-токеном. Убедитесь что в вашем браузере включены cookies и попробуйте перезагрузить страницу. Если вы продолжите видеть это сообщение об ошибке, сообщите об этом." msgid "You are not authorized." msgstr "Вы не авторизованы." msgid "Page not found" -msgstr "" +msgstr "Страница не найдена" msgid "We couldn't find this page." msgstr "Мы не можем найти эту страницу." msgid "The link that led you here may be broken." -msgstr "" +msgstr "Сcылка, которая привела вас сюда, вероятно, оибочная." msgid "Users" -msgstr "" +msgstr "Пользователи" msgid "Configuration" msgstr "Конфигурация" @@ -587,40 +568,40 @@ msgid "Instances" msgstr "Узлы" msgid "Email blocklist" -msgstr "" +msgstr "Черный список E-mail" msgid "Grant admin rights" -msgstr "" +msgstr "Предоставить права администратора" msgid "Revoke admin rights" -msgstr "" +msgstr "Отозвать права администратора" msgid "Grant moderator rights" -msgstr "" +msgstr "Дать права модератора" msgid "Revoke moderator rights" -msgstr "" +msgstr "Отозвать права модератора" msgid "Ban" -msgstr "" +msgstr "Заблокировать" msgid "Run on selected users" -msgstr "" +msgstr "Запуск для выбранных пользователей" msgid "Moderator" -msgstr "" +msgstr "Модератор" msgid "Moderation" -msgstr "" +msgstr "Модерация" msgid "Home" -msgstr "" +msgstr "Главная страница" msgid "Administration of {0}" -msgstr "" +msgstr "Администрирование {0}" msgid "Unblock" -msgstr "" +msgstr "Разблокировать" msgid "Block" msgstr "Заблокировать" @@ -629,130 +610,115 @@ msgid "Name" msgstr "Имя" msgid "Allow anyone to register here" -msgstr "" +msgstr "Разрешить любому зарегистрироваться здесь" msgid "Short description" -msgstr "" +msgstr "Краткое описание" msgid "Markdown syntax is supported" -msgstr "" +msgstr "Поддерживается синтаксис Markdown" msgid "Long description" msgstr "Длинное описание" msgid "Default article license" -msgstr "" +msgstr "Лицензия статей по умолчанию" msgid "Save these settings" -msgstr "" +msgstr "Сохранить эти настройки" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Если вы просматриваете этот сайт в качестве посетителя, никаких данных о вас не собирается." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Как зарегистрированный пользователь, вы должны указать ваше имя пользователя (которое не должно быть вашим настоящим именем), ваш действующий адрес электронной почты и пароль, чтобы иметь возможность войти в систему, писать статьи и комментарии. Составленный вами контент хранится до тех пор, пока вы его не удаляете." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Когда вы входите в систему, мы храним два cookie-файла, один - для того, чтобы поддерживать вашу сессию открытой,, второй, чтобы не допустить действий других людей от вашего имени. Мы не храним другие куки." msgid "Blocklisted Emails" -msgstr "" +msgstr "Заблокированные адреса электронной почты" msgid "Email address" -msgstr "" +msgstr "Адрес электронной почты" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" -msgstr "" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "Адрес электронной почты, который вы хотите заблокировать. Чтобы заблокировать домены, вы можете использовать метасимволы, например '*@example.com' блокирует все адреса от example.com" msgid "Note" -msgstr "" +msgstr "Заметка" msgid "Notify the user?" -msgstr "" +msgstr "Уведомить пользователя?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "Необязательно, показывает пользователю сообщение при попытке создать учетную запись с этим адресом" msgid "Blocklisting notification" -msgstr "" +msgstr "Уведомление о Блокировке" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "Сообщение, которое будет показано, когда пользователь пытается создать учетную запись с этим адресом электронной почты" msgid "Add blocklisted address" -msgstr "" +msgstr "Добавить адрес в список блокировки" msgid "There are no blocked emails on your instance" -msgstr "" +msgstr "На вашем узле нет заблокированных адресов электронной почты" msgid "Delete selected emails" -msgstr "" +msgstr "Удалить выбранные адреса" msgid "Email address:" -msgstr "" +msgstr "Адрес электронной почты:" msgid "Blocklisted for:" -msgstr "" +msgstr "Блокировано для:" msgid "Will notify them on account creation with this message:" -msgstr "" +msgstr "Уведомлять их при создании учетной записи с таким сообщением:" msgid "The user will be silently prevented from making an account" -msgstr "" +msgstr "Пользователю не будет позволено создать учетную запись без объяснения причин" msgid "Welcome to {}" -msgstr "" +msgstr "Добро пожаловать в {}" msgid "View all" msgstr "Показать все" msgid "About {0}" -msgstr "" +msgstr "О {0}" msgid "Runs Plume {0}" msgstr "Работает на Plume {0}" msgid "Home to {0} people" -msgstr "" +msgstr "Место общения {0} человек" msgid "Who wrote {0} articles" -msgstr "" +msgstr "Которые написали {0} статей" msgid "And are connected to {0} other instances" -msgstr "" +msgstr "И подключены к {0} другим узлам" msgid "Administred by" msgstr "Администрируется" msgid "Interact with {}" -msgstr "" +msgstr "Взаимодействовать с {}" msgid "Log in to interact" -msgstr "" +msgstr "Войдите, чтобы взаимодействовать" msgid "Enter your full username to interact" -msgstr "" +msgstr "Введите полное имя пользователя для взаимодействия" msgid "Publish" msgstr "Опубликовать" msgid "Classic editor (any changes will be lost)" -msgstr "" +msgstr "Классический редактор (все изменения будут утеряны)" msgid "Title" msgstr "Заголовок" @@ -763,147 +729,139 @@ 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 "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Вы можете загрузить медиафайлы в галерею, а затем скопировать их код Markdown в ваши статьи, чтобы вставить их." msgid "Upload media" -msgstr "" +msgstr "Загрузить медиафайл" msgid "Tags, separated by commas" -msgstr "" +msgstr "Теги через запятую" msgid "License" -msgstr "" +msgstr "Лицензия" msgid "Illustration" msgstr "Иллюстрация" msgid "This is a draft, don't publish it yet." -msgstr "" +msgstr "Это черновик, пока не публикуйте его." msgid "Update" -msgstr "" +msgstr "Обновить" msgid "Update, or publish" -msgstr "" +msgstr "Обновить или опубликовать" msgid "Publish your post" -msgstr "" +msgstr "Опубликовать ваш пост" msgid "Written by {0}" -msgstr "" +msgstr "Написано {0}" msgid "All rights reserved." -msgstr "" +msgstr "Все права защищены." msgid "This article is under the {0} license." -msgstr "" +msgstr "Эта статья опубликована под лицензией {0}." msgid "One like" msgid_plural "{0} likes" msgstr[0] "Один лайк" msgstr[1] "{0} лайка" msgstr[2] "{0} лайков" -msgstr[3] "" +msgstr[3] "{0} лайков" msgid "I don't like this anymore" -msgstr "" +msgstr "Мне это больше не нравится" msgid "Add yours" -msgstr "" +msgstr "Добавьте ваш" msgid "One boost" msgid_plural "{0} boosts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Одно продвижение" +msgstr[1] "{0} продвижения" +msgstr[2] "{0} продвижений" +msgstr[3] "{0} продвижений" msgid "I don't want to boost this anymore" -msgstr "" +msgstr "Я не хочу больше повышать это" msgid "Boost" msgstr "Продвинуть" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Войдите{1}, или {2}используйте ваш Fediverse аккаунт{3} для взаимодействия с этой статьей" msgid "Comments" -msgstr "" +msgstr "Комментарии" msgid "Your comment" -msgstr "" +msgstr "Ваш комментарий" msgid "Submit comment" -msgstr "" +msgstr "Отправить комментарий" msgid "No comments yet. Be the first to react!" -msgstr "" +msgstr "Комментариев пока нет. Будьте первым, кто выскажется!" msgid "Are you sure?" -msgstr "" +msgstr "Вы уверены?" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" +msgstr "Эта статья все еще является черновиком. Только вы и другие авторы могут ее видеть." msgid "Only you and other authors can edit this article." -msgstr "" +msgstr "Только вы и другие авторы могут редактировать эту статью." msgid "Edit" msgstr "Редактировать" msgid "I'm from this instance" -msgstr "" +msgstr "Я пользователь этого узла" msgid "Username, or email" -msgstr "" +msgstr "Имя пользователя или адрес эл. почты" msgid "Log in" -msgstr "" +msgstr "Войти" msgid "I'm from another instance" -msgstr "" +msgstr "Я пользователь другого узла" msgid "Continue to your instance" -msgstr "" +msgstr "Продолжить на вашем узле" msgid "Reset your password" -msgstr "" +msgstr "Сбросить пароль" msgid "New password" -msgstr "" +msgstr "Новый пароль" msgid "Confirmation" -msgstr "" +msgstr "Подтверждение" msgid "Update password" -msgstr "" +msgstr "Сменить пароль" msgid "Check your inbox!" -msgstr "" +msgstr "Проверьте ваш почтовый ящик!" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "" +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "Мы отправили письмо на адрес, который вы нам дали, со ссылкой для сброса пароля." msgid "Send password reset link" -msgstr "" +msgstr "Отправить ссылку для сброса пароля" msgid "This token has expired" -msgstr "" +msgstr "Истек срок действия этого токена" -msgid "" -"Please start the process again by clicking here." -msgstr "" +msgid "Please start the process again by clicking here." +msgstr "Пожалуйста, начните процесс еще раз, нажав здесь." msgid "New Blog" -msgstr "" +msgstr "Новый блог" msgid "Create a blog" msgstr "Создать блог" @@ -912,63 +870,62 @@ msgid "Create blog" msgstr "Создать блог" msgid "Edit \"{}\"" -msgstr "" +msgstr "Редактировать \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Вы можете загружать изображения в галерею, использовать их как иконки блога, или баннеры." msgid "Upload images" -msgstr "" +msgstr "Загрузить изображения" msgid "Blog icon" -msgstr "" +msgstr "Иконка блога" msgid "Blog banner" -msgstr "" +msgstr "Баннер блога" msgid "Custom theme" -msgstr "" +msgstr "Пользовательская тема" msgid "Update blog" -msgstr "" +msgstr "Обновить блог" msgid "Be very careful, any action taken here can't be reversed." -msgstr "" +msgstr "Будьте очень осторожны, никакие действия здесь не могут быть отменены." msgid "Are you sure that you want to permanently delete this blog?" -msgstr "" +msgstr "Вы уверены, что хотите навсегда удалить этот блог?" msgid "Permanently delete this blog" -msgstr "" +msgstr "Навсегда удалить этот блог" msgid "{}'s icon" -msgstr "" +msgstr "Значок {}" msgid "There's one author on this blog: " msgid_plural "There are {0} authors on this blog: " -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "В этом блоге один автор: " +msgstr[1] "В этом блоге {0} автора: " +msgstr[2] "В этом блоге {0} автора: " +msgstr[3] "В этом блоге {0} авторов: " msgid "No posts to see here yet." msgstr "Здесь пока нет постов." msgid "Nothing to see here yet." -msgstr "" +msgstr "Здесь ничего нет." msgid "None" msgstr "Нет" msgid "No description" -msgstr "" +msgstr "Нет описания" msgid "Respond" msgstr "Ответить" msgid "Delete this comment" -msgstr "" +msgstr "Удалить этот комментарий" msgid "What is Plume?" msgstr "Что такое Plume?" @@ -977,87 +934,86 @@ msgid "Plume is a decentralized blogging engine." msgstr "Plume это децентрализованный движок для блоггинга." msgid "Authors can manage multiple blogs, each as its own website." -msgstr "" +msgstr "Авторы могут управлять несколькими блогами, каждый из которых является собственным сайтом." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Статьи также видны на других экземплярах Plume, и вы можете взаимодействовать с ними непосредственно с других платформ, таких как Мастодонт." msgid "Read the detailed rules" msgstr "Прочитать подробные правила" msgid "By {0}" -msgstr "" +msgstr "От: {0}" msgid "Draft" -msgstr "" +msgstr "Черновик" msgid "Search result(s) for \"{0}\"" -msgstr "" +msgstr "Результат(ы) поиска для \"{0}\"" msgid "Search result(s)" -msgstr "" +msgstr "Результат(ы) поиска" msgid "No results for your query" -msgstr "" +msgstr "По вашему запросу ничего не найдено" msgid "No more results for your query" -msgstr "" +msgstr "Больше результатов по вашему запросу нет" msgid "Advanced search" -msgstr "" +msgstr "Расширенный поиск" msgid "Article title matching these words" -msgstr "" +msgstr "Заголовок статьи, содержащий эти слова" msgid "Subtitle matching these words" -msgstr "" +msgstr "Подзаголовок. содержащий эти слова" msgid "Content macthing these words" -msgstr "" +msgstr "Текст статьи, содержащий эти слова" msgid "Body content" -msgstr "" +msgstr "Содержимое тела" msgid "From this date" -msgstr "" +msgstr "С этой даты" msgid "To this date" -msgstr "" +msgstr "До этой даты" msgid "Containing these tags" -msgstr "" +msgstr "Содержащие эти тэги" msgid "Tags" -msgstr "" +msgstr "Теги" msgid "Posted on one of these instances" -msgstr "" +msgstr "Опубликовано на одном из этих узлов" msgid "Instance domain" -msgstr "" +msgstr "Домен узла" msgid "Posted by one of these authors" -msgstr "" +msgstr "Опубликовано одним из этих авторов" msgid "Author(s)" -msgstr "" +msgstr "Автор(ы)" msgid "Posted on one of these blogs" -msgstr "" +msgstr "Размещено на одном из блогов" msgid "Blog title" -msgstr "" +msgstr "Заголовок блога" msgid "Written in this language" -msgstr "" +msgstr "Написано на этом языке" msgid "Language" -msgstr "" +msgstr "Язык" msgid "Published under this license" -msgstr "" +msgstr "Опубликовано по этой лицензии" msgid "Article license" -msgstr "" +msgstr "Лицензия статьи" + diff --git a/po/plume/sat.po b/po/plume/sat.po index ccda89ee..b6324397 100644 --- a/po/plume/sat.po +++ b/po/plume/sat.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Santali\n" "Language: sat_IN\n" @@ -65,59 +65,59 @@ msgstr "ᱤᱱᱟᱹ ᱛᱟᱭᱚᱢ ᱥᱟᱦᱴᱟ" msgid "Optional" msgstr "ᱚᱯᱥᱚᱱᱟᱞ" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "ᱦᱩᱭᱮᱱᱟ ᱾" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -177,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "ᱱᱟᱣᱟ ᱯᱚᱥᱴ" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "ᱥᱟᱯᱲᱟᱣ {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "ᱱᱟᱶᱟ ᱚᱱᱚᱞ" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -447,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -479,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -552,10 +543,7 @@ 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." +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 "You are not authorized." @@ -639,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -662,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -674,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -756,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -816,9 +787,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -875,9 +844,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -886,9 +853,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -903,8 +868,7 @@ msgstr "ᱵᱞᱚᱜ ᱛᱮᱭᱟᱨ ᱢᱮ" msgid "Edit \"{}\"" msgstr "\"{}\" ᱥᱟᱯᱰᱟᱣ" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -966,9 +930,7 @@ msgstr "" 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." +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" @@ -1048,3 +1010,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/si.po b/po/plume/si.po index 811074b9..6692f153 100644 --- a/po/plume/si.po +++ b/po/plume/si.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Sinhala\n" "Language: si_LK\n" @@ -59,65 +59,65 @@ msgstr "" # src/template_utils.rs:209 msgid "Next page" -msgstr "" +msgstr "ඊළඟ පිටුව" # src/template_utils.rs:363 msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -177,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -447,9 +441,7 @@ msgstr "මුර පදය" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -479,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -552,10 +543,7 @@ 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." +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 "You are not authorized." @@ -571,7 +559,7 @@ msgid "The link that led you here may be broken." msgstr "" msgid "Users" -msgstr "" +msgstr "පරිශීලකයින්" msgid "Configuration" msgstr "" @@ -613,13 +601,13 @@ msgid "Administration of {0}" msgstr "" msgid "Unblock" -msgstr "" +msgstr "අනවහිර" msgid "Block" -msgstr "" +msgstr "අවහිර" msgid "Name" -msgstr "" +msgstr "නම" msgid "Allow anyone to register here" msgstr "" @@ -639,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -662,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "විද්‍යුත් තැපැල් ලිපිනය" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -674,17 +651,13 @@ msgstr "සටහන" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -748,17 +721,15 @@ msgid "Classic editor (any changes will be lost)" msgstr "" msgid "Title" -msgstr "" +msgstr "මාතෘකාව" msgid "Subtitle" msgstr "" msgid "Content" -msgstr "" +msgstr "අන්තර්ගතය" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -768,7 +739,7 @@ msgid "Tags, separated by commas" msgstr "" msgid "License" -msgstr "" +msgstr "බලපත්‍රය" msgid "Illustration" msgstr "" @@ -816,16 +787,14 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" -msgstr "" +msgstr "අදහස්" msgid "Your comment" -msgstr "" +msgstr "ඔබගේ අදහස" msgid "Submit comment" msgstr "" @@ -843,16 +812,16 @@ msgid "Only you and other authors can edit this article." msgstr "" msgid "Edit" -msgstr "" +msgstr "සංස්කරණය" msgid "I'm from this instance" msgstr "" msgid "Username, or email" -msgstr "" +msgstr "පරිශීලක නාමය හෝ වි-තැපෑල" msgid "Log in" -msgstr "" +msgstr "පිවිසෙන්න" msgid "I'm from another instance" msgstr "" @@ -864,7 +833,7 @@ msgid "Reset your password" msgstr "" msgid "New password" -msgstr "" +msgstr "නව මුරපදය" msgid "Confirmation" msgstr "" @@ -875,9 +844,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -886,9 +853,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -903,8 +868,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -946,7 +910,7 @@ msgid "Nothing to see here yet." msgstr "" msgid "None" -msgstr "" +msgstr "කිසිවක් නැත" msgid "No description" msgstr "" @@ -966,9 +930,7 @@ msgstr "" 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." +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" @@ -1048,3 +1010,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/sk.po b/po/plume/sk.po index e2551ed6..d1f7fcf8 100644 --- a/po/plume/sk.po +++ b/po/plume/sk.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-12-11 15:00\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Language: sk_SK\n" @@ -19,7 +19,7 @@ msgstr "" # src/template_utils.rs:105 msgid "{0} commented on your article." -msgstr "{0} komentoval/a tvoj článok." +msgstr "{0} okomentoval/a tvoj článok." # src/template_utils.rs:106 msgid "{0} is subscribed to you." @@ -65,59 +65,59 @@ msgstr "Ďalšia stránka" msgid "Optional" msgstr "Volitelné/Nepovinný údaj" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Aby si vytvoril/a nový blog, musíš byť prihlásený/á" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Blog s rovnakým názvom už existuje." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Tvoj blog bol úspešne vytvorený!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Tvoj blog bol zmazaný." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Nemáš povolenie vymazať tento blog." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Nemáš dovolené upravovať tento blog." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Tento mediálny súbor nemožno použiť ako ikonku pre blog." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Tento mediálny súbor nemožno použiť ako záhlavie pre blog." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Informácie o tvojom blogu boli aktualizované." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Tvoj komentár bol odoslaný." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Tvoj komentár bol vymazaný." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Nastavenia instancie boli uložené." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "{} bol/a odblokovaný/á." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{} bol/a zablokovaný/á." @@ -125,51 +125,51 @@ msgstr "{} bol/a zablokovaný/á." msgid "Blocks deleted" msgstr "Blokovania vymazané" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" -msgstr "" +msgstr "Email už je zablokovaný" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "Email zablokovaný" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "Nemôžeš zmeniť svoje vlastné oprávnenia." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "Nemáš oprávnenie vykonať túto akciu." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "Hotovo." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Aby si si obľúbil/a príspevok, musíš sa prihlásiť" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Tvoj mediálny súbor bol vymazaný." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Nemáš povolenie vymazať tento mediálny súbor." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Tvoj avatár bol aktualizovaný." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Nemáš povolenie použiť tento mediálny súbor." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Aby si videl/a notifikácie, musíš sa prihlásiť" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Tento príspevok ešte nie je uverejnený." @@ -177,124 +177,113 @@ msgstr "Tento príspevok ešte nie je uverejnený." msgid "To write a new post, you need to be logged in" msgstr "Pre napísanie nového príspevku sa musíš prihlásiť" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Nie si autorom na tomto blogu." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Nový príspevok" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Uprav {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Na tomto blogu nemáš dovolené uverejňovať." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Tvoj článok bol upravený." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Tvoj článok bol uložený." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Nový článok" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Nemáš povolenie vymazať tento článok." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Tvoj článok bol vymazaný." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Vyzerá to tak, že článok, ktorý si sa pokúšal/a vymazať neexistuje. Možno je " -"už preč?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Vyzerá to tak, že článok, ktorý si sa pokúšal/a vymazať neexistuje. Možno je už preč?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Nebolo možné zistiť postačujúce množstvo informácií o tvojom účte. Prosím " -"over si, že celá tvoja prezývka je zadaná správne." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Nebolo možné zistiť postačujúce množstvo informácií o tvojom účte. Prosím over si, že tvoja prezývka je zadaná správne, v celku." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Na zdieľanie príspevku sa musíš prihlásiť" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Teraz si pripojený/á." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Teraz si odhlásený." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Obnovenie hesla" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "Tu je odkaz na obnovenie tvojho hesla: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Tvoje heslo bolo úspešne zmenené." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Pre prístup k prehľadovému panelu sa musíš prihlásiť" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Už nenásleduješ {}." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Teraz už následuješ {}." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Ak chceš niekoho odoberať, musíš sa prihlásiť" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "Na upravenie svojho profilu sa musíš prihlásiť" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Tvoj profil bol upravený." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Tvoj účet bol vymazaný." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Nemôžeš vymazať účet niekoho iného." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "Registrácie na tejto instancii sú uzatvorené." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" -"Tvoj účet bol vytvorený. K jeho užívaniu sa teraz musíš už len prihlásiť." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "Tvoj účet bol vytvorený. K jeho užívaniu sa teraz musíš už len prihlásiť." msgid "Media upload" msgstr "Nahrávanie mediálnych súborov" @@ -303,8 +292,7 @@ msgid "Description" msgstr "Popis" msgid "Useful for visually impaired people, as well as licensing information" -msgstr "" -"Užitočné pre zrakovo postihnutých ľudí, ako aj pre informácie o licencovaní" +msgstr "Užitočné pre zrakovo postihnutých ľudí, ako aj pre informácie o licencovaní" msgid "Content warning" msgstr "Varovanie o obsahu" @@ -453,12 +441,8 @@ msgstr "Heslo" msgid "Password confirmation" msgstr "Potvrdenie hesla" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Ospravedlňujeme sa, ale na tejto konkrétnej instancii sú registrácie " -"zatvorené. Môžeš si však nájsť inú." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Ospravedlňujeme sa, ale na tejto konkrétnej instancii sú registrácie zatvorené. Môžeš si však nájsť inú." msgid "{0}'s subscriptions" msgstr "Odoberané užívateľom {0}" @@ -470,9 +454,7 @@ msgid "Your Blogs" msgstr "Tvoje blogy" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" -"Ešte nemáš žiaden blog. Vytvor si svoj vlastný, alebo požiadaj v niektorom o " -"členstvo." +msgstr "Ešte nemáš žiaden blog. Vytvor si svoj vlastný, alebo požiadaj v niektorom o členstvo." msgid "Start a new blog" msgstr "Začni nový blog" @@ -489,10 +471,8 @@ msgstr "Uprav svoj účet" msgid "Your Profile" msgstr "Tvoj profil" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"Pre zmenu tvojho avataru ho nahraj do svojej galérie a potom ho odtiaľ zvoľ." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "Pre zmenu tvojho avataru ho nahraj do svojej galérie a potom ho odtiaľ zvoľ." msgid "Upload an avatar" msgstr "Nahraj avatar" @@ -522,16 +502,13 @@ msgid "Danger zone" msgstr "Riziková zóna" msgid "Be very careful, any action taken here can't be cancelled." -msgstr "" -"Buď veľmi opatrný/á, akýkoľvek úkon vykonaný v tomto priestore nieje možné " -"vziať späť." +msgstr "Buď veľmi opatrný/á, akýkoľvek úkon vykonaný v tomto priestore nieje možné vziať späť." msgid "Delete your account" msgstr "Vymaž svoj účet" msgid "Sorry, but as an admin, you can't leave your own instance." -msgstr "" -"Prepáč, ale ako jej správca, ty nemôžeš opustiť svoju vlastnú instanciu." +msgstr "Prepáč, ale ako jej správca, ty nemôžeš opustiť svoju vlastnú instanciu." msgid "Latest articles" msgstr "Najnovšie články" @@ -566,14 +543,8 @@ msgstr "Prepáč ohľadom toho. Ak si myslíš, že ide o chybu, prosím nahlás msgid "Invalid CSRF token" msgstr "Neplatný CSRF token" -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 "" -"Niečo nieje v poriadku s tvojím CSRF tokenom. Uisti sa, že máš vo svojom " -"prehliadači povolené cookies, potom skús načítať stránku znovu. Ak budeš aj " -"naďalej vidieť túto chybovú správu, prosím nahlás ju." +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 "Niečo nieje v poriadku s tvojím CSRF tokenom. Uisti sa, že máš vo svojom prehliadači povolené cookies, potom skús načítať stránku znovu. Ak budeš aj naďalej vidieť túto chybovú správu, prosím nahlás ju." msgid "You are not authorized." msgstr "Nemáš oprávnenie." @@ -621,7 +592,7 @@ msgid "Moderator" msgstr "Správca" msgid "Moderation" -msgstr "" +msgstr "Moderovanie" msgid "Home" msgstr "Domov" @@ -656,31 +627,14 @@ msgstr "Predvolená licencia článkov" msgid "Save these settings" msgstr "Ulož tieto nastavenia" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"Pokiaľ si túto stránku prezeráš ako návštevník, niesú o tebe zaznamenávané " -"žiadne dáta." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Pokiaľ si túto stránku prezeráš ako návštevník, niesú o tebe zaznamenávané žiadne dáta." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"Ako registrovaný užívateľ musíš poskytnúť svoje užívateľské meno (čo zároveň " -"nemusí byť tvoje skutočné meno), tvoju fungujúcu emailovú adresu a helso, " -"aby sa ti bolo možné prihlásiť, písať články a komentovať. Obsah, ktorý " -"zverejníš je uložený len pokiaľ ho nevymažeš." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Ako registrovaný užívateľ musíš poskytnúť svoje užívateľské meno (čo zároveň nemusí byť tvoje skutočné meno), tvoju fungujúcu emailovú adresu a helso, aby sa ti bolo možné prihlásiť, písať články a komentovať. Obsah, ktorý zverejníš je uložený len pokiaľ ho nevymažeš." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Keď sa prihlásiš, ukladáme dve cookies, jedno aby tvoja sezóna mohla ostať " -"otvorená, druhé je na zabránenie iným ľudom, aby konali za teba. Žiadne iné " -"cookies neukladáme." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Keď sa prihlásiš, ukladáme dve cookies, jedno aby tvoja sezóna mohla ostať otvorená, druhé je na zabránenie iným ľudom, aby konali za teba. Žiadne iné cookies neukladáme." msgid "Blocklisted Emails" msgstr "Blokované emaily" @@ -688,10 +642,7 @@ msgstr "Blokované emaily" msgid "Email address" msgstr "Emailová adresa" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -700,24 +651,20 @@ msgstr "Poznámka" msgid "Notify the user?" msgstr "Oboznámiť používateľa?" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" -msgstr "" +msgstr "Oboznámenie o blokovaní" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" msgstr "Pridaj blokovanú adresu" msgid "There are no blocked emails on your instance" -msgstr "" +msgstr "Na tvojej instancii niesú žiadné emailové adresy zakázané" msgid "Delete selected emails" msgstr "Vymaž vybrané emaily" @@ -729,16 +676,16 @@ msgid "Blocklisted for:" msgstr "Zablokovaná kvôli:" msgid "Will notify them on account creation with this message:" -msgstr "" +msgstr "Pri vytvorení účtu budú užívatelia oboznámení touto správou:" msgid "The user will be silently prevented from making an account" -msgstr "" +msgstr "Užívateľovi bude v tichosti znemožnené vytvorenie účtu" msgid "Welcome to {}" msgstr "Vitaj na {}" msgid "View all" -msgstr "Zobraz všetky" +msgstr "Ukázať všetky" msgid "About {0}" msgstr "O {0}" @@ -782,12 +729,8 @@ msgstr "Podnadpis" msgid "Content" msgstr "Obsah" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Do svojej galérie môžeš nahrávať multimédiá, a potom skopírovať ich Markdown " -"syntaxiu do tvojích článkov, aby si ich vložil/a." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Do svojej galérie môžeš nahrávať multimédiá, a potom skopírovať ich Markdown syntaxiu do tvojích článkov, aby si ich vložil/a." msgid "Upload media" msgstr "Nahraj multimédiá" @@ -848,12 +791,8 @@ msgstr "Už to viac nechcem vyzdvihovať" msgid "Boost" msgstr "Vyzdvihni" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Prihlás sa{1}, alebo {2}použi svoj účet v rámci Fediversa{3} pre " -"narábanie s týmto článkom" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Prihlás sa{1}, alebo {2}použi svoj účet v rámci Fediversa{3} pre narábanie s týmto článkom" msgid "Comments" msgstr "Komentáre" @@ -871,9 +810,7 @@ msgid "Are you sure?" msgstr "Ste si istý/á?" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"Tento článok je ešte len konceptom. Vidieť ho môžeš iba ty, a ostatní jeho " -"autori." +msgstr "Tento článok je ešte len konceptom. Vidieť ho môžeš iba ty, a ostatní jeho autori." msgid "Only you and other authors can edit this article." msgstr "Iba ty, a ostatní autori môžu upravovať tento článok." @@ -911,12 +848,8 @@ msgstr "Aktualizovať heslo" msgid "Check your inbox!" msgstr "Pozri si svoju Doručenú poštu!" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "" -"Email s odkazom na obnovenie hesla bol odoslaný na adresu, ktorú si nám dal/" -"a." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "Email s odkazom na obnovenie hesla bol odoslaný na adresu, ktorú si nám dal/a." msgid "Send password reset link" msgstr "Pošli odkaz na obnovu hesla" @@ -924,9 +857,7 @@ msgstr "Pošli odkaz na obnovu hesla" msgid "This token has expired" msgstr "Toto token oprávnenie vypršalo" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "Prosím začni odznovu, kliknutím sem." msgid "New Blog" @@ -941,11 +872,8 @@ msgstr "Vytvor blog" msgid "Edit \"{}\"" msgstr "Uprav \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Do svojej galérie môžeš nahrávať obrázky, ktoré sa potom dajú použiť aj ako " -"ikonky, či záhlavie pre blogy." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Do svojej galérie môžeš nahrávať obrázky, ktoré sa potom dajú použiť aj ako ikonky, či záhlavie pre blogy." msgid "Upload images" msgstr "Nahraj obrázky" @@ -963,9 +891,7 @@ msgid "Update blog" msgstr "Aktualizuj blog" msgid "Be very careful, any action taken here can't be reversed." -msgstr "" -"Buď veľmi opatrný/á, akýkoľvek úkon vykonaný v tomto priestore nieje možné " -"vziať späť." +msgstr "Buď veľmi opatrný/á, akýkoľvek úkon vykonaný v tomto priestore nieje možné vziať späť." msgid "Are you sure that you want to permanently delete this blog?" msgstr "Si si istý/á, že chceš natrvalo zmazať tento blog?" @@ -1010,13 +936,8 @@ msgstr "Plume je decentralizovaná blogovacia platforma." msgid "Authors can manage multiple blogs, each as its own website." msgstr "Autori môžu spravovať viacero blogov, každý ako osobitnú stránku." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Články sú tiež viditeľné na iných Plume instanciách a môžeš s nimi " -"interaktovať priamo aj z iných federovaných platforiem, ako napríklad " -"Mastodon." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Články sú tiež viditeľné na iných Plume instanciách a môžeš s nimi interaktovať priamo aj z iných federovaných platforiem, ako napríklad Mastodon." msgid "Read the detailed rules" msgstr "Prečítaj si podrobné pravidlá" @@ -1095,3 +1016,4 @@ msgstr "Uverejnené pod touto licenciou" msgid "Article license" msgstr "Článok je pod licenciou" + diff --git a/po/plume/sl.po b/po/plume/sl.po index 746050c9..f95749a7 100644 --- a/po/plume/sl.po +++ b/po/plume/sl.po @@ -3,15 +3,14 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" -"%100==4 ? 3 : 0);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n" "X-Crowdin-Project: plume\n" "X-Crowdin-Project-ID: 352097\n" "X-Crowdin-Language: sl\n" @@ -66,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -126,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Ta članek še ni objavljen." @@ -178,118 +177,112 @@ msgstr "Ta članek še ni objavljen." msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Nisi avtor tega spletnika." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Nov članek" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Uredi {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Zdaj sta povezana." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Ponastavitev gesla" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -448,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -480,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -553,10 +543,7 @@ 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." +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 "You are not authorized." @@ -640,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -663,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -675,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -757,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -821,9 +791,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -880,9 +848,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -891,9 +857,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -908,8 +872,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -973,9 +936,7 @@ msgstr "" 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." +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" @@ -1055,3 +1016,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/sr.po b/po/plume/sr.po index b14d3a70..b545e6c3 100644 --- a/po/plume/sr.po +++ b/po/plume/sr.po @@ -3,15 +3,14 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Serbian (Latin)\n" "Language: sr_CS\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Crowdin-Project: plume\n" "X-Crowdin-Project-ID: 352097\n" "X-Crowdin-Language: sr-CS\n" @@ -66,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -126,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -178,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "Uredi {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Poništavanje lozinke" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -448,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -480,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -553,10 +543,7 @@ 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." +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 "You are not authorized." @@ -640,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -663,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -675,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -757,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -819,9 +789,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -878,9 +846,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -889,9 +855,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -906,8 +870,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -970,9 +933,7 @@ msgstr "" 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." +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" @@ -1052,3 +1013,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/sv.po b/po/plume/sv.po index 8b5bb00c..d573e9f6 100644 --- a/po/plume/sv.po +++ b/po/plume/sv.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "För att skapa en ny blogg måste du vara inloggad" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Du har inte tillstånd att ta bort den här bloggen." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Du har inte tillstånd att redigera den här bloggen." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -177,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -447,9 +441,7 @@ msgstr "Lösenord" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -479,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -552,10 +543,7 @@ 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." +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 "You are not authorized." @@ -639,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -662,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -674,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -756,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -816,9 +787,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -875,9 +844,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -886,9 +853,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -903,8 +868,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "Redigera \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -966,9 +930,7 @@ msgstr "" 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." +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" @@ -1048,3 +1010,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/tr.po b/po/plume/tr.po index 41dbf0ca..fb3d9062 100644 --- a/po/plume/tr.po +++ b/po/plume/tr.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "İsteğe bağlı" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Yeni bir günlük oluşturmak için, giriş yapman lazım" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Aynı isme sahip bir günlük zaten var." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Günlüğün başarıyla oluşturuldu!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Günlüğün silindi." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Bu günlüğü silmeye iznin yok." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Bu günlüğü düzenlemeye iznin yok." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Bu dosyayı günlük simgen olarak kullanamazsın." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Bu dosyayı günlük kapak fotoğrafın olarak kullanamazsın." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Günlüğün hakkındaki bilgiler güncellendi." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Yorumun yayınlandı." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Yorumun silindi." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Oluşumunun ayarları kaydedildi." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Bir yazıyı beğenmek için, giriş yapman lazım" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Dosyan silindi." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Bu dosyayı silme iznin yok." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Avatarın güncellendi." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "Bu dosyayı kullanma iznin yok." -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "Bildirimlerini görmek için, giriş yapman lazım" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "Bu gönderi henüz yayınlanmamış." @@ -177,124 +177,113 @@ msgstr "Bu gönderi henüz yayınlanmamış." msgid "To write a new post, you need to be logged in" msgstr "Yeni bir yazı yazmak için, giriş yapman lazım" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "Bu günlüğün sahibi değilsin." -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "Yeni gönderi" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "{0} günlüğünü düzenle" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "Bu günlükte yayınlamak için iznin yok." -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "Makalen güncellendi." -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "Makalen kaydedildi." -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "Yeni makale" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "Bu makaleyi silmek için iznin yok." -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "Makalen silindi." -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "" -"Görünüşe göre silmek istediğin makale mevcut değil. Belki de zaten " -"silinmiştir?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "Görünüşe göre silmek istediğin makale mevcut değil. Belki de zaten silinmiştir?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "" -"Hesabın hakkında yeterli bilgi edinemedik. Lütfen kullanıcı adını doğru " -"yazdığından emin ol." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "Hesabın hakkında yeterli bilgi edinemedik. Lütfen kullanıcı adını doğru yazdığından emin ol." -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "Bir yazıyı yeniden paylaşmak için, giriş yapman lazım" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "Artık bağlısın." -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "Şimdi çıkış yaptınız." -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "Şifre Sıfırlama" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "İşte şifreni sıfırlamak için kullabileceğin bağlantı: {0}" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "Şifren başarıyla sıfırlandı." -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "Yönetim panelinize erişmek için giriş yapmanız gerekmektedir" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "Artık {} kullanıcısını takip etmiyorsunuz." -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "Artık {} kullanıcısını takip ediyorsunuz." -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "Birisine abone olmak için giriş yapmanız gerekmektedir" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "Profilinizi düzenlemek için giriş yapmanız gerekmektedir" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "Profiliniz güncellendi." -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "Hesabınız silindi." -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "Başka birisinin hesabını silemezsiniz." -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "Bu örnekte kayıtlar kapalıdır." -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "" -"Hesabınız oluşturuldu. Şimdi kullanabilmeniz için giriş yapmanız yeterlidir." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "Hesabınız oluşturuldu. Şimdi kullanabilmeniz için giriş yapmanız yeterlidir." msgid "Media upload" msgstr "Medya karşıya yükleme" @@ -452,12 +441,8 @@ msgstr "Parola" msgid "Password confirmation" msgstr "Parola doğrulama" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "" -"Özür dileriz, ancak bu örnek kayıt olmaya kapalıdır. Ama farklı bir tane " -"bulabilirsiniz." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "Özür dileriz, ancak bu örnek kayıt olmaya kapalıdır. Ama farklı bir tane bulabilirsiniz." msgid "{0}'s subscriptions" msgstr "{0}'in abonelikleri" @@ -469,8 +454,7 @@ msgid "Your Blogs" msgstr "Günlüklerin" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "" -"Henüz hiç günlüğün yok :( Bir tane yarat veya birine katılmak için izin al." +msgstr "Henüz hiç günlüğün yok :( Bir tane yarat veya birine katılmak için izin al." msgid "Start a new blog" msgstr "Yeni bir günlük başlat" @@ -487,10 +471,8 @@ msgstr "Hesabınızı düzenleyin" msgid "Your Profile" msgstr "Profiliniz" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "" -"Avatarınızı değiştirmek için galerinize yükleyin ve ardından oradan seçin." +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "Avatarınızı değiştirmek için galerinize yükleyin ve ardından oradan seçin." msgid "Upload an avatar" msgstr "Bir avatar yükle" @@ -556,20 +538,13 @@ msgid "Something broke on our side." msgstr "Bizim tarafımızda bir şeyler bozuldu." msgid "Sorry about that. If you think this is a bug, please report it." -msgstr "" -"Bunun için üzgünüz. Bunun bir hata olduğunu düşünüyorsanız, lütfen bildirin." +msgstr "Bunun için üzgünüz. Bunun bir hata olduğunu düşünüyorsanız, lütfen bildirin." msgid "Invalid CSRF token" msgstr "Geçersiz CSRF belirteci" -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 "" -"CSRF belirtecinizle ilgili bir sorun var. Tarayıcınızda çerezlerin " -"etkinleştirildiğinden emin olun ve bu sayfayı yeniden yüklemeyi deneyin. Bu " -"hata mesajını görmeye devam ederseniz, lütfen bildirin." +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 "CSRF belirtecinizle ilgili bir sorun var. Tarayıcınızda çerezlerin etkinleştirildiğinden emin olun ve bu sayfayı yeniden yüklemeyi deneyin. Bu hata mesajını görmeye devam ederseniz, lütfen bildirin." msgid "You are not authorized." msgstr "Yetkiniz yok." @@ -652,30 +627,14 @@ msgstr "Varsayılan makale lisansı" msgid "Save these settings" msgstr "Bu ayarları kaydet" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "" -"Bu siteye ziyaretçi olarak göz atıyorsanız, hakkınızda veri toplanmamaktadır." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "Bu siteye ziyaretçi olarak göz atıyorsanız, hakkınızda veri toplanmamaktadır." -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." -msgstr "" -"Kayıtlı bir kullanıcı olarak, giriş yapmak, makale yazmak ve yorum yapmak " -"için bir kullanıcı adına (ki bu kullanıcı adının senin gerçek adın olması " -"gerekmiyor), kullanabildiğin bir e-posta adresine ve bir şifreye ihtiyacın " -"var. Girdiğin bilgiler sen hesabını silene dek depolanır." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "Kayıtlı bir kullanıcı olarak, giriş yapmak, makale yazmak ve yorum yapmak için bir kullanıcı adına (ki bu kullanıcı adının senin gerçek adın olması gerekmiyor), kullanabildiğin bir e-posta adresine ve bir şifreye ihtiyacın var. Girdiğin bilgiler sen hesabını silene dek depolanır." -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." -msgstr "" -"Giriş yaptığınızda; biri oturumunuzu açık tutmak için, ikincisi başkalarının " -"sizin adınıza hareket etmesini önlemek için iki çerez saklamaktayız. Başka " -"çerez saklamıyoruz." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "Giriş yaptığınızda; biri oturumunuzu açık tutmak için, ikincisi başkalarının sizin adınıza hareket etmesini önlemek için iki çerez saklamaktayız. Başka çerez saklamıyoruz." msgid "Blocklisted Emails" msgstr "" @@ -683,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -695,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -777,12 +729,8 @@ msgstr "Altyazı" msgid "Content" msgstr "İçerik" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "" -"Galerine bir resim ekleyebilir, daha sonra makalene eklemek için resmin " -"Markdown kodunu kopyalayabilirsin." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." +msgstr "Galerine bir resim ekleyebilir, daha sonra makalene eklemek için resmin Markdown kodunu kopyalayabilirsin." msgid "Upload media" msgstr "Medyayı karşıya yükle" @@ -839,12 +787,8 @@ msgstr "Bunu artık desteklemek istemiyorum" msgid "Boost" msgstr "Destekle" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "" -"{0}Giriş yaparak{1}, ya da {2}Fediverse hesabını kullanarak{3} bu makaleyle " -"iletişime geç" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "{0}Giriş yaparak{1}, ya da {2}Fediverse hesabını kullanarak{3} bu makaleyle iletişime geç" msgid "Comments" msgstr "Yorumlar" @@ -862,8 +806,7 @@ msgid "Are you sure?" msgstr "Emin misiniz?" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "" -"Bu makale hâlâ bir taslak. Yalnızca sen ve diğer yazarlar bunu görebilir." +msgstr "Bu makale hâlâ bir taslak. Yalnızca sen ve diğer yazarlar bunu görebilir." msgid "Only you and other authors can edit this article." msgstr "Sadece sen ve diğer yazarlar bu makaleyi düzenleyebilir." @@ -901,11 +844,8 @@ msgstr "Parolayı güncelle" msgid "Check your inbox!" msgstr "Gelen kutunuzu kontrol edin!" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "" -"Bize verdiğiniz adrese, parola sıfırlama linki içeren bir e-posta gönderdik." +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "Bize verdiğiniz adrese, parola sıfırlama linki içeren bir e-posta gönderdik." msgid "Send password reset link" msgstr "Parola sıfırlama linki gönder" @@ -913,9 +853,7 @@ msgstr "Parola sıfırlama linki gönder" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -930,11 +868,8 @@ msgstr "Günlük oluştur" msgid "Edit \"{}\"" msgstr "Düzenle: \"{}\"" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "" -"Günlük simgeleri veya manşeti olarak kullanmak için resimleri galerinize " -"yükleyebilirsiniz." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "Günlük simgeleri veya manşeti olarak kullanmak için resimleri galerinize yükleyebilirsiniz." msgid "Upload images" msgstr "Resimleri karşıya yükle" @@ -995,12 +930,8 @@ msgstr "Plume merkezi olmayan bir internet günlüğü yazma motorudur." msgid "Authors can manage multiple blogs, each as its own website." msgstr "Yazarlar her biri farklı sitedeki birden çok günlüğü yönetebilirler." -msgid "" -"Articles are also visible on other Plume instances, and you can interact " -"with them directly from other platforms like Mastodon." -msgstr "" -"Makaleler ayrıca diğer Plume oluşumlarında da görünür. Mastodon gibi " -"platformlardan yazılarla doğrudan etkileşime geçebilirsin." +msgid "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon." +msgstr "Makaleler ayrıca diğer Plume oluşumlarında da görünür. Mastodon gibi platformlardan yazılarla doğrudan etkileşime geçebilirsin." msgid "Read the detailed rules" msgstr "Detaylı kuralları oku" @@ -1079,3 +1010,4 @@ msgstr "Bu lisans altında yayınlanan" msgid "Article license" msgstr "Makale lisansı" + diff --git a/po/plume/uk.po b/po/plume/uk.po index 23d52dfa..1532eb34 100644 --- a/po/plume/uk.po +++ b/po/plume/uk.po @@ -3,16 +3,14 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 " -"&& n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 " -"&& n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" "X-Crowdin-Project: plume\n" "X-Crowdin-Project-ID: 352097\n" "X-Crowdin-Language: uk\n" @@ -67,59 +65,59 @@ msgstr "Наступна сторінка" msgid "Optional" msgstr "Необов'язково" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "Щоб створити новий дописник, ви повинні увійти" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "Дописник з такою назвою вже існує." -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "Ваш дописник успішно створено!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "Ваш дописник видалений." -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "Вам не дозволено видаляти цей дописник." -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "Вам не дозволено редагувати цей дописник." -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "Ви не можете використовувати цю медіа як іконку у дописнику." -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "Ви не можете використовувати цю медіа як банер у дописнику." -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "Інформація вашого дописника оновлена." -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "Ваш коментар додано." -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "Ваш коментар вилучений." -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "Налаштування були збережені." -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "{} розблоковано." -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "{} заблоковано." @@ -127,51 +125,51 @@ msgstr "{} заблоковано." msgid "Blocks deleted" msgstr "Блоки видалено" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "Email заблоковано" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "Ви не можете змінити вашу власну роль." -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "Ви не маєте права для виконання цієї дії." -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "Готово." -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "Щоб вподобати допис, ви повинні увійти" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "Вашу медіа вилучено." -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "Вам не дозволено видаляти дану медіа." -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "Ваша мармизка оновлена." -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -179,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -449,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -481,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -554,10 +543,7 @@ 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." +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 "You are not authorized." @@ -641,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -664,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -676,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -758,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -822,9 +791,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -881,9 +848,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -892,9 +857,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -909,8 +872,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -974,9 +936,7 @@ msgstr "" 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." +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" @@ -1056,3 +1016,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/ur.po b/po/plume/ur.po new file mode 100644 index 00000000..f95049b7 --- /dev/null +++ b/po/plume/ur.po @@ -0,0 +1,1013 @@ +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: 2021-05-05 18:31\n" +"Last-Translator: \n" +"Language-Team: Urdu (Pakistan)\n" +"Language: ur_PK\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-Crowdin-Project: plume\n" +"X-Crowdin-Project-ID: 352097\n" +"X-Crowdin-Language: ur-PK\n" +"X-Crowdin-File: /master/po/plume/plume.pot\n" +"X-Crowdin-File-ID: 8\n" + +# src/template_utils.rs:105 +msgid "{0} commented on your article." +msgstr "" + +# src/template_utils.rs:106 +msgid "{0} is subscribed to you." +msgstr "" + +# src/template_utils.rs:107 +msgid "{0} liked your article." +msgstr "" + +# src/template_utils.rs:108 +msgid "{0} mentioned you." +msgstr "" + +# src/template_utils.rs:109 +msgid "{0} boosted your article." +msgstr "" + +# src/template_utils.rs:116 +msgid "Your feed" +msgstr "" + +# src/template_utils.rs:117 +msgid "Local feed" +msgstr "" + +# src/template_utils.rs:118 +msgid "Federated feed" +msgstr "" + +# src/template_utils.rs:154 +msgid "{0}'s avatar" +msgstr "" + +# src/template_utils.rs:198 +msgid "Previous page" +msgstr "" + +# src/template_utils.rs:209 +msgid "Next page" +msgstr "" + +# src/template_utils.rs:363 +msgid "Optional" +msgstr "" + +# src/routes/blogs.rs:67 +msgid "To create a new blog, you need to be logged in" +msgstr "" + +# src/routes/blogs.rs:109 +msgid "A blog with the same name already exists." +msgstr "" + +# src/routes/blogs.rs:147 +msgid "Your blog was successfully created!" +msgstr "" + +# src/routes/blogs.rs:165 +msgid "Your blog was deleted." +msgstr "" + +# src/routes/blogs.rs:173 +msgid "You are not allowed to delete this blog." +msgstr "" + +# src/routes/blogs.rs:223 +msgid "You are not allowed to edit this blog." +msgstr "" + +# src/routes/blogs.rs:279 +msgid "You can't use this media as a blog icon." +msgstr "" + +# src/routes/blogs.rs:297 +msgid "You can't use this media as a blog banner." +msgstr "" + +# src/routes/blogs.rs:331 +msgid "Your blog information have been updated." +msgstr "" + +# src/routes/comments.rs:100 +msgid "Your comment has been posted." +msgstr "" + +# src/routes/comments.rs:177 +msgid "Your comment has been deleted." +msgstr "" + +# src/routes/instance.rs:117 +msgid "Instance settings have been saved." +msgstr "" + +# src/routes/instance.rs:150 +msgid "{} has been unblocked." +msgstr "" + +# src/routes/instance.rs:152 +msgid "{} has been blocked." +msgstr "" + +# src/routes/instance.rs:203 +msgid "Blocks deleted" +msgstr "" + +# src/routes/instance.rs:219 +msgid "Email already blocked" +msgstr "" + +# src/routes/instance.rs:224 +msgid "Email Blocked" +msgstr "" + +# src/routes/instance.rs:317 +msgid "You can't change your own rights." +msgstr "" + +# src/routes/instance.rs:328 +msgid "You are not allowed to take this action." +msgstr "" + +# src/routes/instance.rs:363 +msgid "Done." +msgstr "" + +# src/routes/likes.rs:58 +msgid "To like a post, you need to be logged in" +msgstr "" + +# src/routes/medias.rs:158 +msgid "Your media have been deleted." +msgstr "" + +# src/routes/medias.rs:163 +msgid "You are not allowed to delete this media." +msgstr "" + +# src/routes/medias.rs:180 +msgid "Your avatar has been updated." +msgstr "" + +# src/routes/medias.rs:185 +msgid "You are not allowed to use this media." +msgstr "" + +# src/routes/notifications.rs:29 +msgid "To see your notifications, you need to be logged in" +msgstr "" + +# src/routes/posts.rs:55 +msgid "This post isn't published yet." +msgstr "" + +# src/routes/posts.rs:125 +msgid "To write a new post, you need to be logged in" +msgstr "" + +# src/routes/posts.rs:146 +msgid "You are not an author of this blog." +msgstr "" + +# src/routes/posts.rs:153 +msgid "New post" +msgstr "" + +# src/routes/posts.rs:198 +msgid "Edit {0}" +msgstr "" + +# src/routes/posts.rs:267 +msgid "You are not allowed to publish on this blog." +msgstr "" + +# src/routes/posts.rs:367 +msgid "Your article has been updated." +msgstr "" + +# src/routes/posts.rs:556 +msgid "Your article has been saved." +msgstr "" + +# src/routes/posts.rs:563 +msgid "New article" +msgstr "" + +# src/routes/posts.rs:601 +msgid "You are not allowed to delete this article." +msgstr "" + +# src/routes/posts.rs:625 +msgid "Your article has been deleted." +msgstr "" + +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "" + +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "" + +# src/routes/reshares.rs:58 +msgid "To reshare a post, you need to be logged in" +msgstr "" + +# src/routes/session.rs:95 +msgid "You are now connected." +msgstr "" + +# src/routes/session.rs:116 +msgid "You are now logged off." +msgstr "" + +# src/routes/session.rs:162 +msgid "Password reset" +msgstr "" + +# src/routes/session.rs:163 +msgid "Here is the link to reset your password: {0}" +msgstr "" + +# src/routes/session.rs:235 +msgid "Your password was successfully reset." +msgstr "" + +# src/routes/user.rs:74 +msgid "To access your dashboard, you need to be logged in" +msgstr "" + +# src/routes/user.rs:96 +msgid "You are no longer following {}." +msgstr "" + +# src/routes/user.rs:113 +msgid "You are now following {}." +msgstr "" + +# src/routes/user.rs:190 +msgid "To subscribe to someone, you need to be logged in" +msgstr "" + +# src/routes/user.rs:299 +msgid "To edit your profile, you need to be logged in" +msgstr "" + +# src/routes/user.rs:345 +msgid "Your profile has been updated." +msgstr "" + +# src/routes/user.rs:373 +msgid "Your account has been deleted." +msgstr "" + +# src/routes/user.rs:379 +msgid "You can't delete someone else's account." +msgstr "" + +# src/routes/user.rs:463 +msgid "Registrations are closed on this instance." +msgstr "" + +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "" + +msgid "Media upload" +msgstr "" + +msgid "Description" +msgstr "" + +msgid "Useful for visually impaired people, as well as licensing information" +msgstr "" + +msgid "Content warning" +msgstr "" + +msgid "Leave it empty, if none is needed" +msgstr "" + +msgid "File" +msgstr "" + +msgid "Send" +msgstr "" + +msgid "Your media" +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 "Plume" +msgstr "" + +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 "Privacy policy" +msgstr "" + +msgid "Administration" +msgstr "" + +msgid "Documentation" +msgstr "" + +msgid "Source code" +msgstr "" + +msgid "Matrix room" +msgstr "" + +msgid "Admin" +msgstr "" + +msgid "It is you" +msgstr "" + +msgid "Edit your profile" +msgstr "" + +msgid "Open on {0}" +msgstr "" + +msgid "Unsubscribe" +msgstr "" + +msgid "Subscribe" +msgstr "" + +msgid "Follow {}" +msgstr "" + +msgid "Log in to follow" +msgstr "" + +msgid "Enter your full username handle to follow" +msgstr "" + +msgid "{0}'s subscribers" +msgstr "" + +msgid "Articles" +msgstr "" + +msgid "Subscribers" +msgstr "" + +msgid "Subscriptions" +msgstr "" + +msgid "Create your account" +msgstr "" + +msgid "Create an account" +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Email" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Password confirmation" +msgstr "" + +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "" + +msgid "{0}'s 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 "" + +msgid "Edit your account" +msgstr "" + +msgid "Your Profile" +msgstr "" + +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "" + +msgid "Upload an avatar" +msgstr "" + +msgid "Display name" +msgstr "" + +msgid "Summary" +msgstr "" + +msgid "Theme" +msgstr "" + +msgid "Default theme" +msgstr "" + +msgid "Error while loading theme selector." +msgstr "" + +msgid "Never load blogs custom themes" +msgstr "" + +msgid "Update account" +msgstr "" + +msgid "Danger zone" +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." +msgstr "" + +msgid "Latest articles" +msgstr "" + +msgid "Atom feed" +msgstr "" + +msgid "Recently boosted" +msgstr "" + +msgid "Articles tagged \"{0}\"" +msgstr "" + +msgid "There are currently no articles with such a tag" +msgstr "" + +msgid "The content you sent can't be processed." +msgstr "" + +msgid "Maybe it was too long." +msgstr "" + +msgid "Internal server error" +msgstr "" + +msgid "Something broke on our side." +msgstr "" + +msgid "Sorry about that. If you think this is a bug, please report it." +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 "You are not authorized." +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 "Users" +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "Instances" +msgstr "" + +msgid "Email blocklist" +msgstr "" + +msgid "Grant admin rights" +msgstr "" + +msgid "Revoke admin rights" +msgstr "" + +msgid "Grant moderator rights" +msgstr "" + +msgid "Revoke moderator rights" +msgstr "" + +msgid "Ban" +msgstr "" + +msgid "Run on selected users" +msgstr "" + +msgid "Moderator" +msgstr "" + +msgid "Moderation" +msgstr "" + +msgid "Home" +msgstr "" + +msgid "Administration of {0}" +msgstr "" + +msgid "Unblock" +msgstr "" + +msgid "Block" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Allow anyone to register here" +msgstr "" + +msgid "Short description" +msgstr "" + +msgid "Markdown syntax is supported" +msgstr "" + +msgid "Long description" +msgstr "" + +msgid "Default article license" +msgstr "" + +msgid "Save these settings" +msgstr "" + +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "" + +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." +msgstr "" + +msgid "Blocklisted Emails" +msgstr "" + +msgid "Email address" +msgstr "" + +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "" + +msgid "Note" +msgstr "" + +msgid "Notify the user?" +msgstr "" + +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "" + +msgid "Blocklisting notification" +msgstr "" + +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "" + +msgid "Add blocklisted address" +msgstr "" + +msgid "There are no blocked emails on your instance" +msgstr "" + +msgid "Delete selected emails" +msgstr "" + +msgid "Email address:" +msgstr "" + +msgid "Blocklisted for:" +msgstr "" + +msgid "Will notify them on account creation with this message:" +msgstr "" + +msgid "The user will be silently prevented from making an account" +msgstr "" + +msgid "Welcome to {}" +msgstr "" + +msgid "View all" +msgstr "" + +msgid "About {0}" +msgstr "" + +msgid "Runs Plume {0}" +msgstr "" + +msgid "Home to {0} people" +msgstr "" + +msgid "Who wrote {0} articles" +msgstr "" + +msgid "And are connected to {0} other instances" +msgstr "" + +msgid "Administred by" +msgstr "" + +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 "" + +msgid "Title" +msgstr "" + +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 "" + +msgid "Tags, separated by commas" +msgstr "" + +msgid "License" +msgstr "" + +msgid "Illustration" +msgstr "" + +msgid "This is a draft, don't publish it yet." +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Update, or publish" +msgstr "" + +msgid "Publish your post" +msgstr "" + +msgid "Written by {0}" +msgstr "" + +msgid "All rights reserved." +msgstr "" + +msgid "This article is under the {0} license." +msgstr "" + +msgid "One like" +msgid_plural "{0} likes" +msgstr[0] "" +msgstr[1] "" + +msgid "I don't like this anymore" +msgstr "" + +msgid "Add yours" +msgstr "" + +msgid "One boost" +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 "" + +msgid "Your comment" +msgstr "" + +msgid "Submit comment" +msgstr "" + +msgid "No comments yet. Be the first to react!" +msgstr "" + +msgid "Are you sure?" +msgstr "" + +msgid "This article is still a draft. Only you and other authors can see it." +msgstr "" + +msgid "Only you and other authors can edit this article." +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "I'm from this instance" +msgstr "" + +msgid "Username, or email" +msgstr "" + +msgid "Log in" +msgstr "" + +msgid "I'm from another instance" +msgstr "" + +msgid "Continue to your instance" +msgstr "" + +msgid "Reset your password" +msgstr "" + +msgid "New password" +msgstr "" + +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 "" + +msgid "Send password reset link" +msgstr "" + +msgid "This token has expired" +msgstr "" + +msgid "Please start the process again by clicking here." +msgstr "" + +msgid "New Blog" +msgstr "" + +msgid "Create a blog" +msgstr "" + +msgid "Create blog" +msgstr "" + +msgid "Edit \"{}\"" +msgstr "" + +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "" + +msgid "Upload images" +msgstr "" + +msgid "Blog icon" +msgstr "" + +msgid "Blog banner" +msgstr "" + +msgid "Custom theme" +msgstr "" + +msgid "Update blog" +msgstr "" + +msgid "Be very careful, any action taken here can't be reversed." +msgstr "" + +msgid "Are you sure that you want to permanently delete this blog?" +msgstr "" + +msgid "Permanently delete this blog" +msgstr "" + +msgid "{}'s icon" +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 "Nothing to see here yet." +msgstr "" + +msgid "None" +msgstr "" + +msgid "No description" +msgstr "" + +msgid "Respond" +msgstr "" + +msgid "Delete this comment" +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." +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 "By {0}" +msgstr "" + +msgid "Draft" +msgstr "" + +msgid "Search result(s) for \"{0}\"" +msgstr "" + +msgid "Search result(s)" +msgstr "" + +msgid "No results for your query" +msgstr "" + +msgid "No more results for your query" +msgstr "" + +msgid "Advanced search" +msgstr "" + +msgid "Article title matching these words" +msgstr "" + +msgid "Subtitle matching these words" +msgstr "" + +msgid "Content macthing these words" +msgstr "" + +msgid "Body content" +msgstr "" + +msgid "From this date" +msgstr "" + +msgid "To this date" +msgstr "" + +msgid "Containing these tags" +msgstr "" + +msgid "Tags" +msgstr "" + +msgid "Posted on one of these instances" +msgstr "" + +msgid "Instance domain" +msgstr "" + +msgid "Posted by one of these authors" +msgstr "" + +msgid "Author(s)" +msgstr "" + +msgid "Posted on one of these blogs" +msgstr "" + +msgid "Blog title" +msgstr "" + +msgid "Written in this language" +msgstr "" + +msgid "Language" +msgstr "" + +msgid "Published under this license" +msgstr "" + +msgid "Article license" +msgstr "" + diff --git a/po/plume/vi.po b/po/plume/vi.po index 0b73d9ff..89714890 100644 --- a/po/plume/vi.po +++ b/po/plume/vi.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:56\n" +"PO-Revision-Date: 2021-05-05 18:31\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -65,59 +65,59 @@ msgstr "" msgid "Optional" msgstr "" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" msgstr "" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." msgstr "" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" msgstr "" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." msgstr "" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." msgstr "" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." msgstr "" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." msgstr "" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." msgstr "" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." msgstr "" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." msgstr "" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." msgstr "" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." msgstr "" -# src/routes/instance.rs:152 +# src/routes/instance.rs:150 msgid "{} has been unblocked." msgstr "" -# src/routes/instance.rs:154 +# src/routes/instance.rs:152 msgid "{} has been blocked." msgstr "" @@ -125,51 +125,51 @@ msgstr "" msgid "Blocks deleted" msgstr "" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" msgstr "" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" msgstr "" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." msgstr "" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." msgstr "" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" msgstr "" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." msgstr "" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." msgstr "" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." msgstr "" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." msgstr "" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" msgstr "" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." msgstr "" @@ -177,118 +177,112 @@ msgstr "" msgid "To write a new post, you need to be logged in" msgstr "" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." msgstr "" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" msgstr "" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." msgstr "" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." msgstr "" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." msgstr "" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" msgstr "" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." msgstr "" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." msgstr "" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" msgstr "" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." msgstr "" msgid "Media upload" @@ -447,9 +441,7 @@ msgstr "" msgid "Password confirmation" msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." msgstr "" msgid "{0}'s subscriptions" @@ -479,8 +471,7 @@ msgstr "" msgid "Your Profile" msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." +msgid "To change your avatar, upload it to your gallery and then select from there." msgstr "" msgid "Upload an avatar" @@ -552,10 +543,7 @@ 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." +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 "You are not authorized." @@ -639,21 +627,13 @@ msgstr "" msgid "Save these settings" msgstr "" -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." +msgid "If you are browsing this site as a visitor, no data about you is collected." msgstr "" -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." msgstr "" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" msgid "Blocklisted Emails" @@ -662,10 +642,7 @@ msgstr "" msgid "Email address" msgstr "" -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" msgstr "" msgid "Note" @@ -674,17 +651,13 @@ msgstr "" msgid "Notify the user?" msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" msgstr "" msgid "Blocklisting notification" msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" +msgid "The message to be shown when the user attempts to create an account with this email address" msgstr "" msgid "Add blocklisted address" @@ -756,9 +729,7 @@ msgstr "" msgid "Content" msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." +msgid "You can upload media to your gallery, and then copy their Markdown code into your articles to insert them." msgstr "" msgid "Upload media" @@ -814,9 +785,7 @@ msgstr "" msgid "Boost" msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" msgstr "" msgid "Comments" @@ -873,9 +842,7 @@ msgstr "" msgid "Check your inbox!" msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." +msgid "We sent a mail to the address you gave us, with a link to reset your password." msgstr "" msgid "Send password reset link" @@ -884,9 +851,7 @@ msgstr "" msgid "This token has expired" msgstr "" -msgid "" -"Please start the process again by clicking here." +msgid "Please start the process again by clicking here." msgstr "" msgid "New Blog" @@ -901,8 +866,7 @@ msgstr "" msgid "Edit \"{}\"" msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." +msgid "You can upload images to your gallery, to use them as blog icons, or banners." msgstr "" msgid "Upload images" @@ -963,9 +927,7 @@ msgstr "" 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." +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" @@ -1045,3 +1007,4 @@ msgstr "" msgid "Article license" msgstr "" + diff --git a/po/plume/zh.po b/po/plume/zh.po index a54eca2a..0ee11903 100644 --- a/po/plume/zh.po +++ b/po/plume/zh.po @@ -3,27 +3,27 @@ msgstr "" "Project-Id-Version: plume\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-06-15 16:33-0700\n" -"PO-Revision-Date: 2020-12-19 09:55\n" +"PO-Revision-Date: 2021-12-11 15:00\n" "Last-Translator: \n" -"Language-Team: Chinese Simplified\n" -"Language: zh_CN\n" +"Language-Team: Chinese Traditional\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Crowdin-Project: plume\n" "X-Crowdin-Project-ID: 352097\n" -"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-Language: zh-TW\n" "X-Crowdin-File: /master/po/plume/plume.pot\n" "X-Crowdin-File-ID: 8\n" # src/template_utils.rs:105 msgid "{0} commented on your article." -msgstr "{0} 评论了您的文章。" +msgstr "{0} 評論了您的文章。" # src/template_utils.rs:106 msgid "{0} is subscribed to you." -msgstr "{0} 订阅了您。" +msgstr "{0} 訂閱了您。" # src/template_utils.rs:107 msgid "{0} liked your article." @@ -35,11 +35,11 @@ msgstr "{0} 提到了您。" # src/template_utils.rs:109 msgid "{0} boosted your article." -msgstr "{0} 推荐了您的文章。" +msgstr "{0} 推薦了您的文章。" # src/template_utils.rs:116 msgid "Your feed" -msgstr "您的订阅" +msgstr "您的推流" # src/template_utils.rs:117 msgid "Local feed" @@ -51,1007 +51,960 @@ msgstr "跨站推流" # src/template_utils.rs:154 msgid "{0}'s avatar" -msgstr "{0} 的头像" +msgstr "{0} 的頭像" # src/template_utils.rs:198 msgid "Previous page" -msgstr "上一页" +msgstr "上一頁" # src/template_utils.rs:209 msgid "Next page" -msgstr "下一页" +msgstr "下一頁" # src/template_utils.rs:363 msgid "Optional" -msgstr "可选" +msgstr "可選" -# src/routes/blogs.rs:63 +# src/routes/blogs.rs:67 msgid "To create a new blog, you need to be logged in" -msgstr "您需要登录才能创建新的博客" +msgstr "您需要登入才能創建新的部落格" -# src/routes/blogs.rs:102 +# src/routes/blogs.rs:109 msgid "A blog with the same name already exists." -msgstr "已存在同名博客。" +msgstr "已存在同名的部落格。" -# src/routes/blogs.rs:140 +# src/routes/blogs.rs:147 msgid "Your blog was successfully created!" -msgstr "您的博客已成功创建!" +msgstr "您的部落格已成功創建!" -# src/routes/blogs.rs:160 +# src/routes/blogs.rs:165 msgid "Your blog was deleted." -msgstr "您的博客已删除。" +msgstr "您的部落格已經刪除。" -# src/routes/blogs.rs:168 +# src/routes/blogs.rs:173 msgid "You are not allowed to delete this blog." -msgstr "您不能删除此博客。" +msgstr "您不能刪除此部落格。" -# src/routes/blogs.rs:219 +# src/routes/blogs.rs:223 msgid "You are not allowed to edit this blog." -msgstr "你不能编辑此博客。" +msgstr "您不能編輯此部落格。" -# src/routes/blogs.rs:275 +# src/routes/blogs.rs:279 msgid "You can't use this media as a blog icon." -msgstr "你不能将此媒体用作博客图标。" +msgstr "您不能將此媒體用作部落格圖標。" -# src/routes/blogs.rs:293 +# src/routes/blogs.rs:297 msgid "You can't use this media as a blog banner." -msgstr "你不能使用此媒体用作博客横幅。" +msgstr "您不能將此媒體用作部落格橫幅。" -# src/routes/blogs.rs:327 +# src/routes/blogs.rs:331 msgid "Your blog information have been updated." -msgstr "你的博客信息已经更新。" +msgstr "您的部落格資訊已經更新。" -# src/routes/comments.rs:97 +# src/routes/comments.rs:100 msgid "Your comment has been posted." -msgstr "你的评论已经发表。" +msgstr "您的評論已經發表。" -# src/routes/comments.rs:172 +# src/routes/comments.rs:177 msgid "Your comment has been deleted." -msgstr "你的评论已经删除。" +msgstr "您的評論已經刪除。" -# src/routes/instance.rs:120 +# src/routes/instance.rs:117 msgid "Instance settings have been saved." -msgstr "示例设置已保存。" +msgstr "實例設定已儲存。" + +# src/routes/instance.rs:150 +msgid "{} has been unblocked." +msgstr "已解除封鎖 {}。" # src/routes/instance.rs:152 -msgid "{} has been unblocked." -msgstr "{} 已解除拦截。" - -# src/routes/instance.rs:154 msgid "{} has been blocked." -msgstr "{} 已被阻止。" +msgstr "已封鎖 {}。" # src/routes/instance.rs:203 msgid "Blocks deleted" -msgstr "已删除块。" +msgstr "已刪除封鎖的地址。" -# src/routes/instance.rs:218 +# src/routes/instance.rs:219 msgid "Email already blocked" -msgstr "" +msgstr "Email 地址已被屏蔽" -# src/routes/instance.rs:223 +# src/routes/instance.rs:224 msgid "Email Blocked" -msgstr "电子邮件已被阻止。" +msgstr "Email 地址被屏蔽了" -# src/routes/instance.rs:314 +# src/routes/instance.rs:317 msgid "You can't change your own rights." -msgstr "你不能更改你自己的权利。" +msgstr "您不能改變自己的權限。" -# src/routes/instance.rs:325 +# src/routes/instance.rs:328 msgid "You are not allowed to take this action." -msgstr "你不能执行此操作。" +msgstr "您不能執行此操作。" -# src/routes/instance.rs:362 +# src/routes/instance.rs:363 msgid "Done." msgstr "完成。" -# src/routes/likes.rs:53 +# src/routes/likes.rs:58 msgid "To like a post, you need to be logged in" -msgstr "你需要登录后才能标记喜欢一篇文。" +msgstr "您需要登入才能標記喜歡一篇文。" -# src/routes/medias.rs:145 +# src/routes/medias.rs:158 msgid "Your media have been deleted." -msgstr "你的媒体已删除。" +msgstr "您的媒體已刪除。" -# src/routes/medias.rs:150 +# src/routes/medias.rs:163 msgid "You are not allowed to delete this media." -msgstr "你不能删除此媒体。" +msgstr "您不能刪除此媒體。" -# src/routes/medias.rs:167 +# src/routes/medias.rs:180 msgid "Your avatar has been updated." -msgstr "你的头像已更新。" +msgstr "您的頭像已更新。" -# src/routes/medias.rs:172 +# src/routes/medias.rs:185 msgid "You are not allowed to use this media." -msgstr "你不能使用此媒体。" +msgstr "您不能使用此媒體。" -# src/routes/notifications.rs:28 +# src/routes/notifications.rs:29 msgid "To see your notifications, you need to be logged in" -msgstr "你需要登录才能看到你的通知" +msgstr "您需要登入才能看到您的通知" -# src/routes/posts.rs:54 +# src/routes/posts.rs:55 msgid "This post isn't published yet." -msgstr "此文尚未发布。" +msgstr "此文尚未發布。" # src/routes/posts.rs:125 msgid "To write a new post, you need to be logged in" -msgstr "你需要登录后才能写新文章。" +msgstr "您需要登入後才能寫新文章。" -# src/routes/posts.rs:142 +# src/routes/posts.rs:146 msgid "You are not an author of this blog." -msgstr "你不是这个博客的作者。" +msgstr "您不是這個部落格的作者。" -# src/routes/posts.rs:149 +# src/routes/posts.rs:153 msgid "New post" msgstr "新文章" -# src/routes/posts.rs:194 +# src/routes/posts.rs:198 msgid "Edit {0}" -msgstr "编辑 {0}" +msgstr "編輯 {0}" -# src/routes/posts.rs:263 +# src/routes/posts.rs:267 msgid "You are not allowed to publish on this blog." -msgstr "你不能在此博客上发布。" +msgstr "您不能在此部落格上發布。" -# src/routes/posts.rs:355 +# src/routes/posts.rs:367 msgid "Your article has been updated." -msgstr "你的文章已更新。" +msgstr "已更新您的文章。" -# src/routes/posts.rs:542 +# src/routes/posts.rs:556 msgid "Your article has been saved." -msgstr "你的文章已保存。" +msgstr "已儲存您的文章。" -# src/routes/posts.rs:549 +# src/routes/posts.rs:563 msgid "New article" -msgstr "新建文章" +msgstr "新增文章" -# src/routes/posts.rs:582 +# src/routes/posts.rs:601 msgid "You are not allowed to delete this article." -msgstr "你不能删除此文章。" +msgstr "您不能刪除此文章。" -# src/routes/posts.rs:607 +# src/routes/posts.rs:625 msgid "Your article has been deleted." -msgstr "你的文章已删除。" +msgstr "已刪除您的文章。" -# src/routes/posts.rs:612 -msgid "" -"It looks like the article you tried to delete doesn't exist. Maybe it is " -"already gone?" -msgstr "你试图删除的文章不存在,可能早已删除。" +# src/routes/posts.rs:630 +msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?" +msgstr "您試圖刪除的文章不存在。可能早已被刪除?" -# src/routes/posts.rs:652 -msgid "" -"Couldn't obtain enough information about your account. Please make sure your " -"username is correct." -msgstr "无法获得有关你帐户的足够信息。请确保你的用户名正确。" +# src/routes/posts.rs:672 +msgid "Couldn't obtain enough information about your account. Please make sure your username is correct." +msgstr "" -# src/routes/reshares.rs:54 +# src/routes/reshares.rs:58 msgid "To reshare a post, you need to be logged in" -msgstr "你需要登录后才能重新分享文章。" +msgstr "" -# src/routes/session.rs:87 +# src/routes/session.rs:95 msgid "You are now connected." -msgstr "你现在已连接。" +msgstr "" -# src/routes/session.rs:108 +# src/routes/session.rs:116 msgid "You are now logged off." -msgstr "你已经退出。" +msgstr "" -# src/routes/session.rs:153 +# src/routes/session.rs:162 msgid "Password reset" -msgstr "重置密码" +msgstr "" -# src/routes/session.rs:154 +# src/routes/session.rs:163 msgid "Here is the link to reset your password: {0}" -msgstr "这是重置密码的链接:{0}" +msgstr "" -# src/routes/session.rs:216 +# src/routes/session.rs:235 msgid "Your password was successfully reset." -msgstr "你已经成功重置密码。" +msgstr "" -# src/routes/user.rs:141 +# src/routes/user.rs:74 msgid "To access your dashboard, you need to be logged in" -msgstr "你需要登录才能访问你的控制面板。" +msgstr "" -# src/routes/user.rs:163 +# src/routes/user.rs:96 msgid "You are no longer following {}." -msgstr "你不再关注 {}。" +msgstr "" -# src/routes/user.rs:180 +# src/routes/user.rs:113 msgid "You are now following {}." -msgstr "你正在关注 {}。" +msgstr "" -# src/routes/user.rs:260 +# src/routes/user.rs:190 msgid "To subscribe to someone, you need to be logged in" -msgstr "你需要登录后才能订阅某人。" +msgstr "" -# src/routes/user.rs:364 +# src/routes/user.rs:299 msgid "To edit your profile, you need to be logged in" -msgstr "你需要登录后才能编辑你的个人资料。" +msgstr "" -# src/routes/user.rs:409 +# src/routes/user.rs:345 msgid "Your profile has been updated." -msgstr "你的资料已经更新。" +msgstr "" -# src/routes/user.rs:436 +# src/routes/user.rs:373 msgid "Your account has been deleted." -msgstr "你的帐号已经删除。" +msgstr "" -# src/routes/user.rs:442 +# src/routes/user.rs:379 msgid "You can't delete someone else's account." -msgstr "你不能删除其他人的帐号。" +msgstr "" -# src/routes/user.rs:526 +# src/routes/user.rs:463 msgid "Registrations are closed on this instance." -msgstr "此示例上的注册已经关闭。" +msgstr "" -# src/routes/user.rs:549 -msgid "" -"Your account has been created. Now you just need to log in, before you can " -"use it." -msgstr "已创建你的帐号。只需登录即可享用。" +# src/routes/user.rs:486 +msgid "Your account has been created. Now you just need to log in, before you can use it." +msgstr "" msgid "Media upload" -msgstr "上传媒体" +msgstr "" msgid "Description" -msgstr "描述" +msgstr "" msgid "Useful for visually impaired people, as well as licensing information" -msgstr "填写介绍对视力受损者有益,也建议填写许可协议信息。" +msgstr "" msgid "Content warning" -msgstr "主要内容" +msgstr "" msgid "Leave it empty, if none is needed" -msgstr "如果不需要则留空" +msgstr "" msgid "File" -msgstr "文件" +msgstr "" msgid "Send" -msgstr "发送​​" +msgstr "" msgid "Your media" -msgstr "你的媒体" +msgstr "" msgid "Upload" -msgstr "上传" +msgstr "" msgid "You don't have any media yet." -msgstr "您还没有任何媒体。" +msgstr "" msgid "Content warning: {0}" -msgstr "内容警告: {0}" +msgstr "" msgid "Delete" -msgstr "删除" +msgstr "" msgid "Details" -msgstr "详细" +msgstr "" msgid "Media details" -msgstr "媒体详情" +msgstr "" msgid "Go back to the gallery" -msgstr "返回媒体库" +msgstr "" msgid "Markdown syntax" -msgstr "Markdown 语法" +msgstr "" msgid "Copy it into your articles, to insert this media:" -msgstr "将此行复制到您的文章中:" +msgstr "" msgid "Use as an avatar" -msgstr "设置为头像" +msgstr "" msgid "Plume" msgstr "" msgid "Menu" -msgstr "菜单" +msgstr "" msgid "Search" -msgstr "搜索" +msgstr "" msgid "Dashboard" -msgstr "仪表板" +msgstr "" msgid "Notifications" -msgstr "通知" +msgstr "" msgid "Log Out" -msgstr "登出" +msgstr "" msgid "My account" -msgstr "我的帐户" +msgstr "" msgid "Log In" -msgstr "登录" +msgstr "" msgid "Register" -msgstr "注册" +msgstr "" msgid "About this instance" -msgstr "关于此实例" +msgstr "" msgid "Privacy policy" -msgstr "隐私政策" +msgstr "" msgid "Administration" -msgstr "管理" +msgstr "" msgid "Documentation" -msgstr "文档" +msgstr "" msgid "Source code" -msgstr "源代码" +msgstr "" msgid "Matrix room" -msgstr "聊天室" +msgstr "" msgid "Admin" -msgstr "管理员" +msgstr "" msgid "It is you" -msgstr "那就是你" +msgstr "" msgid "Edit your profile" -msgstr "编辑你的资料" +msgstr "" msgid "Open on {0}" -msgstr "在 {0} 中打开" +msgstr "" msgid "Unsubscribe" -msgstr "取消订阅" +msgstr "" msgid "Subscribe" -msgstr "订阅" +msgstr "" msgid "Follow {}" -msgstr "关注 {}" +msgstr "" msgid "Log in to follow" -msgstr "登录以关注" +msgstr "" msgid "Enter your full username handle to follow" -msgstr "输入您的“用户名@实例名”以关注" +msgstr "" msgid "{0}'s subscribers" -msgstr "{0} 名订阅者" +msgstr "" msgid "Articles" -msgstr "文章" +msgstr "" msgid "Subscribers" -msgstr "订阅者" +msgstr "" msgid "Subscriptions" -msgstr "订阅" +msgstr "" msgid "Create your account" -msgstr "创建你的帐号" +msgstr "" msgid "Create an account" -msgstr "创建帐号" +msgstr "" msgid "Username" -msgstr "用户名" +msgstr "" msgid "Email" -msgstr "邮箱" +msgstr "" msgid "Password" -msgstr "密码" +msgstr "" msgid "Password confirmation" -msgstr "确认密码" +msgstr "" -msgid "" -"Apologies, but registrations are closed on this particular instance. You " -"can, however, find a different one." -msgstr "抱歉,此实例上的注册已经关闭。你可以寻找其他的实例。" +msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one." +msgstr "" msgid "{0}'s subscriptions" -msgstr "{0} 的订阅" +msgstr "" msgid "Your Dashboard" -msgstr "你的仪表板" +msgstr "" msgid "Your Blogs" -msgstr "你的博客" +msgstr "" msgid "You don't have any blog yet. Create your own, or ask to join one." -msgstr "你没有任何博客。创建或加入一个。" +msgstr "" msgid "Start a new blog" -msgstr "创建新博客" +msgstr "" msgid "Your Drafts" -msgstr "你的草稿" +msgstr "" msgid "Go to your gallery" -msgstr "前往你的相册" +msgstr "" msgid "Edit your account" -msgstr "编辑你的帐号" +msgstr "" msgid "Your Profile" -msgstr "你的资料" +msgstr "" -msgid "" -"To change your avatar, upload it to your gallery and then select from there." -msgstr "要更改你的头像,需先上传到你的相册然后从中选择。" +msgid "To change your avatar, upload it to your gallery and then select from there." +msgstr "" msgid "Upload an avatar" -msgstr "上传头像" +msgstr "" msgid "Display name" -msgstr "显示名称" +msgstr "" msgid "Summary" -msgstr "摘要" +msgstr "" msgid "Theme" -msgstr "主题" +msgstr "" msgid "Default theme" -msgstr "默认主题" +msgstr "" msgid "Error while loading theme selector." -msgstr "加载主题选择器时出错。" +msgstr "" msgid "Never load blogs custom themes" -msgstr "从不加载博客自定义主题" +msgstr "" msgid "Update account" -msgstr "更新帐号" +msgstr "" msgid "Danger zone" -msgstr "危险区域" +msgstr "" msgid "Be very careful, any action taken here can't be cancelled." -msgstr "务必小心,在这里采取的任何行动都不能取消。" +msgstr "" msgid "Delete your account" -msgstr "删除你的帐号" +msgstr "" msgid "Sorry, but as an admin, you can't leave your own instance." -msgstr "抱歉,身为管理员,你不能离开自己的实例。" +msgstr "" msgid "Latest articles" -msgstr "最新文章" +msgstr "" msgid "Atom feed" -msgstr "Atom 源" +msgstr "" msgid "Recently boosted" -msgstr "最近转发的" +msgstr "" msgid "Articles tagged \"{0}\"" -msgstr "使用标签“{0}”的文章" +msgstr "" msgid "There are currently no articles with such a tag" -msgstr "目前没有带此标签的文章" +msgstr "" msgid "The content you sent can't be processed." -msgstr "无法处理您发送的内容。" +msgstr "" msgid "Maybe it was too long." -msgstr "也许是字数太多了。" +msgstr "" msgid "Internal server error" -msgstr "内部服务器错误" +msgstr "" msgid "Something broke on our side." -msgstr "我们这边出现了一些问题。" +msgstr "" msgid "Sorry about that. If you think this is a bug, please report it." -msgstr "很抱歉,如果您认为这是一个漏洞,请报告它。" +msgstr "" msgid "Invalid CSRF token" -msgstr "无效的CSRF验证令牌" - -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 "" -"您的 CSRF 令牌出了错。请确保您的浏览器启用 cookie 并尝试重新加载此页面。 如果" -"您继续看到此错误消息,请报告。" + +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 "You are not authorized." -msgstr "您未被授权" +msgstr "" msgid "Page not found" -msgstr "无法找到页面" +msgstr "" msgid "We couldn't find this page." -msgstr "哎呀!我们找不到该页面。" +msgstr "" msgid "The link that led you here may be broken." -msgstr "无效链接。" +msgstr "" msgid "Users" -msgstr "用户" +msgstr "" msgid "Configuration" -msgstr "配置" +msgstr "" msgid "Instances" -msgstr "实例" +msgstr "" msgid "Email blocklist" -msgstr "邮件拦截列表" +msgstr "" msgid "Grant admin rights" -msgstr "授予管理权限" +msgstr "" msgid "Revoke admin rights" -msgstr "撤销管理员权限" +msgstr "" msgid "Grant moderator rights" -msgstr "授予监察员权限" +msgstr "" msgid "Revoke moderator rights" -msgstr "撤销监察员权限" +msgstr "" msgid "Ban" -msgstr "封禁" +msgstr "" msgid "Run on selected users" -msgstr "在所选用户上运行" +msgstr "" msgid "Moderator" -msgstr "监察员" +msgstr "" msgid "Moderation" msgstr "" msgid "Home" -msgstr "主页" +msgstr "" msgid "Administration of {0}" -msgstr "正在管理{0}" +msgstr "" msgid "Unblock" -msgstr "解除封禁" +msgstr "" msgid "Block" -msgstr "封禁" +msgstr "" msgid "Name" -msgstr "昵称" +msgstr "" msgid "Allow anyone to register here" -msgstr "允许任何人在此注册" +msgstr "" msgid "Short description" -msgstr "简短说明" +msgstr "" msgid "Markdown syntax is supported" -msgstr "支持 Markdown 语法" +msgstr "" msgid "Long description" -msgstr "详细描述" +msgstr "" msgid "Default article license" -msgstr "默认文章许可协议" +msgstr "" msgid "Save these settings" -msgstr "保存这些设置" - -msgid "" -"If you are browsing this site as a visitor, no data about you is collected." -msgstr "如果您正在以访客身份浏览此站点,我们不会收集有关您的数据。" - -msgid "" -"As a registered user, you have to provide your username (which does not have " -"to be your real name), your functional email address and a password, in " -"order to be able to log in, write articles and comment. The content you " -"submit is stored until you delete it." msgstr "" -"作为注册用户,您必须提供您的用户名(不必是您的真实姓名)、可用的电邮地址和密" -"码,以便能够登录、写文章和评论。 您提交的内容可以由您完全删除。" -msgid "" -"When you log in, we store two cookies, one to keep your session open, the " -"second to prevent other people to act on your behalf. We don't store any " -"other cookies." +msgid "If you are browsing this site as a visitor, no data about you is collected." +msgstr "" + +msgid "As a registered user, you have to provide your username (which does not have to be your real name), your functional email address and a password, in order to be able to log in, write articles and comment. The content you submit is stored until you delete it." +msgstr "" + +msgid "When you log in, we store two cookies, one to keep your session open, the second to prevent other people to act on your behalf. We don't store any other cookies." msgstr "" -"当您登录时,我们会存储两个cookie,一个是为了保持你的登陆状态,第二个是为了防" -"止其他人代表您行事。 我们不存储任何其它的 cookie。" msgid "Blocklisted Emails" -msgstr "已封禁的邮箱" +msgstr "" msgid "Email address" -msgstr "邮箱地址" - -msgid "" -"The email address you wish to block. In order to block domains, you can use " -"globbing syntax, for example '*@example.com' blocks all addresses from " -"example.com" msgstr "" -"您想要屏蔽的电子邮件地址。您可以使用 globbing 语法(例如 '*@example.com' )屏" -"蔽所有后缀为example.com的电子邮箱。" + +msgid "The email address you wish to block. In order to block domains, you can use globbing syntax, for example '*@example.com' blocks all addresses from example.com" +msgstr "" msgid "Note" -msgstr "备注" +msgstr "" msgid "Notify the user?" -msgstr "通知用户?" +msgstr "" -msgid "" -"Optional, shows a message to the user when they attempt to create an account " -"with that address" -msgstr "可选,当用户尝试使用该邮箱地址创建帐户时,向他们显示此条消息" +msgid "Optional, shows a message to the user when they attempt to create an account with that address" +msgstr "" msgid "Blocklisting notification" -msgstr "屏蔽通知" +msgstr "" -msgid "" -"The message to be shown when the user attempts to create an account with " -"this email address" -msgstr "当用户尝试使用此电子邮件地址创建帐户时显示的消息" +msgid "The message to be shown when the user attempts to create an account with this email address" +msgstr "" msgid "Add blocklisted address" -msgstr "添加黑名单地址" +msgstr "" msgid "There are no blocked emails on your instance" -msgstr "您的实例没有已屏蔽的邮件地址" +msgstr "" msgid "Delete selected emails" -msgstr "删除选中的电子邮件" +msgstr "" msgid "Email address:" -msgstr "邮箱地址:" +msgstr "" msgid "Blocklisted for:" -msgstr "封禁原因:" +msgstr "" msgid "Will notify them on account creation with this message:" -msgstr "在创建帐户时将使用以下消息通知他们:" +msgstr "" msgid "The user will be silently prevented from making an account" msgstr "" msgid "Welcome to {}" -msgstr "欢迎来到 {}" +msgstr "" msgid "View all" -msgstr "显示所有" +msgstr "" msgid "About {0}" -msgstr "关于 {0}" +msgstr "" msgid "Runs Plume {0}" -msgstr "Plume 版本:{0}" +msgstr "" msgid "Home to {0} people" -msgstr "这里共注册有{0}位用户" +msgstr "" msgid "Who wrote {0} articles" -msgstr "他们写下了{0}篇文章" +msgstr "" msgid "And are connected to {0} other instances" -msgstr "并和{0}个实例产生了联系" +msgstr "" msgid "Administred by" -msgstr "管理员:" +msgstr "" msgid "Interact with {}" -msgstr "与 {} 互动" +msgstr "" msgid "Log in to interact" -msgstr "登陆以互动" +msgstr "" msgid "Enter your full username to interact" -msgstr "请输入完整用户名进行互动" +msgstr "" msgid "Publish" -msgstr "发布" +msgstr "" msgid "Classic editor (any changes will be lost)" -msgstr "经典编辑器 (任何更改将丢失)" +msgstr "" msgid "Title" -msgstr "标题" +msgstr "" msgid "Subtitle" -msgstr "副标题" +msgstr "" msgid "Content" -msgstr "内容" +msgstr "" -msgid "" -"You can upload media to your gallery, and then copy their Markdown code into " -"your articles to insert them." -msgstr "你可以上传媒体到你的相册,然后复制它们的 Markdown 代码到文章中。" +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 "上传媒体" +msgstr "" msgid "Tags, separated by commas" -msgstr "标签,用英文逗号分隔" +msgstr "" msgid "License" -msgstr "许可协议" +msgstr "" msgid "Illustration" -msgstr "封面图" +msgstr "" msgid "This is a draft, don't publish it yet." -msgstr "这是一篇草稿,先不要发布。" +msgstr "" msgid "Update" -msgstr "更新" +msgstr "" msgid "Update, or publish" -msgstr "更新或发布" +msgstr "" msgid "Publish your post" -msgstr "发布文章" +msgstr "" msgid "Written by {0}" -msgstr "作者:{0}" +msgstr "" msgid "All rights reserved." -msgstr "保留所有权利。" +msgstr "" msgid "This article is under the {0} license." -msgstr "此作品采用 {0} 许可协议进行许可。" +msgstr "" msgid "One like" msgid_plural "{0} likes" -msgstr[0] "{0} 喜欢" +msgstr[0] "" msgid "I don't like this anymore" -msgstr "我不再喜欢这个" +msgstr "" msgid "Add yours" -msgstr "喜欢" +msgstr "" msgid "One boost" msgid_plural "{0} boosts" -msgstr[0] "{0} 助推" +msgstr[0] "" msgid "I don't want to boost this anymore" -msgstr "我不想再助推这个" +msgstr "" msgid "Boost" -msgstr "助推" +msgstr "" -msgid "" -"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this " -"article" -msgstr "{0}登录{1} 或 {2}使用你的 Fediverse 帐号{3} 与此文互动。" +msgid "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this article" +msgstr "" msgid "Comments" -msgstr "评论" +msgstr "" msgid "Your comment" -msgstr "你的评论" +msgstr "" msgid "Submit comment" -msgstr "提交评论" +msgstr "" msgid "No comments yet. Be the first to react!" -msgstr "还没有评论。" +msgstr "" msgid "Are you sure?" -msgstr "你确定?" +msgstr "" msgid "This article is still a draft. Only you and other authors can see it." -msgstr "此文还是草稿,只有你和其他作者可见。" +msgstr "" msgid "Only you and other authors can edit this article." -msgstr "只有你和其他作者可以编辑此文。" +msgstr "" msgid "Edit" -msgstr "编辑" +msgstr "" msgid "I'm from this instance" -msgstr "我来自此实例" +msgstr "" msgid "Username, or email" -msgstr "用户名或邮箱" +msgstr "" msgid "Log in" -msgstr "登录" +msgstr "" msgid "I'm from another instance" -msgstr "我来自其他实例" +msgstr "" msgid "Continue to your instance" -msgstr "到您的实例继续操作" +msgstr "" msgid "Reset your password" -msgstr "重置您的密码" +msgstr "" msgid "New password" -msgstr "新密码" +msgstr "" msgid "Confirmation" -msgstr "确认" +msgstr "" msgid "Update password" -msgstr "更新密码" +msgstr "" msgid "Check your inbox!" -msgstr "请检查你的收件箱。" +msgstr "" -msgid "" -"We sent a mail to the address you gave us, with a link to reset your " -"password." -msgstr "我们向您给我们的地址发送了一封邮件,这是重置您的密码的链接。" +msgid "We sent a mail to the address you gave us, with a link to reset your password." +msgstr "" msgid "Send password reset link" -msgstr "发送密码重置链接" +msgstr "" msgid "This token has expired" -msgstr "此令牌已过期" +msgstr "" -msgid "" -"Please start the process again by clicking here." -msgstr "请点这里重新申请密码重置链接。" +msgid "Please start the process again by clicking here." +msgstr "" msgid "New Blog" -msgstr "新建博客" +msgstr "" msgid "Create a blog" -msgstr "创建博客" +msgstr "" msgid "Create blog" -msgstr "创建博客" +msgstr "" msgid "Edit \"{}\"" -msgstr "编辑 \"{}\"" +msgstr "" -msgid "" -"You can upload images to your gallery, to use them as blog icons, or banners." -msgstr "您可以将图像上传到您的图片库,用作博客图标或横幅。" +msgid "You can upload images to your gallery, to use them as blog icons, or banners." +msgstr "" msgid "Upload images" -msgstr "上传图片" +msgstr "" msgid "Blog icon" -msgstr "博客图标" +msgstr "" msgid "Blog banner" -msgstr "博客横幅" +msgstr "" msgid "Custom theme" -msgstr "自定义主题" +msgstr "" msgid "Update blog" -msgstr "更新博客" +msgstr "" msgid "Be very careful, any action taken here can't be reversed." -msgstr "请小心,在这里进行的所有操作都无法撤销" +msgstr "" msgid "Are you sure that you want to permanently delete this blog?" -msgstr "你确定要永久删除这个博客吗" +msgstr "" msgid "Permanently delete this blog" -msgstr "永久删除这个博客" +msgstr "" msgid "{}'s icon" -msgstr "{} 的图标" +msgstr "" msgid "There's one author on this blog: " msgid_plural "There are {0} authors on this blog: " -msgstr[0] "这个博客上有 {0} 个作者: " +msgstr[0] "" msgid "No posts to see here yet." -msgstr "这里还没有文章" +msgstr "" msgid "Nothing to see here yet." -msgstr "空空如也" +msgstr "" msgid "None" -msgstr "无" +msgstr "" msgid "No description" -msgstr "无描述" +msgstr "" msgid "Respond" msgstr "" msgid "Delete this comment" -msgstr "删除此评论" +msgstr "" msgid "What is Plume?" -msgstr "什么是 Plume?" +msgstr "" msgid "Plume is a decentralized blogging engine." -msgstr "Plume是一个去中心化的博客引擎。" +msgstr "" 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 "" -"文章在其他Plume实例中同样可见,您也可以直接从其他平台(如Mastodon等)与之互" -"动。" + +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 "阅读详细规则" +msgstr "" msgid "By {0}" msgstr "" msgid "Draft" -msgstr "草稿" +msgstr "" msgid "Search result(s) for \"{0}\"" -msgstr "关键词“{0}”的搜索结果" +msgstr "" msgid "Search result(s)" -msgstr "搜索结果" +msgstr "" msgid "No results for your query" -msgstr "您的查询无匹配项" +msgstr "" msgid "No more results for your query" -msgstr "您的查询无更多匹配项" +msgstr "" msgid "Advanced search" -msgstr "高级搜索" +msgstr "" msgid "Article title matching these words" -msgstr "匹配这些词的文章标题" +msgstr "" msgid "Subtitle matching these words" -msgstr "匹配这些词的文章副标题" +msgstr "" msgid "Content macthing these words" -msgstr "匹配这些词的文章内容" +msgstr "" msgid "Body content" -msgstr "正文内容" +msgstr "" msgid "From this date" -msgstr "从" +msgstr "" msgid "To this date" -msgstr "到" +msgstr "" msgid "Containing these tags" -msgstr "包含这些标签" +msgstr "" msgid "Tags" -msgstr "标签" +msgstr "" msgid "Posted on one of these instances" -msgstr "发布在哪个实例中" +msgstr "" msgid "Instance domain" -msgstr "实例域名" +msgstr "" msgid "Posted by one of these authors" -msgstr "发布作者" +msgstr "" msgid "Author(s)" -msgstr "作者" +msgstr "" msgid "Posted on one of these blogs" -msgstr "发布在哪个博客中" +msgstr "" msgid "Blog title" -msgstr "博客标题" +msgstr "" msgid "Written in this language" -msgstr "所用语言" +msgstr "" msgid "Language" -msgstr "语言" +msgstr "" msgid "Published under this license" -msgstr "发布所用许可证" +msgstr "" msgid "Article license" -msgstr "文章许可证" +msgstr "" + diff --git a/release.toml b/release.toml index 8e03569a..492a12a8 100644 --- a/release.toml +++ b/release.toml @@ -13,7 +13,7 @@ pre-release-hook = ["crowdin", "pull", "--branch", "master"] pre-release-replacements = [ {file="CHANGELOG.md", search="Unreleased", replace="[{{version}}]"}, {file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1}, - {file="CHANGELOG.md", search="No release date", replace="{{date}}"}, + {file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}"}, {file="CHANGELOG.md", search="", replace="\n\n## [Unreleased] - ReleaseDate", exactly=1}, {file="CHANGELOG.md", search="", replace="\n[Unreleased]: https://github.com/Plume-org/Plume/compare/{{tag_name}}...HEAD", exactly=1}, ] diff --git a/script/prebuild-in-docker.sh b/script/prebuild-in-docker.sh index d4b8a6aa..64171e5c 100755 --- a/script/prebuild-in-docker.sh +++ b/script/prebuild-in-docker.sh @@ -3,4 +3,4 @@ set -euo pipefail version="$1" -docker run --rm -v $PWD:/repo -v $PWD/pkg:/pkg -v $PWD/script/prebuild.sh:/prebuild.sh plumeorg/plume-buildenv:v0.3.0 /prebuild.sh "$version" /repo /prebuild /pkg +docker run --rm -v $PWD:/repo -v $PWD/pkg:/pkg -v $PWD/script/prebuild.sh:/prebuild.sh plumeorg/plume-buildenv:v0.4.0 /prebuild.sh "$version" /repo /prebuild /pkg