Compare commits

..

2 Commits

Author SHA1 Message Date
Trinity Pointard 140a1f8eda cargo update 2019-12-19 09:36:40 +01:00
Trinity Pointard 07b70c084e upgrade compiler to nightly-2019-12-17 2019-12-19 09:17:05 +01:00
115 changed files with 12808 additions and 14407 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ executors:
type: boolean
default: false
docker:
- image: plumeorg/plume-buildenv:v0.0.8
- image: plumeorg/plume-buildenv:v0.0.7
- image: <<#parameters.postgres>>circleci/postgres:9.6-alpine<</parameters.postgres>><<^parameters.postgres>>alpine:latest<</parameters.postgres>>
environment:
POSTGRES_USER: postgres
@@ -82,7 +82,7 @@ commands:
type: string
steps:
- run: zip -0 ccov.zip `find . -name 'plume*.gc*' -o -name 'plm*.gc*'`
- run: grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore '/*' -o lcov.info
- run: grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore-dir '/*' -o lcov.info
- run: bash <(curl -s https://codecov.io/bash) -f lcov.info -F <<parameters.type>>
- run: find . -name 'plume*.gc*' -delete -o -name 'plm*.gc*' -delete
- run: rm ccov.zip lcov.info
+1 -1
View File
@@ -4,7 +4,7 @@ ENV PATH="/root/.cargo/bin:${PATH}"
#install native/circleci/build dependancies
RUN apt update &&\
apt install -y --no-install-recommends git ssh tar gzip ca-certificates default-jre&&\
apt install -y --no-install-recommends binutils-dev build-essential cmake curl gcc gettext git libcurl4-openssl-dev libdw-dev libelf-dev libiberty-dev libpq-dev libsqlite3-dev libssl-dev make openssl pkg-config postgresql postgresql-contrib python zlib1g-dev python3-pip zip unzip libclang-dev&&\
apt install -y --no-install-recommends binutils-dev build-essential cmake curl gcc gettext git libcurl4-openssl-dev libdw-dev libelf-dev libiberty-dev libpq-dev libsqlite3-dev libssl-dev make openssl pkg-config postgresql postgresql-contrib python zlib1g-dev python3-pip zip unzip &&\
rm -rf /var/lib/apt/lists/*
#install and configure rust
Generated
+1059 -1290
View File
File diff suppressed because it is too large Load Diff
+3 -4
View File
@@ -1,7 +1,7 @@
[package]
authors = ["Plume contributors"]
name = "plume"
version = "0.4.0"
version = "0.3.0"
repository = "https://github.com/Plume-org/Plume"
[dependencies]
@@ -23,13 +23,12 @@ rocket = "0.4.0"
rocket_contrib = { version = "0.4.0", features = ["json"] }
rocket_i18n = { git = "https://github.com/Plume-org/rocket_i18n", rev = "e922afa7c366038b3433278c03b1456b346074f2" }
rpassword = "4.0"
runtime-fmt = "0.3.0"
runtime-fmt = "0.4.0"
scheduled-thread-pool = "0.2.2"
serde = "1.0"
serde_json = "1.0"
serde_qs = "0.5"
shrinkwraprs = "0.2.1"
syntect = "3.3"
validator = "0.8"
validator_derive = "0.8"
webfinger = "0.4.1"
@@ -66,7 +65,7 @@ path = "plume-models"
[dependencies.rocket_csrf]
git = "https://github.com/fdb-hiroshima/rocket_csrf"
rev = "4a72ea2ec716cb0b26188fb00bccf2ef7d1e031c"
rev = "29910f2829e7e590a540da3804336577b48c7b31"
[build-dependencies]
ructe = "0.6.2"
@@ -17,12 +17,3 @@ $text-color: $white;
$primary: $purple;
$primary-text-color: $white; // text color on primary background (buttons for instance)
$success-color: $blue;
//Code Highlighting
$code-keyword-color: #f79ac1;
$code-source-color: #a6f0ab;
$code-constant-color: #dfec84;
$code-operator-color: #eddf95;
$code-string-color: #f2ae60;
$code-comment-color: #a3b4f9;
-25
View File
@@ -623,28 +623,3 @@ figure {
}
}
}
//highlighting
code {
.constant{
color: $code-constant-color;
}
.string{
color: $code-string-color;
}
.keyword.type,.keyword.control,.type{
color: $code-keyword-color;
}
.keyword.operator{
color: $code-operator-color;
}
.source{
color: $code-source-color;
}
.comment{
color: $code-comment-color;
}
.function{
color:inherit;
}
}
-8
View File
@@ -27,11 +27,3 @@ $margin: 0 $horizontal-margin;
$route159: "Route159", serif;
$playfair: "Playfair Display", serif;
$lora: "Lora", serif;
//Code Highlighting
$code-keyword-color: #45244a;
$code-source-color: #4c588c;
$code-constant-color: scale-color(magenta,$lightness:-5%);
$code-operator-color: scale-color($code-source-color,$lightness:-5%);
$code-string-color: #8a571c;
$code-comment-color: #1c4c8a;
+1 -1
View File
@@ -2,7 +2,7 @@ extern crate rsass;
extern crate ructe;
use ructe::Ructe;
use std::process::{Command, Stdio};
use std::{env, ffi::OsStr, fs::*, io::Write, path::*};
use std::{ffi::OsStr, fs::*, io::Write, path::*};
fn compute_static_hash() -> String {
//"find static/ -type f ! -path 'static/media/*' | sort | xargs stat -c'%n %Y' | openssl dgst -r"
@@ -1,3 +0,0 @@
-- This file should undo anything in `up.sql`
drop table email_blocklist;
@@ -1,6 +0,0 @@
-- Your SQL goes here
CREATE TABLE email_blocklist(id SERIAL PRIMARY KEY,
email_address TEXT UNIQUE,
note TEXT,
notify_user BOOLEAN DEFAULT FALSE,
notification_text TEXT);
@@ -1,3 +0,0 @@
-- This file should undo anything in `up.sql`
drop table email_blocklist;
@@ -1,6 +0,0 @@
-- Your SQL goes here
CREATE TABLE email_blocklist(id INTEGER PRIMARY KEY,
email_address TEXT UNIQUE,
note TEXT,
notify_user BOOLEAN DEFAULT FALSE,
notification_text TEXT);
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "plume-api"
version = "0.4.0"
version = "0.3.0"
authors = ["Plume contributors"]
[dependencies]
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "plume-cli"
version = "0.4.0"
version = "0.3.0"
authors = ["Plume contributors"]
[[bin]]
+1 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "plume-common"
version = "0.4.0"
version = "0.3.0"
authors = ["Plume contributors"]
[dependencies]
@@ -19,7 +19,6 @@ serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
shrinkwraprs = "0.2.1"
syntect = "3.3"
tokio = "0.1.22"
[dependencies.chrono]
+1 -2
View File
@@ -1,4 +1,4 @@
#![feature(custom_attribute, associated_type_defaults)]
#![feature(associated_type_defaults)]
extern crate activitypub;
#[macro_use]
@@ -20,7 +20,6 @@ extern crate shrinkwraprs;
extern crate serde_derive;
#[macro_use]
extern crate serde_json;
extern crate syntect;
extern crate tokio;
pub mod activity_pub;
+10 -71
View File
@@ -7,8 +7,6 @@ use rocket::{
};
use std::borrow::Cow;
use std::collections::HashSet;
use syntect::html::ClassedHTMLGenerator;
use syntect::parsing::SyntaxSet;
/// Generates an hexadecimal representation of 32 bytes of random data
pub fn random_hex() -> String {
@@ -57,54 +55,7 @@ fn to_inline(tag: Tag) -> Tag {
t => t,
}
}
struct HighlighterContext {
content: Vec<String>,
}
fn highlight_code<'a>(
context: &mut Option<HighlighterContext>,
evt: Event<'a>,
) -> Option<Vec<Event<'a>>> {
match evt {
Event::Start(Tag::CodeBlock(lang)) => {
if lang.is_empty() {
Some(vec![Event::Start(Tag::CodeBlock(lang))])
} else {
*context = Some(HighlighterContext { content: vec![] });
Some(vec![Event::Start(Tag::CodeBlock(lang))])
}
}
Event::End(Tag::CodeBlock(x)) => {
let mut result = vec![];
if let Some(ctx) = context.take() {
let syntax_set = SyntaxSet::load_defaults_newlines();
let syntax = syntax_set.find_syntax_by_token(&x).unwrap_or_else(|| {
syntax_set
.find_syntax_by_name(&x)
.unwrap_or_else(|| syntax_set.find_syntax_plain_text())
});
let mut html = ClassedHTMLGenerator::new(&syntax, &syntax_set);
for line in ctx.content {
html.parse_html_for_line(&line);
}
let q = html.finalize();
result.push(Event::Html(q.into()));
}
result.push(Event::End(Tag::CodeBlock(x)));
*context = None;
Some(result)
}
Event::Text(t) => {
if let Some(mut c) = context.take() {
c.content.push(t.to_string());
*context = Some(c);
Some(vec![])
} else {
Some(vec![Event::Text(t)])
}
}
_ => Some(vec![evt]),
}
}
fn flatten_text<'a>(state: &mut Option<String>, evt: Event<'a>) -> Option<Vec<Event<'a>>> {
let (s, res) = match evt {
Event::Text(txt) => match state.take() {
@@ -146,7 +97,7 @@ fn inline_tags<'a>(
}
}
pub type MediaProcessor<'a> = Box<'a + Fn(i32) -> Option<(String, Option<String>)>>;
pub type MediaProcessor<'a> = Box<dyn 'a + Fn(i32) -> Option<(String, Option<String>)>>;
fn process_image<'a, 'b>(
evt: Event<'a>,
@@ -217,21 +168,11 @@ pub fn md_to_html<'a>(
let (parser, mentions, hashtags): (Vec<Event>, Vec<String>, Vec<String>) = parser
// Flatten text because pulldown_cmark break #hashtag in two individual text elements
.scan(None, flatten_text)
.flatten()
.scan(None, highlight_code)
.flatten()
.flat_map(IntoIterator::into_iter)
.map(|evt| process_image(evt, inline, &media_processor))
// Ignore headings, images, and tables if inline = true
.scan((vec![], inline), inline_tags)
.scan(false, |in_code, evt| match evt {
Event::Start(Tag::CodeBlock(_)) | Event::Start(Tag::Code) => {
*in_code = true;
Some((vec![evt], vec![], vec![]))
}
Event::End(Tag::CodeBlock(_)) | Event::End(Tag::Code) => {
*in_code = false;
Some((vec![evt], vec![], vec![]))
}
.map(|evt| match evt {
Event::Text(txt) => {
let (evts, _, _, _, new_mentions, new_hashtags) = txt.chars().fold(
(vec![], State::Ready, String::new(), 0, vec![], vec![]),
@@ -300,7 +241,7 @@ pub fn md_to_html<'a>(
}
}
State::Ready => {
if !*in_code && c == '@' {
if c == '@' {
events.push(Event::Text(text_acc.into()));
(
events,
@@ -310,7 +251,7 @@ pub fn md_to_html<'a>(
mentions,
hashtags,
)
} else if !*in_code && c == '#' {
} else if c == '#' {
events.push(Event::Text(text_acc.into()));
(
events,
@@ -355,9 +296,9 @@ pub fn md_to_html<'a>(
}
},
);
Some((evts, new_mentions, new_hashtags))
(evts, new_mentions, new_hashtags)
}
_ => Some((vec![evt], vec![], vec![])),
_ => (vec![evt], vec![], vec![]),
})
.fold(
(vec![], vec![], vec![]),
@@ -394,11 +335,9 @@ mod tests {
("mention at @end", vec!["end"]),
("between parenthesis (@test)", vec!["test"]),
("with some punctuation @test!", vec!["test"]),
(" @spaces ", vec!["spaces"]),
(" @spaces ", vec!["spaces"]),
("@is_a@mention", vec!["is_a@mention"]),
("not_a@mention", vec![]),
("`@helo`", vec![]),
("```\n@hello\n```", vec![]),
];
for (md, mentions) in tests {
@@ -422,7 +361,7 @@ mod tests {
("hashtag at #end", vec!["end"]),
("between parenthesis (#test)", vec!["test"]),
("with some punctuation #test!", vec!["test"]),
(" #spaces ", vec!["spaces"]),
(" #spaces ", vec!["spaces"]),
("not_a#hashtag", vec![]),
];
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "plume-front"
version = "0.4.0"
version = "0.3.0"
authors = ["Plume contributors"]
[dependencies]
@@ -11,4 +11,4 @@ gettext-macros = { git = "https://github.com/Plume-org/gettext-macros/", rev = "
gettext-utils = { git = "https://github.com/Plume-org/gettext-macros/", rev = "a7c605f7edd6bfbfbfe7778026bfefd88d82db10" }
lazy_static = "1.3"
serde = "1.0"
serde_json = "1.0"
serde_json = "1.0"
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "plume-macro"
version = "0.4.0"
version = "0.1.0"
authors = ["Trinity Pointard <trinity.pointard@insa-rennes.fr>"]
edition = "2018"
description = "Plume procedural macros"
+1 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "plume-models"
version = "0.4.0"
version = "0.3.0"
authors = ["Plume contributors"]
[dependencies]
@@ -28,7 +28,6 @@ webfinger = "0.4.1"
whatlang = "0.7.1"
shrinkwraprs = "0.2.1"
diesel-derive-newtype = "0.1.2"
glob = "0.3.0"
[dependencies.chrono]
features = ["serde"]
-142
View File
@@ -1,142 +0,0 @@
use diesel::{self, ExpressionMethods, QueryDsl, RunQueryDsl, TextExpressionMethods};
use glob::Pattern;
use schema::email_blocklist;
use {Connection, Error, Result};
#[derive(Clone, Queryable, Identifiable)]
#[table_name = "email_blocklist"]
pub struct BlocklistedEmail {
pub id: i32,
pub email_address: String,
pub note: String,
pub notify_user: bool,
pub notification_text: String,
}
#[derive(Insertable, FromForm)]
#[table_name = "email_blocklist"]
pub struct NewBlocklistedEmail {
pub email_address: String,
pub note: String,
pub notify_user: bool,
pub notification_text: String,
}
impl BlocklistedEmail {
insert!(email_blocklist, NewBlocklistedEmail);
get!(email_blocklist);
find_by!(email_blocklist, find_by_id, id as i32);
pub fn delete_entries(conn: &Connection, ids: Vec<i32>) -> Result<bool> {
use diesel::delete;
for i in ids {
let be: BlocklistedEmail = BlocklistedEmail::find_by_id(&conn, i)?;
delete(&be).execute(conn)?;
}
Ok(true)
}
pub fn find_for_domain(conn: &Connection, domain: &str) -> Result<Vec<BlocklistedEmail>> {
let effective = format!("%@{}", domain);
email_blocklist::table
.filter(email_blocklist::email_address.like(effective))
.load::<BlocklistedEmail>(conn)
.map_err(Error::from)
}
pub fn matches_blocklist(conn: &Connection, email: &str) -> Result<Option<BlocklistedEmail>> {
let mut result = email_blocklist::table.load::<BlocklistedEmail>(conn)?;
for i in result.drain(..) {
if let Ok(x) = Pattern::new(&i.email_address) {
if x.matches(email) {
return Ok(Some(i));
}
}
}
Ok(None)
}
pub fn page(conn: &Connection, (min, max): (i32, i32)) -> Result<Vec<BlocklistedEmail>> {
email_blocklist::table
.offset(min.into())
.limit((max - min).into())
.load::<BlocklistedEmail>(conn)
.map_err(Error::from)
}
pub fn count(conn: &Connection) -> Result<i64> {
email_blocklist::table
.count()
.get_result(conn)
.map_err(Error::from)
}
pub fn pattern_errors(pat: &str) -> Option<glob::PatternError> {
let c = Pattern::new(pat);
c.err()
}
pub fn new(
conn: &Connection,
pattern: &str,
note: &str,
show_notification: bool,
notification_text: &str,
) -> Result<BlocklistedEmail> {
let c = NewBlocklistedEmail {
email_address: pattern.to_owned(),
note: note.to_owned(),
notify_user: show_notification,
notification_text: notification_text.to_owned(),
};
BlocklistedEmail::insert(conn, c)
}
}
#[cfg(test)]
pub(crate) mod tests {
use super::*;
use diesel::Connection;
use instance::tests as instance_tests;
use tests::rockets;
use Connection as Conn;
pub(crate) fn fill_database(conn: &Conn) -> Vec<BlocklistedEmail> {
instance_tests::fill_database(conn);
let domainblock =
BlocklistedEmail::new(conn, "*@bad-actor.com", "Mean spammers", false, "").unwrap();
let userblock = BlocklistedEmail::new(
conn,
"spammer@lax-administration.com",
"Decent enough domain, but this user is a problem.",
true,
"Stop it please",
)
.unwrap();
vec![domainblock, userblock]
}
#[test]
fn test_match() {
let r = rockets();
let conn = &*r.conn;
conn.test_transaction::<_, (), _>(|| {
let various = fill_database(conn);
let match1 = "user1@bad-actor.com";
let match2 = "spammer@lax-administration.com";
let no_match = "happy-user@lax-administration.com";
assert_eq!(
BlocklistedEmail::matches_blocklist(conn, match1)
.unwrap()
.unwrap()
.id,
various[0].id
);
assert_eq!(
BlocklistedEmail::matches_blocklist(conn, match2)
.unwrap()
.unwrap()
.id,
various[1].id
);
assert_eq!(
BlocklistedEmail::matches_blocklist(conn, no_match)
.unwrap()
.is_none(),
true
);
Ok(())
});
}
}
-1
View File
@@ -73,5 +73,4 @@ pub(crate) mod tests {
Ok(conn.begin_test_transaction().unwrap())
}
}
}
+1
View File
@@ -56,6 +56,7 @@ impl Instance {
.clone()
.ok_or(Error::NotFound)
}
pub fn get_local_uncached(conn: &Connection) -> Result<Instance> {
instances::table
.filter(instances::local.eq(true))
+4 -5
View File
@@ -1,6 +1,7 @@
#![feature(try_trait)]
#![feature(never_type)]
#![feature(custom_attribute)]
//#![feature(register_attr)]
//#![feature(register_tool)]
#![feature(proc_macro_hygiene)]
extern crate activitypub;
@@ -22,7 +23,6 @@ extern crate plume_common;
#[macro_use]
extern crate plume_macro;
extern crate reqwest;
#[macro_use]
extern crate rocket;
extern crate rocket_i18n;
extern crate scheduled_thread_pool;
@@ -33,7 +33,6 @@ extern crate serde_derive;
extern crate serde_json;
#[macro_use]
extern crate tantivy;
extern crate glob;
extern crate url;
extern crate walkdir;
extern crate webfinger;
@@ -55,7 +54,6 @@ pub type Connection = diesel::PgConnection;
/// All the possible errors that can be encoutered in this crate
#[derive(Debug)]
pub enum Error {
Blocklisted(bool, String),
Db(diesel::result::Error),
Inbox(Box<InboxError<Error>>),
InvalidValue,
@@ -256,6 +254,7 @@ macro_rules! insert {
($table:ident, $from:ident, |$val:ident, $conn:ident | $( $after:tt )+) => {
last!($table);
#[allow(dead_code)]
pub fn insert(conn: &crate::Connection, new: $from) -> Result<Self> {
diesel::insert_into($table::table)
.values(new)
@@ -282,6 +281,7 @@ macro_rules! insert {
/// ```
macro_rules! last {
($table:ident) => {
#[allow(dead_code)]
pub fn last(conn: &crate::Connection) -> Result<Self> {
$table::table
.order_by($table::id.desc())
@@ -354,7 +354,6 @@ mod tests {
pub mod admin;
pub mod api_tokens;
pub mod apps;
pub mod blocklisted_emails;
pub mod blog_authors;
pub mod blogs;
pub mod comment_seers;
-1
View File
@@ -551,5 +551,4 @@ mod tests {
Ok(())
});
}
}
+7 -3
View File
@@ -117,15 +117,19 @@ impl Media {
Ok(match self.category() {
MediaCategory::Image => SafeString::trusted(&format!(
r#"<img src="{}" alt="{}" title="{}">"#,
url, escape(&self.alt_text), escape(&self.alt_text)
url,
escape(&self.alt_text),
escape(&self.alt_text)
)),
MediaCategory::Audio => SafeString::trusted(&format!(
r#"<div class="media-preview audio"></div><audio src="{}" title="{}" controls></audio>"#,
url, escape(&self.alt_text)
url,
escape(&self.alt_text)
)),
MediaCategory::Video => SafeString::trusted(&format!(
r#"<video src="{}" title="{}" controls></video>"#,
url, escape(&self.alt_text)
url,
escape(&self.alt_text)
)),
MediaCategory::Unknown => SafeString::trusted(&format!(
r#"<a href="{}" class="media-preview unknown"></a>"#,
+1 -1
View File
@@ -10,7 +10,7 @@ use std::path::Path;
#[allow(dead_code)] //variants might not be constructed if not required by current migrations
enum Action {
Sql(&'static str),
Function(&'static Fn(&Connection, &Path) -> Result<()>),
Function(&'static dyn Fn(&Connection, &Path) -> Result<()>),
}
impl Action {
+1 -32
View File
@@ -31,41 +31,10 @@ lazy_static! {
.add_tag_attributes("label", ["for"].iter())
.add_tag_attributes("input", ["type", "checked"].iter())
.add_allowed_classes("input", ["cw-checkbox"].iter())
.add_allowed_classes(
"span",
[
"cw-container",
"cw-text",
//Scope classes for the syntax highlighting.
"attribute-name",
"comment",
"constant",
"control",
"declaration",
"entity",
"function",
"invalid",
"keyword",
"language",
"modifier",
"name",
"numeric",
"operator",
"parameter",
"punctuation",
"source",
"storage",
"string",
"support",
"tag",
"type",
"variable",
]
.iter(),
)
// Related to https://github.com/Plume-org/Plume/issues/637
.add_allowed_classes("sup", ["footnote-reference", "footnote-definition-label"].iter())
.add_allowed_classes("div", ["footnote-definition"].iter())
.add_allowed_classes("span", ["cw-container", "cw-text"].iter())
.attribute_filter(|elem, att, val| match (elem, att) {
("input", "type") => Some("checkbox".into()),
("input", "checked") => Some("checked".into()),
+1 -9
View File
@@ -29,6 +29,7 @@ table! {
is_owner -> Bool,
}
}
table! {
blogs (id) {
id -> Int4,
@@ -72,15 +73,6 @@ table! {
user_id -> Int4,
}
}
table! {
email_blocklist(id){
id -> Int4,
email_address -> VarChar,
note -> Text,
notify_user -> Bool,
notification_text -> Text,
}
}
table! {
follows (id) {
+2 -2
View File
@@ -153,7 +153,7 @@ impl PlumeQuery {
/// Convert this Query to a Tantivy Query
pub fn into_query(self) -> BooleanQuery {
let mut result: Vec<(Occur, Box<Query>)> = Vec::new();
let mut result: Vec<(Occur, Box<dyn Query>)> = Vec::new();
gen_to_query!(self, result; normal: title, subtitle, content, tag;
oneoff: instance, author, blog, lang, license);
@@ -279,7 +279,7 @@ impl PlumeQuery {
}
// map a token and it's field to a query
fn token_to_query(token: &str, field_name: &str) -> Box<Query> {
fn token_to_query(token: &str, field_name: &str) -> Box<dyn Query> {
let token = token.to_lowercase();
let token = token.as_str();
let field = Searcher::schema().get_field(field_name).unwrap();
+2 -2
View File
@@ -72,7 +72,7 @@ impl Searcher {
schema_builder.build()
}
pub fn create(path: &AsRef<Path>) -> Result<Self> {
pub fn create(path: &dyn AsRef<Path>) -> Result<Self> {
let whitespace_tokenizer = tokenizer::WhitespaceTokenizer.filter(LowerCaser);
let content_tokenizer = SimpleTokenizer
@@ -111,7 +111,7 @@ impl Searcher {
})
}
pub fn open(path: &AsRef<Path>) -> Result<Self> {
pub fn open(path: &dyn AsRef<Path>) -> Result<Self> {
let whitespace_tokenizer = tokenizer::WhitespaceTokenizer.filter(LowerCaser);
let content_tokenizer = SimpleTokenizer
+1 -2
View File
@@ -495,8 +495,7 @@ mod tests {
),
published: true,
license: "GPL".to_string(),
source: "Actually, GNU+Linux, GNU×Linux, or GNU¿Linux are better."
.to_string(),
source: "Actually, GNU+Linux, GNU×Linux, or GNU¿Linux are better.".to_string(),
ap_url: "".to_string(),
creation_date: None,
subtitle: "".to_string(),
+10 -2
View File
@@ -811,9 +811,17 @@ mod tests {
);
let expect_keyword = TimelineQuery::parse(r#"not_a_field contains something"#).unwrap_err();
assert_eq!(expect_keyword, QueryError::SyntaxError(0, 11, "Syntax Error: Expected one of 'blog', \
assert_eq!(
expect_keyword,
QueryError::SyntaxError(
0,
11,
"Syntax Error: Expected one of 'blog', \
'author', 'license', 'tags', 'lang', 'title', 'subtitle', 'content', 'followed', 'has_cover', \
'local' or 'all', got 'not_a_field'".to_owned()));
'local' or 'all', got 'not_a_field'"
.to_owned()
)
);
let expect_bracket_or_comma = TimelineQuery::parse(r#"lang in [en ["#).unwrap_err();
assert_eq!(
+11 -33
View File
@@ -49,10 +49,7 @@ use safe_string::SafeString;
use schema::users;
use search::Searcher;
use timeline::Timeline;
use {
ap_url, blocklisted_emails::BlocklistedEmail, Connection, Error, PlumeRocket, Result,
ITEMS_PER_PAGE,
};
use {ap_url, Connection, Error, PlumeRocket, Result, ITEMS_PER_PAGE};
pub type CustomPerson = CustomObject<ApSignature, Person>;
@@ -211,13 +208,6 @@ impl User {
}
}
pub fn find_first_local(conn: &Connection) -> Result<User> {
users::table
.filter(users::instance_id.eq(Instance::get_local()?.id))
.first(&*conn)
.map_err(|_| Error::NotFound)
}
fn fetch_from_webfinger(c: &PlumeRocket, acct: &str) -> Result<User> {
let link = resolve(acct.to_owned(), true)?
.links
@@ -236,28 +226,21 @@ impl User {
.ok_or(Error::Webfinger)
}
fn fetch(url: &str, lu: User) -> Result<CustomPerson> {
let mut headers = plume_common::activity_pub::request::headers();
headers.insert(
ACCEPT,
HeaderValue::from_str(
&ap_accept_header()
.into_iter()
.collect::<Vec<_>>()
.join(", "),
)?,
);
fn fetch(url: &str) -> Result<CustomPerson> {
let mut res = ClientBuilder::new()
.connect_timeout(Some(std::time::Duration::from_secs(5)))
.build()?
.get(url)
.headers(headers.clone())
.header(
"Signature",
plume_common::activity_pub::request::signature(&lu, &headers).expect(""),
ACCEPT,
HeaderValue::from_str(
&ap_accept_header()
.into_iter()
.collect::<Vec<_>>()
.join(", "),
)?,
)
.send()?;
let text = &res.text()?;
// without this workaround, publicKey is not correctly deserialized
let ap_sign = serde_json::from_str::<ApSignature>(text)?;
@@ -267,12 +250,11 @@ impl User {
}
pub fn fetch_from_url(c: &PlumeRocket, url: &str) -> Result<User> {
User::fetch(url, User::find_first_local(&*c.conn)?)
.and_then(|json| User::from_activity(c, json))
User::fetch(url).and_then(|json| User::from_activity(c, json))
}
pub fn refetch(&self, conn: &Connection) -> Result<()> {
User::fetch(&self.ap_url.clone(), User::find_first_local(conn)?).and_then(|json| {
User::fetch(&self.ap_url.clone()).and_then(|json| {
let avatar = Media::save_remote(
conn,
json.object
@@ -1010,10 +992,6 @@ impl NewUser {
) -> Result<User> {
let (pub_key, priv_key) = gen_keypair();
let instance = Instance::get_local()?;
let blocklisted = BlocklistedEmail::matches_blocklist(conn, &email)?;
if let Some(x) = blocklisted {
return Err(Error::Blocklisted(x.notify_user, x.notification_text));
}
let res = User::insert(
conn,
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 19:54\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Afrikaans\n"
"Language: af_ZA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: af\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+20 -18
View File
@@ -3,55 +3,57 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 19:54\n"
"Last-Translator: Ana Gelez (AnaGelez)\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: ar\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "فتح محرر النصوص الغني"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "العنوان"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr "العنوان الثانوي أو الملخص"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "اكتب مقالك هنا. ماركداون مُدَعَّم."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "يتبقا {} حرفا تقريبا"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "الوسوم"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "الرخصة"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "الغلاف"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "هذه مسودة"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "نشر كتابا"
+22 -22
View File
@@ -3,55 +3,55 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Bulgarian\n"
"Language: bg_BG\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: bg\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Отворете редактора с богат текст"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Заглавие"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
msgstr "Подзаглавие или резюме"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Напишете статията си тук. Поддържа се Markdown."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Остават {} знака вляво"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Етикети"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Лиценз"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Основно изображение"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Това е проект"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Публикувай"
msgstr ""
+22 -22
View File
@@ -3,55 +3,55 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 19:55\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Catalan\n"
"Language: ca_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: ca\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Obre leditor de text enriquit"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Títol"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
msgstr "Subtítol o resum"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Escriviu el vostre article ací. Podeu fer servir el Markdown."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Queden uns {} caràcters"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Etiquetes"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Llicència"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Coberta"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Açò és un esborrany"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Publica"
msgstr ""
+15 -14
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Czech\n"
"Language: cs_CZ\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>=2 && n<=4) ? 1 : 3;\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: cs\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Otevřít editor formátovaného textu"
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Nadpis"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr "Podnadpis, nebo shrnutí"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Sem napište svůj článek. Markdown je podporován."
msgstr "Napište sem svůj článek. Markdown je podporován."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Zbývá kolem {} znaků"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Tagy"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licence"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Titulka"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Tohle je koncept"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Zveřejnit"
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Danish\n"
"Language: da_DK\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: da\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+18 -17
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:14\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: German\n"
"Language: de_DE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: de\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr " Rich Text Editor (RTE) öffnen"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Titel"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr "Untertitel oder Zusammenfassung"
msgstr "Untertitel oder Übersicht"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Schreiben deinen Artikel hier. Markdown wird unterstützt."
msgstr "Schreibe deinen Artikel hier. Markdown ist unterstützt."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Ungefähr {} Zeichen übrig"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Schlagwörter"
msgstr "Tags"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Lizenz"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Einband"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Dies ist ein Entwurf"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Veröffentlichen"
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:14\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Greek\n"
"Language: el_GR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: el\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+12 -12
View File
@@ -3,23 +3,24 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: English\n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: en\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
@@ -27,31 +28,30 @@ msgstr ""
msgid "Subtitle, or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+15 -14
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Esperanto\n"
"Language: eo_UY\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: eo\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Malfermi la riĉan redaktilon"
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Titolo"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr ""
msgstr "Subtitolo aŭ resumo"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Verku vian artikolon ĉi tie. Markdown estas subtenita."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Proksimume {} signoj restantaj"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Etikedoj"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Permesilo"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Kovro"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Malfinias"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Eldoni"
+16 -15
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Spanish\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: es-ES\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Abrir el editor de texto enriquecido"
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Título"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr ""
msgstr "Subtítulo o resumen"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Escriba su artículo aquí. Puede utilizar Markdown."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Quedan unos {} caracteres"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Etiquetas"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licencia"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Cubierta"
msgstr "Cobertura"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Esto es un borrador"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Publicar"
+23 -22
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 19:55\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Persian\n"
"Language: fa_IR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: fa\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "باز کردن ویرایش‌گر غنی"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "عنوان"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
msgstr "زیرعنوان، یا چکیده"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "مقاله را اینجا بنویسید. از مارک‌داون پشتیبانی می‌شود."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "نزدیک به {} نویسه باقی مانده است"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "برچسب‌ها"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "پروانه"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "این، یک پیش‌نویس است"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "انتشار"
msgstr ""
+24 -23
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:14\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Finnish\n"
"Language: fi_FI\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: fi\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Avaa edistynyt tekstieditori"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Otsikko"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
msgstr "Alaotsikko tai tiivistelmä"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Kirjoita artikkelisi tähän. Markdown -kuvauskieli on tuettu."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "%{count} merkkiä jäljellä"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Tagit"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Lisenssi"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Kansi"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Tämä on luonnos"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Julkaise"
msgstr ""
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:14\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: French\n"
"Language: fr_FR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: fr\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Ouvrir l'éditeur de texte avancé"
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Titre"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr "Sous-titre ou résumé"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Écrivez votre article ici. Vous pouvez utiliser du Markdown."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Environ {} caractères restant"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Étiquettes"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licence"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Illustration"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Ceci est un brouillon"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Publier"
+15 -14
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:14\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Galician\n"
"Language: gl_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: gl\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Abra o editor de texto enriquecido"
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Título"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr "Subtítulo, ou resumo"
msgstr "Subtítulo ou resumo"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Escriba aquí o seu artigo: pode utilizar Markdown."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Dispón de {} caracteres restantes"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Etiquetas"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licenza"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Portada"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Este é un borrador"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Publicar"
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:14\n"
"Last-Translator: Ana Gelez (AnaGelez)\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"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: he\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+15 -14
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:14\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Hindi\n"
"Language: hi_IN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: hi\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "शीर्षक"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr ""
msgstr "उपशीर्षक या सारांश"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "अपना आर्टिकल या लेख यहाँ लिखें. Markdown उपलब्ध है."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "लगभग {} अक्षर बाकी हैं"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "टैग्स"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "लाइसेंस"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "पब्लिश करें"
+17 -15
View File
@@ -3,55 +3,57 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: hr\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Naslov"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr ""
msgstr "Podnaslov ili sažetak"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Tagovi"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licenca"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Objavi"
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Hungarian\n"
"Language: hu_HU\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: hu\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+15 -14
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Italian\n"
"Language: it_IT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: it\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Apri il compositore di testo avanzato"
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Titolo"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr "Sottotitolo, o sommario"
msgstr "Sottotitolo o sommario"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Scrivi qui il tuo articolo. È supportato il Markdown."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Circa {} caratteri rimasti"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Etichette"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licenza"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Copertina"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Questa è una bozza"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Pubblica"
+15 -14
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Japanese\n"
"Language: ja_JP\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: ja\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "リッチテキストエディターを開く"
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "タイトル"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr "サブタイトルまたは概要"
msgstr "サブタイトルまたは概要"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "投稿をここに書きます。Markdown がサポートされています。"
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "残り約 {} 文字"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "タグ"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "ライセンス"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "カバー"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "これは下書きです"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "公開"
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Korean\n"
"Language: ko_KR\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: ko\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Dutch\n"
"Language: nl_NL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: nl\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 19:55\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Norwegian\n"
"Language: no_NO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: no\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+17 -15
View File
@@ -3,55 +3,57 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 19:55\n"
"Last-Translator: Ana Gelez (AnaGelez)\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: pl\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Otwórz edytor tekstu sformatowanego"
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Tytuł"
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
msgstr "Podtytuł, lub podsumowanie"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Napisz swój artykuł tutaj. Markdown jest obsługiwany."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Pozostało w okolicy {} znaków"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Tagi"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licencja"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Okładka"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "To jest szkic"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Publikuj"
msgstr "Opublikuj"
+20 -19
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Portuguese, Brazilian\n"
"Language: pt_BR\n"
"PO-Revision-Date: 2019-04-18 07:05\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Portuguese\n"
"Language: pt_PT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: pt-BR\n"
"X-Crowdin-Language: pt-PT\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Abrir o editor de rich text"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Título"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr "Subtítulo ou resumo"
msgstr "Legenda ou resumo"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Escreva seu artigo aqui. Markdown é suportado."
msgstr "Escreva seu artigo aqui. Markdown pode ser usado."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Cerca de {} caracteres restantes"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Tags"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licença"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Capa"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Isso é um rascunho"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Publicar"
+17 -15
View File
@@ -3,55 +3,57 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 19:55\n"
"Last-Translator: Ana Gelez (AnaGelez)\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: ro\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Deschide editorul de text"
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Titlu"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr ""
msgstr "Subtitlu sau rezumat"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Scrie articolul tău aici. Markdown este acceptat."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "În apropiere de {} caractere rămase"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Etichete"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licenţă"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Coperta"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Aceasta este o ciornă"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Publică"
+15 -13
View File
@@ -3,23 +3,26 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 19:55\n"
"Last-Translator: Ana Gelez (AnaGelez)\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: ru\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
@@ -27,31 +30,30 @@ msgstr ""
msgid "Subtitle, or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Slovak\n"
"Language: sk_SK\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>=2 && n<=4) ? 1 : 3;\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: sk\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Otvor editor formátovaného textu"
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Nadpis"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr "Zhrnutie, alebo podnadpis"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Tu napíš svoj článok. Markdown je podporovaný."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Zostáva asi {} znakov"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Štítky"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licencia"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Obálka"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Toto je koncept"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Zverejniť"
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 19:55\n"
"Last-Translator: Ana Gelez (AnaGelez)\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"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: sl\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Naslov"
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Oznake"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licenca"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "To je osnutek"
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Objavi"
+23 -22
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 20:49\n"
"Last-Translator: Ana Gelez (AnaGelez)\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: sr-CS\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Otvori uređivač sa stilizacijom"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Naslov"
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
msgstr "Podnaslov, ili sažetak"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Napišite vaš članak ovde. Na raspolaganju vam je Markdown."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Preostalo oko {} znakova"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Markeri"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licenca"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Naslovna strana"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Ovo je nacrt"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Objavi"
msgstr ""
+15 -14
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Swedish\n"
"Language: sv_SE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: sv-SE\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Titel"
# plume-front/src/editor.rs:149
# plume-front/src/editor.rs:147
#, fuzzy
msgid "Subtitle, or summary"
msgstr ""
msgstr "Undertitel eller sammanfattning"
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Skriv din artikel här. Markdown stöds."
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Ungefär {} karaktärer kvar"
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Taggar"
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Licens"
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Omslag"
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Publicera"
+24 -23
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Turkish\n"
"Language: tr_TR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: tr\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Zengin metin editörünü (RTE) aç"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr "Başlık"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
msgstr "Alt başlık, veya açıklama"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr "Makaleni buraya yaz. Markdown kullanabilirsin."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr "Yaklaşık {} karakter kaldı"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr "Etiketler"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr "Lisans"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr "Kapak"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr "Bu bir taslaktır"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr "Yayınla"
msgstr ""
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\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"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: uk\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+19 -18
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Vietnamese\n"
"Language: vi_VN\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: vi\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr "Văn bản của tôi"
# plume-front/src/editor.rs:145
msgid "Title"
msgstr "Tiêu Châu"
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+14 -13
View File
@@ -3,55 +3,56 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 18:15\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Chinese Simplified\n"
"Language: zh_CN\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: zh-CN\n"
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
# plume-front/src/editor.rs:115
# plume-front/src/editor.rs:114
msgid "Open the rich text editor"
msgstr ""
# plume-front/src/editor.rs:145
# plume-front/src/editor.rs:143
msgid "Title"
msgstr ""
# plume-front/src/editor.rs:149
msgid "Subtitle, or summary"
# plume-front/src/editor.rs:147
msgid "Subtitle or summary"
msgstr ""
# plume-front/src/editor.rs:156
# plume-front/src/editor.rs:154
msgid "Write your article here. Markdown is supported."
msgstr ""
# plume-front/src/editor.rs:167
# plume-front/src/editor.rs:165
msgid "Around {} characters left"
msgstr ""
# plume-front/src/editor.rs:243
# plume-front/src/editor.rs:228
msgid "Tags"
msgstr ""
# plume-front/src/editor.rs:244
# plume-front/src/editor.rs:229
msgid "License"
msgstr ""
# plume-front/src/editor.rs:247
# plume-front/src/editor.rs:232
msgid "Cover"
msgstr ""
# plume-front/src/editor.rs:267
# plume-front/src/editor.rs:252
msgid "This is a draft"
msgstr ""
# plume-front/src/editor.rs:274
# plume-front/src/editor.rs:259
msgid "Publish"
msgstr ""
+420 -551
View File
File diff suppressed because it is too large Load Diff
+246 -201
View File
@@ -3,99 +3,102 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 20:49\n"
"Last-Translator: Ana Gelez (AnaGelez)\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: ar\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr "علّق {0} على مقالك."
msgstr ""
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr "{0} مشترك لك."
msgstr ""
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "{0} أعجبهم مقالك."
msgstr ""
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "أشار إليك {0}."
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr "{0} دعمو مقالك."
msgstr ""
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr "الصورة الرمزية لـ {0}"
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
msgstr "لإنشاء مدونة جديدة، تحتاج إلى تسجيل الدخول"
# src/routes/blogs.rs:106
# src/routes/blogs.rs:109
msgid "A blog with the same name already exists."
msgstr "توجد مدونة تحمل نفس العنوان."
msgstr ""
# src/routes/blogs.rs:141
# src/routes/session.rs:259
#, fuzzy
msgid "Your blog was successfully created!"
msgstr "تم إنشاء مدونتك بنجاح!"
msgstr "تمت إعادة تعيين كلمتك السرية بنجاح."
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr "تم حذف مدونتك."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr "لا يسمح لك بحذف هذه المدونة."
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr "لا يسمح لك بتعديل هذه المدونة."
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
msgid "You can't use this media as a blog icon."
msgstr "لا يمكنك استخدام هذه الوسائط كأيقونة للمدونة."
# src/routes/blogs.rs:281
# src/routes/blogs.rs:280
msgid "You can't use this media as a blog banner."
msgstr "لا يمكنك استخدام هذه الوسائط كشعار للمدونة."
# src/routes/blogs.rs:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr "تم تحديث معلومات مُدوّنتك."
msgstr ""
# src/routes/comments.rs:97
#, fuzzy
msgid "Your comment has been posted."
msgstr "تم نشر تعليقك."
msgstr "ليس لديك أية وسائط بعد."
# src/routes/comments.rs:172
#, fuzzy
msgid "Your comment has been deleted."
msgstr "تم حذف تعليقك."
msgstr "ليس لديك أية وسائط بعد."
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr "تم حفظ إعدادات المثيل."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr ""
@@ -103,23 +106,25 @@ msgstr ""
msgid "To like a post, you need to be logged in"
msgstr "يجب عليك تسجيل الدخول أولا للإعجاب بهذا المقال"
# src/routes/medias.rs:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr "لقد تم حذف وسائطك."
msgstr ""
# src/routes/medias.rs:146
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr "لا يسمح لك بحذف هذه الوسائط."
msgstr "لا يسمح لك بحذف هذه المدونة."
# src/routes/medias.rs:163
#, fuzzy
msgid "Your avatar has been updated."
msgstr "تم تحديث صورتك الشخصية."
msgstr "ليس لديك أية وسائط بعد."
# src/routes/medias.rs:168
# src/routes/blogs.rs:217
#, fuzzy
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 "يجب عليك تسجيل الدخول أولا لعرض الإشعارات"
@@ -131,77 +136,82 @@ msgstr "هذا المقال ليس منشورا بعد."
msgid "To write a new post, you need to be logged in"
msgstr "يجب عليك تسجيل الدخول أولا لكتابة مقال جديد"
# src/routes/posts.rs:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr "لست مِن محرري هذه المدونة."
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "منشور جديد"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "تعديل {0}"
# src/routes/posts.rs:260
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr "لا يسمح لك بالنشر على هذه المدونة."
msgstr "لا يسمح لك بتعديل هذه المدونة."
# src/routes/posts.rs:350
#, fuzzy
msgid "Your article has been updated."
msgstr "تم تحديث مقالك."
msgstr "ليس لديك أية وسائط بعد."
# src/routes/posts.rs:532
#, fuzzy
msgid "Your article has been saved."
msgstr "تم حفظ مقالك."
msgstr "ليس لديك أية وسائط بعد."
# src/routes/posts.rs:538
msgid "New article"
msgstr "مقال جديد"
# src/routes/posts.rs:572
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr "لا يسمح لك بحذف هذا المقال."
msgstr "لا يسمح لك بحذف هذه المدونة."
# src/routes/posts.rs:597
#, fuzzy
msgid "Your article has been deleted."
msgstr "تم حذف مقالك."
msgstr "ليس لديك أية وسائط بعد."
# src/routes/posts.rs:602
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
msgstr "لم يتم العثور على المقال الذي تحاول حذفه. ربما سبق حذفه؟"
# src/routes/posts.rs:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
msgstr "تعذر العثور عن معلومات حسابك. المرجو التحقق من صحة إسم المستخدم."
# src/routes/posts.rs:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
msgstr "يجب عليك تسجيل الدخول أولا للإعادت نشر هذا المقال"
msgstr ""
# src/routes/session.rs:112
#, fuzzy
msgid "You are now connected."
msgstr "أنت الآن متصل."
msgstr "ليست لديك التصريحات اللازمة للقيام بذلك."
# src/routes/session.rs:131
#, fuzzy
msgid "You are now logged off."
msgstr "لقد قمتَ بالخروج للتوّ."
msgstr "ليست لديك التصريحات اللازمة للقيام بذلك."
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "إعادة تعيين كلمة المرور"
# src/routes/session.rs:189
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr "ها هو رابط إعادة تعيين كلمتك السرية: {0}"
# src/routes/session.rs:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr "تمت إعادة تعيين كلمتك السرية بنجاح."
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr ""
msgstr "عذراً، ولكن انتهت مدة صلاحية الرابط. حاول مرة أخرى"
# src/routes/user.rs:136
msgid "To access your dashboard, you need to be logged in"
@@ -209,39 +219,41 @@ msgstr "يجب عليك تسجيل الدخول أولاللنفاذ إلى لو
# src/routes/user.rs:158
msgid "You are no longer following {}."
msgstr "أنت لم تعد تتابع {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr "أنت الآن تتابع {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr "للإشتراك بأحد ما، يجب تسجيل الدخول أولا"
msgstr ""
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr "لتعديل الحساب، يجب تسجيل الدخول أولا"
msgstr ""
# src/routes/user.rs:398
#, fuzzy
msgid "Your profile has been updated."
msgstr "تم تحديث ملفك الشخصي."
msgstr "ليس لديك أية وسائط بعد."
# src/routes/user.rs:425
#, fuzzy
msgid "Your account has been deleted."
msgstr "تم حذف حسابك."
msgstr "ليس لديك أية وسائط بعد."
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr "لا يمكنك حذف حساب شخص آخر."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr "التسجيلات مُغلقة على مثيل الخادم هذ."
msgstr ""
# src/routes/user.rs:527
msgid "Your account has been created. Now you just need to log in, before you can use it."
msgstr "لقد تم إنشاء حسابك. ما عليك إلّا الولوج الآن للتمكّن مِن استعماله."
msgid ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
msgstr "خطأ داخلي في الخادم"
@@ -265,22 +277,25 @@ msgid "The link that led you here may be broken."
msgstr "مِن المشتبه أنك قد قمت باتباع رابط غير صالح."
msgid "The content you sent can't be processed."
msgstr "لا يمكن معالجة المحتوى الذي قمت بإرساله."
msgstr ""
msgid "Maybe it was too long."
msgstr "ربما كان طويلا جدا."
msgstr ""
msgid "Invalid CSRF token"
msgstr "الرمز المميز CSRF غير صالح"
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 "هناكخطأم ما في رمز 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 ""
msgid "Articles tagged \"{0}\""
msgstr "المقالات الموسومة بـ \"{0}\""
msgid "There are currently no articles with such a tag"
msgstr "لا يوجد حالي أي مقال بهذا الوسام"
msgstr ""
msgid "New Blog"
msgstr "مدونة جديدة"
@@ -288,11 +303,10 @@ msgstr "مدونة جديدة"
msgid "Create a blog"
msgstr "انشئ مدونة"
# src/template_utils.rs:251
msgid "Title"
msgstr "العنوان"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "اختياري"
@@ -306,10 +320,11 @@ msgid "Description"
msgstr "الوصف"
msgid "Markdown syntax is supported"
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 "رفع صور"
@@ -340,12 +355,12 @@ 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] "هنالك {0} مؤلفين في هذه المدونة :"
msgstr[4] "هنالك {0} مؤلفون في هذه المدونة :"
msgstr[5] "هنلك {0} مؤلفون في هذه المدونة: "
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
msgid "Latest articles"
msgstr "آخر المقالات"
@@ -353,132 +368,139 @@ msgstr "آخر المقالات"
msgid "No posts to see here yet."
msgstr "في الوقت الراهن لا توجد أية منشورات هنا."
#, fuzzy
msgid "Search result(s) for \"{0}\""
msgstr "نتائج البحث عن \"{0}\""
msgstr "نتائج البحث"
#, fuzzy
msgid "Search result(s)"
msgstr "نتائج البحث"
#, fuzzy
msgid "No results for your query"
msgstr "لا توجد نتيجة لطلبك"
msgstr "الانتقال إلى معرضك"
msgid "No more results for your query"
msgstr "لم تتبقى نتائج لطلبك"
msgstr ""
msgid "Search"
msgstr "البحث"
msgid "Your query"
msgstr ""
msgstr "طلبُك"
msgid "Advanced search"
msgstr "البحث المتقدم"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr "عنوان المقالات المطابقة لهذه الكلمات"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr "العناوين الثانوية للمقالات المطابقة لهذه الكلمات"
msgid "Subtitle - byline"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr ""
msgid "Body content"
msgstr "محتوى العرض"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr "اعتبارا من هذا التاريخ"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr ""
msgstr "بحلول هذا التاريخ"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr "تتضمن هذه الوسوم"
msgid "Tags"
msgstr "الوسوم"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr "نُشر في واحدة من هاته المثائل"
msgstr ""
msgid "Instance domain"
msgstr "اسم نطاق مثيل الخادم"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr "نُشر من طرف واحد من هاؤلاء المؤلفين"
msgstr ""
#, fuzzy
msgid "Author(s)"
msgstr "المؤلفون"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr "نُشر في واحدة من هاته المدونات"
msgstr ""
msgid "Blog title"
msgstr "عنوان المدونة"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr "كتب في هذه اللغة"
msgstr ""
msgid "Language"
msgstr "اللغة"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr "نشرتحت هذا الترخيص"
msgstr ""
msgid "Article license"
msgstr "رخصة المقال"
msgid "Interact with {}"
msgstr "التفاعل مع {}"
msgstr ""
#, fuzzy
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 ""
# src/template_utils.rs:251
# src/template_utils.rs:217
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 ""
"You can upload media to your gallery, and then copy their Markdown code into "
"your articles to insert them."
msgstr ""
msgid "Upload media"
msgstr "تحميل وسائط"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr "الكلمات الدلالية، مفصولة بفواصل"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr "الرخصة"
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr ""
@@ -516,28 +538,30 @@ msgstr[4] "{0} إعجابات"
msgstr[5] "{0} إعجابات"
msgid "I don't like this anymore"
msgstr "لم يعد يعجبني هذا"
msgstr ""
msgid "Add yours"
msgstr "أعجبني"
msgid "One boost"
msgid_plural "{0} boosts"
msgstr[0] "لم يدعم"
msgstr[1] "دُعِّم مرة واحدة"
msgstr[2] "دُعِم مرتين إثنتين"
msgstr[3] "دُعِّم {0} مرات"
msgstr[4] "دُعِّم {0} مرة"
msgstr[5] "دُعِّم {0} مرة"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
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 "{0}قم بتسجيل الدخول{1} أو {2}استخدم حسابك على الفديفرس{3} إن كنت ترغب في التفاعل مع هذا المقال"
msgid ""
"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this "
"article"
msgstr ""
msgid "Unsubscribe"
msgstr "إلغاء الاشتراك"
@@ -548,7 +572,7 @@ msgstr "إشترِك"
msgid "Comments"
msgstr "التعليقات"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr "تحذير عن المحتوى"
@@ -568,10 +592,10 @@ msgid "Delete"
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 "Media upload"
msgstr "إرسال الوسائط"
@@ -580,7 +604,7 @@ msgid "Useful for visually impaired people, as well as licensing information"
msgstr "مفيدة للأشخاص المعاقين بصريا، فضلا عن معلومات الترخيص"
msgid "Leave it empty, if none is needed"
msgstr "إتركه فارغا إن لم تكن في الحاجة"
msgstr ""
msgid "File"
msgstr "الملف"
@@ -610,10 +634,10 @@ msgid "Go back to the gallery"
msgstr "العودة إلى المعرض"
msgid "Markdown syntax"
msgstr "صياغت ماركداون"
msgstr ""
msgid "Copy it into your articles, to insert this media:"
msgstr "قم بنسخه في مقالاتك منأجل إدراج الوسائط:"
msgstr ""
msgid "Use as an avatar"
msgstr "استخدمها كصورة رمزية"
@@ -646,13 +670,13 @@ msgid "About this instance"
msgstr "عن مثيل الخادوم هذا"
msgid "Privacy policy"
msgstr "سياسة الخصوصية"
msgstr ""
msgid "Administration"
msgstr "الإدارة"
msgid "Documentation"
msgstr "الدليل"
msgstr ""
msgid "Source code"
msgstr "الشيفرة المصدرية"
@@ -673,10 +697,10 @@ msgid "Nothing to see here yet. Try subscribing to more people."
msgstr ""
msgid "Articles from {}"
msgstr ""
msgstr "مقالات صادرة مِن {}"
msgid "All the articles of the Fediverse"
msgstr ""
msgstr "كافة مقالات الفديفرس"
msgid "Users"
msgstr "المستخدمون"
@@ -693,7 +717,7 @@ msgstr "اطرد"
msgid "Administration of {0}"
msgstr "إدارة {0}"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "الاسم"
@@ -701,12 +725,12 @@ msgid "Allow anyone to register here"
msgstr "السماح للجميع بإنشاء حساب"
msgid "Short description"
msgstr "وصف مختصر"
msgstr ""
msgid "Long description"
msgstr "الوصف الطويل"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr "الرخصة الافتراضية للمقال"
@@ -726,18 +750,26 @@ msgid "Who wrote <em>{0}</em> articles"
msgstr "قاموا بتحرير <em>{0}</em> مقالات"
msgid "And are connected to <em>{0}</em> other instances"
msgstr "ومتصل بـ <em>{0}</em> مثيلات خوادم أخرى"
msgstr ""
msgid "Administred by"
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 "Welcome to {}"
@@ -752,11 +784,11 @@ msgstr "حظر"
msgid "Reset your password"
msgstr "أعد تعيين كلمتك السرية"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr "كلمة السر الجديدة"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr "تأكيد"
@@ -766,26 +798,28 @@ msgstr "تحديث الكلمة السرية"
msgid "Log in"
msgstr "تسجيل الدخول"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr "اسم المستخدم أو عنوان البريد الالكتروني"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "كلمة السر"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr ""
msgstr "البريد الإلكتروني"
msgid "Send password reset link"
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 "Admin"
msgstr "المدير"
@@ -799,17 +833,19 @@ msgstr "تعديل ملفك الشخصي"
msgid "Open on {0}"
msgstr "افتح على {0}"
#, fuzzy
msgid "Follow {}"
msgstr "تابِع {}"
msgstr "اتبع"
#, fuzzy
msgid "Log in to follow"
msgstr "قم بتسجيل الدخول للمتابعة"
msgstr "قم بتسجيل الدخول قصد مشاركته"
msgid "Enter your full username handle to follow"
msgstr "اخل اسم مستخدمك كاملا للمتابعة"
msgstr ""
msgid "{0}'s subscriptions"
msgstr "{0} اشتراكات"
msgstr ""
msgid "Articles"
msgstr "المقالات"
@@ -826,23 +862,25 @@ msgstr "انشئ حسابك"
msgid "Create an account"
msgstr "انشئ حسابا"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "اسم المستخدم"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "البريد الالكتروني"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password confirmation"
msgstr "تأكيد الكلمة السرية"
msgid ""
"Apologies, but registrations are closed on this particular instance. You "
"can, however, find a different one."
msgstr ""
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
msgstr "المعذرة، لاكن التسجيل مغلق في هذا المثيل بالدات. يمكنك إجاد مثيل آخر للتسجيل."
msgid "{0}'s subscribers"
msgstr "{0} مشتركين"
msgstr ""
msgid "Edit your account"
msgstr "تعديل حسابك"
@@ -850,15 +888,16 @@ 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 "تحميل صورة رمزية"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr ""
msgstr "الاسم المعروض"
msgid "Summary"
msgstr "الملخص"
@@ -873,7 +912,7 @@ msgid "Delete your account"
msgstr "احذف حسابك"
msgid "Sorry, but as an admin, you can't leave your own instance."
msgstr "المعذرة ولاكن كمدير لايمكنك مغادرة مثيلك الخاص."
msgstr ""
msgid "Your Dashboard"
msgstr "لوح المراقبة"
@@ -882,7 +921,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 "انشئ مدونة جديدة"
@@ -906,10 +945,12 @@ 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 "إقرأ القواعد بالتفصيل"
@@ -935,16 +976,20 @@ msgstr "رد"
msgid "Delete this comment"
msgstr "احذف هذا التعليق"
#, fuzzy
msgid "I'm from this instance"
msgstr "أنا أنتمي إلى مثيل الخادم هذا"
msgstr "عن مثيل الخادوم هذا"
msgid "I'm from another instance"
msgstr "أنا أنتمي إلى مثيل خادم آخر"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr ""
#, fuzzy
msgid "Continue to your instance"
msgstr "واصل إلى مثيل خادمك"
msgstr "إعداد مثيل الخادم"
#~ msgid "Delete this article"
#~ msgstr "احذف هذا المقال"
+302 -266
View File
File diff suppressed because it is too large Load Diff
+162 -127
View File
@@ -3,99 +3,100 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 20:49\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Catalan\n"
"Language: ca_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: ca\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr ""
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr ""
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "A {0} li ha agradat el vostre article."
msgstr "A {0} lha agradat el vostre article."
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "{0} us ha esmentat."
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr ""
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr ""
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
msgstr "Per a crear un blog nou, heu diniciar una sessió"
msgstr ""
# src/routes/blogs.rs:106
# src/routes/blogs.rs:109
msgid "A blog with the same name already exists."
msgstr "Ja existeix un blog amb el mateix nom."
msgstr ""
# src/routes/blogs.rs:141
# src/routes/blogs.rs:142
msgid "Your blog was successfully created!"
msgstr "Sha creat el vostre blog correctament."
msgstr ""
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr "Sha suprimit el vostre blog."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr ""
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr ""
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
msgid "You can't use this media as a blog icon."
msgstr ""
# src/routes/blogs.rs:281
# src/routes/blogs.rs:280
msgid "You can't use this media as a blog banner."
msgstr ""
# src/routes/blogs.rs:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr "Sha actualitzat la informació del vostre blog."
msgstr ""
# src/routes/comments.rs:97
msgid "Your comment has been posted."
msgstr "Sha publicat el vostre comentari."
msgstr ""
# src/routes/comments.rs:172
msgid "Your comment has been deleted."
msgstr "Sha suprimit el vostre comentari."
msgstr ""
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr ""
@@ -103,11 +104,11 @@ msgstr ""
msgid "To like a post, you need to be logged in"
msgstr ""
# src/routes/medias.rs:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr ""
# src/routes/medias.rs:146
# src/routes/medias.rs:145
msgid "You are not allowed to delete this media."
msgstr ""
@@ -115,11 +116,11 @@ msgstr ""
msgid "Your avatar has been updated."
msgstr ""
# src/routes/medias.rs:168
# src/routes/medias.rs:156
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 ""
@@ -131,75 +132,78 @@ msgstr ""
msgid "To write a new post, you need to be logged in"
msgstr ""
# src/routes/posts.rs:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr ""
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "Apunt nou"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "Edita {0}"
msgstr ""
# src/routes/posts.rs:260
# src/routes/posts.rs:264
msgid "You are not allowed to publish on this blog."
msgstr ""
# src/routes/posts.rs:350
msgid "Your article has been updated."
msgstr "Sha actualitzat el vostre article."
msgstr ""
# src/routes/posts.rs:532
msgid "Your article has been saved."
msgstr "Sha desat el vostre article."
msgstr ""
# src/routes/posts.rs:538
msgid "New article"
msgstr "Article nou"
# src/routes/posts.rs:572
# src/routes/posts.rs:565
msgid "You are not allowed to delete this article."
msgstr ""
# src/routes/posts.rs:597
msgid "Your article has been deleted."
msgstr "Sha suprimit el vostre article."
# src/routes/posts.rs:602
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
msgstr ""
# src/routes/posts.rs:642
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
# src/routes/posts.rs:593
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 ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
msgstr ""
# src/routes/session.rs:112
# src/routes/session.rs:108
msgid "You are now connected."
msgstr ""
# src/routes/session.rs:131
# src/routes/session.rs:124
msgid "You are now logged off."
msgstr ""
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "Reinicialització de contrasenya"
# src/routes/session.rs:189
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr ""
# src/routes/session.rs:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr "Sha reinicialitzat la vostra contrasenya correctament."
msgstr ""
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr ""
@@ -211,15 +215,15 @@ msgstr ""
msgid "You are no longer following {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr ""
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr ""
@@ -231,16 +235,18 @@ msgstr ""
msgid "Your account has been deleted."
msgstr ""
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr ""
# src/routes/user.rs:527
msgid "Your account has been created. Now you just need to log in, before you can use it."
msgid ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
@@ -256,7 +262,7 @@ msgid "You are not authorized."
msgstr ""
msgid "Page not found"
msgstr "No sha trobat la pàgina"
msgstr ""
msgid "We couldn't find this page."
msgstr ""
@@ -273,7 +279,10 @@ 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 "Articles tagged \"{0}\""
@@ -288,11 +297,10 @@ msgstr "Blog nou"
msgid "Create a blog"
msgstr "Crea un blog"
# src/template_utils.rs:251
msgid "Title"
msgstr "Títol"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "Opcional"
@@ -308,17 +316,18 @@ msgstr "Descripció"
msgid "Markdown syntax is supported"
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"
msgstr ""
msgid "Blog icon"
msgstr "Icona del blog"
msgstr ""
msgid "Blog banner"
msgstr "Bàner del blog"
msgstr ""
msgid "Update blog"
msgstr "Actualitza el blog"
@@ -327,7 +336,7 @@ msgid "Danger zone"
msgstr ""
msgid "Be very careful, any action taken here can't be reversed."
msgstr "Aneu amb compte: les accions que són ací no es poden desfer."
msgstr ""
msgid "Permanently delete this blog"
msgstr "Suprimeix permanentment aquest blog"
@@ -349,14 +358,17 @@ msgstr "Darrers articles"
msgid "No posts to see here yet."
msgstr "Encara no hi ha cap apunt."
#, fuzzy
msgid "Search result(s) for \"{0}\""
msgstr ""
msgstr "Resultats de la cerca «{0}»"
#, fuzzy
msgid "Search result(s)"
msgstr ""
msgstr "Resultats de la cerca"
#, fuzzy
msgid "No results for your query"
msgstr ""
msgstr "La vostra consulta no ha produït cap resultat"
msgid "No more results for your query"
msgstr ""
@@ -370,68 +382,69 @@ msgstr ""
msgid "Advanced search"
msgstr "Cerca avançada"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr ""
msgid "Subtitle - byline"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr ""
msgid "Body content"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr "A partir daquesta data"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr ""
msgid "Tags"
msgstr "Etiquetes"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr ""
msgid "Instance domain"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr ""
#, fuzzy
msgid "Author(s)"
msgstr ""
msgstr "Autors"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr ""
msgid "Blog title"
msgstr "Títol del blog"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr "Escrit en aquesta llengua"
msgid "Language"
msgstr "Llengua"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr "Publicat segons aquesta llicència"
@@ -453,28 +466,30 @@ msgstr "Publica"
msgid "Classic editor (any changes will be lost)"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Subtitle"
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."
msgid ""
"You can upload media to your gallery, and then copy their Markdown code into "
"your articles to insert them."
msgstr ""
msgid "Upload media"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr ""
@@ -524,7 +539,9 @@ 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 "Unsubscribe"
@@ -536,7 +553,7 @@ msgstr ""
msgid "Comments"
msgstr "Comentaris"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr ""
@@ -550,7 +567,7 @@ msgid "No comments yet. Be the first to react!"
msgstr ""
msgid "Are you sure?"
msgstr "Nesteu segur?"
msgstr ""
msgid "Delete"
msgstr "Suprimeix"
@@ -634,13 +651,13 @@ msgid "About this instance"
msgstr "Quant a aquesta instància"
msgid "Privacy policy"
msgstr "Política de privadesa"
msgstr ""
msgid "Administration"
msgstr "Administració"
msgid "Documentation"
msgstr "Documentació"
msgstr ""
msgid "Source code"
msgstr "Codi font"
@@ -681,7 +698,7 @@ msgstr ""
msgid "Administration of {0}"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "Nom"
@@ -689,29 +706,29 @@ msgid "Allow anyone to register here"
msgstr ""
msgid "Short description"
msgstr "Descripció breu"
msgstr ""
msgid "Long description"
msgstr "Descripció extensa"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr "Llicència per defecte dels articles"
msgstr ""
msgid "Save these settings"
msgstr "Desa aquests paràmetres"
msgstr ""
msgid "About {0}"
msgstr "Quant a {0}"
msgid "Runs Plume {0}"
msgstr "Funciona amb el Plume {0}"
msgstr ""
msgid "Home to <em>{0}</em> people"
msgstr "Llar de <em>{0}</em> persones"
msgstr ""
msgid "Who wrote <em>{0}</em> articles"
msgstr "Les quals han escrit <em>{0}</em> articles"
msgstr ""
msgid "And are connected to <em>{0}</em> other instances"
msgstr ""
@@ -719,13 +736,21 @@ msgstr ""
msgid "Administred by"
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 "Welcome to {}"
@@ -740,11 +765,11 @@ msgstr "Bloca"
msgid "Reset your password"
msgstr "Reinicialitza la contrasenya"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr "Contrasenya nova"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr "Confirmació"
@@ -752,19 +777,19 @@ msgid "Update password"
msgstr "Actualitza la contrasenya"
msgid "Log in"
msgstr "Inicia una sessió"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr "Nom dusuari o adreça electrònica"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "Contrasenya"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr ""
msgstr "Adreça electrónica"
msgid "Send password reset link"
msgstr ""
@@ -772,7 +797,9 @@ msgstr ""
msgid "Check your inbox!"
msgstr "Reviseu la vostra safata dentrada."
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 "Admin"
@@ -814,19 +841,21 @@ msgstr ""
msgid "Create an account"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "Nom dusuari"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "Adreça electrònica"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password confirmation"
msgstr ""
msgstr "Confirmació de la contrasenya"
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 subscribers"
@@ -838,13 +867,14 @@ msgstr ""
msgid "Your Profile"
msgstr "El vostre 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 ""
msgid "Upload an avatar"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr ""
@@ -896,7 +926,9 @@ 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"
@@ -923,16 +955,19 @@ msgstr ""
msgid "Delete this comment"
msgstr "Suprimeix aquest comentari"
#, fuzzy
msgid "I'm from this instance"
msgstr ""
msgstr "Quant a aquesta instància"
msgid "I'm from another instance"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr ""
msgid "Continue to your instance"
msgstr ""
#~ msgid "Delete this article"
#~ msgstr "Suprimeix aquest article"
+221 -156
View File
@@ -3,203 +3,214 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-18 19:40\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Czech\n"
"Language: cs_CZ\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>=2 && n<=4) ? 1 : 3;\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: cs\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr "{0} komentoval/a váš článek."
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr "{0} vás odebírá."
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "{0} si oblíbil/a váš článek."
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "{0} vás zmínil/a."
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr "{0} povýšil/a váš článek."
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr "Avatar uživatele {0}"
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
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:106
# 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:141
# src/routes/session.rs:259
#, fuzzy
msgid "Your blog was successfully created!"
msgstr "Váš blog byl úspěšně vytvořen!"
msgstr "Vaše heslo bylo úspěšně obnoveno."
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr "Váš blog byl smazán."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr "Nemáte oprávnění zmazat tento blog."
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr "Nemáte oprávnění upravovat tento blog."
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
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:281
# src/routes/blogs.rs:280
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:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr "Údaje o vašem blogu byly aktualizovány."
msgstr ""
# src/routes/comments.rs:97
#, fuzzy
msgid "Your comment has been posted."
msgstr "Váš komentář byl zveřejněn."
msgstr "Zatím nemáte nahrané žádné média."
# src/routes/comments.rs:172
#, fuzzy
msgid "Your comment has been deleted."
msgstr "Váš komentář byl odstraněn."
msgstr "Zatím nemáte nahrané žádné média."
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr "Nastavení instance bylo uloženo."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr "{} byl/a odblokován/a."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr "{} byl/a zablokován/a."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr "{} byl/a zabanován/a."
msgstr ""
# src/routes/likes.rs:51
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:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr "Vaše média byla smazána."
msgstr ""
# src/routes/medias.rs:146
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr "Nemáte oprávnění k smazání tohoto média."
msgstr "Nemáte oprávnění zmazat tento blog."
# src/routes/medias.rs:163
#, fuzzy
msgid "Your avatar has been updated."
msgstr "Váš avatar byl aktualizován."
msgstr "Zatím nemáte nahrané žádné média."
# src/routes/medias.rs:168
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to use this media."
msgstr "Nemáte oprávnění k použití tohoto média."
msgstr "Nemáte oprávnění upravovat tento blog."
# 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:93
msgid "This post isn't published yet."
msgstr "Tento příspěvek ještě není zveřejněn."
msgstr "Tento příspěvek ještě není publikován."
# src/routes/posts.rs:122
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:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr "Nejste autorem tohto blogu."
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "Nový příspěvek"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "Upravit {0}"
# src/routes/posts.rs:260
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr "Nemáte oprávnění zveřejňovat na tomto blogu."
msgstr "Nemáte oprávnění upravovat tento blog."
# src/routes/posts.rs:350
#, fuzzy
msgid "Your article has been updated."
msgstr "Váš článek byl upraven."
msgstr "Zatím nemáte nahrané žádné média."
# src/routes/posts.rs:532
#, fuzzy
msgid "Your article has been saved."
msgstr "Váš článek byl uložen."
msgstr "Zatím nemáte nahrané žádné média."
# src/routes/posts.rs:538
msgid "New article"
msgstr "Nový článek"
# src/routes/posts.rs:572
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr "Nemáte oprávnění zmazat tento článek."
msgstr "Nemáte oprávnění zmazat tento blog."
# src/routes/posts.rs:597
#, fuzzy
msgid "Your article has been deleted."
msgstr "Váš článek byl smazán."
msgstr "Zatím nemáte nahrané žádné média."
# src/routes/posts.rs:602
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:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
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:630
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:51
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:112
#, fuzzy
msgid "You are now connected."
msgstr "Nyní jste připojeni."
msgstr "Nemáte oprávnění."
# src/routes/session.rs:131
#, fuzzy
msgid "You are now logged off."
msgstr "Nyní jste odhlášeni."
msgstr "Nemáte oprávnění."
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "Obnovit heslo"
# src/routes/session.rs:189
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr "Zde je odkaz na obnovení vášho hesla: {0}"
# src/routes/session.rs:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr "Vaše heslo bylo úspěšně obnoveno."
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr "Omlouváme se, ale odkaz vypršel. Zkuste to znovu"
@@ -209,39 +220,41 @@ msgstr "Pro přístup k vaší nástěnce musíte být přihlášen/a"
# src/routes/user.rs:158
msgid "You are no longer following {}."
msgstr "Již nenásledujete {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr "Teď již nenásledujete {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
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:356
# src/routes/user.rs:344
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:398
#, fuzzy
msgid "Your profile has been updated."
msgstr "Váš profil byl upraven."
msgstr "Zatím nemáte nahrané žádné média."
# src/routes/user.rs:425
#, fuzzy
msgid "Your account has been deleted."
msgstr "Váš účet byl odstraněn."
msgstr "Zatím nemáte nahrané žádné média."
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr "Nemůžete smazat účet někoho jiného."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr "Registrace jsou na téhle instanci uzavřeny."
msgstr ""
# src/routes/user.rs:527
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 ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
msgstr "Vnitřní chyba serveru"
@@ -273,8 +286,14 @@ msgstr "Možná to bylo příliš dlouhé."
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 "Articles tagged \"{0}\""
msgstr "Články pod štítkem \"{0}\""
@@ -288,11 +307,10 @@ msgstr "Nový Blog"
msgid "Create a blog"
msgstr "Vytvořit blog"
# src/template_utils.rs:251
msgid "Title"
msgstr "Nadpis"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "Nepovinné"
@@ -308,8 +326,11 @@ msgstr "Popis"
msgid "Markdown syntax is supported"
msgstr "Markdown syntaxe je podporována"
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"
@@ -327,13 +348,14 @@ msgid "Danger zone"
msgstr "Nebezpečná zóna"
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 "Permanently delete this blog"
msgstr "Trvale smazat tento blog"
msgid "{}'s icon"
msgstr "Ikona pro {0}"
msgstr ""
msgid "Edit"
msgstr "Upravit"
@@ -351,14 +373,17 @@ msgstr "Nejposlednejší články"
msgid "No posts to see here yet."
msgstr "Ještě zde nejsou k vidění žádné příspěvky."
#, fuzzy
msgid "Search result(s) for \"{0}\""
msgstr "Výsledky hledání pro \"{0}\""
#, fuzzy
msgid "Search result(s)"
msgstr "Výsledky hledání"
msgstr "Výsledek hledání"
#, fuzzy
msgid "No results for your query"
msgstr "Žádné výsledky pro váš dotaz nenalzeny"
msgstr "Žádný výsledek nenalzen pro váš dotaz"
msgid "No more results for your query"
msgstr "Žádné další výsledeky pro váše zadaní"
@@ -372,70 +397,71 @@ msgstr "Váš dotaz"
msgid "Advanced search"
msgstr "Pokročilé vyhledávání"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr "Nadpis článku odpovídající těmto slovům"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr "Podnadpis odpovídající těmto slovům"
msgid "Subtitle - byline"
msgstr "Podnadpis"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr "Obsah odpovídající těmto slovům"
msgid "Body content"
msgstr "Tělo článku"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr "Od tohoto data"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr "Do tohoto data"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr "Obsahuje tyto štítky"
msgid "Tags"
msgstr "Tagy"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr "Zveřejněno na jedné z těchto instancí"
msgid "Instance domain"
msgstr "Doména instance"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr "Zveřejněno na jedném z těchto autorů"
#, fuzzy
msgid "Author(s)"
msgstr "Autoři"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr "Zveřejněno na jedném z těchto blogů"
msgid "Blog title"
msgstr "Název blogu"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr "Napsané v tomto jazyce"
msgid "Language"
msgstr "Jazyk"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr "Zveřejněn pod touto licenci"
msgstr "Publikováno pod touto licenci"
msgid "Article license"
msgstr "Licence článku"
@@ -455,45 +481,49 @@ msgstr "Zveřejnit"
msgid "Classic editor (any changes will be lost)"
msgstr "Klasický editor (jakékoli změny budou ztraceny)"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Subtitle"
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"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr "Štítky, oddělené čárkami"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr "Licence"
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr "Ponechte prázdné, pro vyhrazení všech práv"
msgstr "Nechte políčko prázdné pro vyhrazení všech práv"
msgid "Illustration"
msgstr "Ilustrace"
msgid "This is a draft, don't publish it yet."
msgstr "Tohle je koncept, ještě ho nezveřejňovat."
msgstr "Tohle je koncept, neveřejnit ho ještě."
msgid "Update"
msgstr "Aktualizovat"
msgid "Update, or publish"
msgstr "Aktualizovat, nebo zveřejnit"
msgstr "Aktualizovat, nebo publikovat"
msgid "Publish your post"
msgstr "Zveřejnit váš příspěvek"
msgstr "Publikovat svůj příspěvek"
msgid "Written by {0}"
msgstr "Napsal/a {0}"
@@ -515,7 +545,7 @@ msgid "I don't like this anymore"
msgstr "Tohle se mi už nelíbí"
msgid "Add yours"
msgstr "Přidejte své"
msgstr "Přidejte váš"
msgid "One boost"
msgid_plural "{0} boosts"
@@ -530,8 +560,12 @@ 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 "Unsubscribe"
msgstr "Odhlásit se z odběru"
@@ -542,7 +576,7 @@ msgstr "Přihlásit se k odběru"
msgid "Comments"
msgstr "Komentáře"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr "Varování o obsahu"
@@ -562,10 +596,10 @@ msgid "Delete"
msgstr "Smazat"
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 ""
msgid "Only you and other authors can edit this article."
msgstr "Jenom vy, a další autoři mohou upravovat tento článek."
msgstr ""
msgid "Media upload"
msgstr "Nahrávaní médií"
@@ -574,7 +608,7 @@ msgid "Useful for visually impaired people, as well as licensing information"
msgstr "Užitečné pro zrakově postižené lidi a také pro informace o licencování"
msgid "Leave it empty, if none is needed"
msgstr "Ponechte prázdne, pokud žádné není potřeba"
msgstr "Ponechat prázdne, pokud žádná není potřeb"
msgid "File"
msgstr "Soubor"
@@ -640,13 +674,13 @@ msgid "About this instance"
msgstr "O této instanci"
msgid "Privacy policy"
msgstr "Zásady soukromí"
msgstr ""
msgid "Administration"
msgstr "Správa"
msgid "Documentation"
msgstr "Dokumentace"
msgstr ""
msgid "Source code"
msgstr "Zdrojový kód"
@@ -667,7 +701,7 @@ msgid "Nothing to see here yet. Try subscribing to more people."
msgstr "Ještě tu nic není k vidění. Zkuste odebírat obsah od více lidí."
msgid "Articles from {}"
msgstr "Články od {}"
msgstr "Články z {}"
msgid "All the articles of the Fediverse"
msgstr "Všechny články Fediversa"
@@ -687,7 +721,7 @@ msgstr "Zakázat"
msgid "Administration of {0}"
msgstr "Správa {0}"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "Pojmenování"
@@ -700,7 +734,7 @@ msgstr "Stručný popis"
msgid "Long description"
msgstr "Detailní popis"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr "Výchozí licence článků"
@@ -725,14 +759,22 @@ msgstr "A jsou napojeni na <em>{0}</em> dalších instancí"
msgid "Administred by"
msgstr "Správcem je"
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 ""
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 ""
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 ""
msgid "Welcome to {}"
msgstr "Vítejte na {}"
@@ -746,11 +788,11 @@ msgstr "Blokovat"
msgid "Reset your password"
msgstr "Obnovte své heslo"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr "Nové heslo"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr "Potvrzení"
@@ -760,15 +802,15 @@ msgstr "Aktualizovat heslo"
msgid "Log in"
msgstr "Přihlásit se"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr "Uživatelské jméno, nebo email"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "Heslo"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr "E-mail"
@@ -778,8 +820,12 @@ msgstr "Poslat odkaz na obnovení hesla"
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 "Admin"
msgstr "Administrátor"
@@ -796,9 +842,11 @@ msgstr "Otevřít na {0}"
msgid "Follow {}"
msgstr "Následovat {}"
#, fuzzy
msgid "Log in to follow"
msgstr "Pro následování se přihlášte"
#, fuzzy
msgid "Enter your full username handle to follow"
msgstr "Pro následovaní zadejte své úplné uživatelské jméno"
@@ -820,20 +868,24 @@ msgstr "Vytvořit váš účet"
msgid "Create an account"
msgstr "Vytvořit účet"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "Uživatelské jméno"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "Email"
# src/template_utils.rs:251
# src/template_utils.rs:217
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 subscribers"
msgstr "Odběratelé uživatele {0}"
@@ -844,13 +896,16 @@ 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"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr "Zobrazované jméno"
@@ -861,13 +916,15 @@ msgid "Update account"
msgstr "Aktualizovat účet"
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 "Your Dashboard"
msgstr "Vaše nástěnka"
@@ -876,7 +933,9 @@ 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"
@@ -902,8 +961,12 @@ 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"
@@ -935,10 +998,12 @@ msgstr "Jsem z téhle instance"
msgid "I'm from another instance"
msgstr "Jsem z jiné instance"
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr "Příklad: user@plu.me"
msgid "Continue to your instance"
msgstr "Pokračujte na vaši instanci"
#~ msgid "Delete this article"
#~ msgstr "Vymazat tento článek"
+420 -551
View File
File diff suppressed because it is too large Load Diff
+286 -220
View File
File diff suppressed because it is too large Load Diff
+420 -551
View File
File diff suppressed because it is too large Load Diff
+116 -89
View File
@@ -3,75 +3,76 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 20:49\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: English\n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: en\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr ""
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr ""
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr ""
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr ""
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr ""
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr ""
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
msgstr ""
# src/routes/blogs.rs:106
# src/routes/blogs.rs:109
msgid "A blog with the same name already exists."
msgstr ""
# src/routes/blogs.rs:141
# src/routes/blogs.rs:142
msgid "Your blog was successfully created!"
msgstr ""
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr ""
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr ""
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
msgid "You can't use this media as a blog icon."
msgstr ""
# src/routes/blogs.rs:281
# src/routes/blogs.rs:280
msgid "You can't use this media as a blog banner."
msgstr ""
# src/routes/blogs.rs:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr ""
@@ -83,19 +84,19 @@ msgstr ""
msgid "Your comment has been deleted."
msgstr ""
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr ""
@@ -103,11 +104,11 @@ msgstr ""
msgid "To like a post, you need to be logged in"
msgstr ""
# src/routes/medias.rs:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr ""
# src/routes/medias.rs:146
# src/routes/medias.rs:145
msgid "You are not allowed to delete this media."
msgstr ""
@@ -115,11 +116,11 @@ msgstr ""
msgid "Your avatar has been updated."
msgstr ""
# src/routes/medias.rs:168
# src/routes/medias.rs:156
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 ""
@@ -131,19 +132,19 @@ msgstr ""
msgid "To write a new post, you need to be logged in"
msgstr ""
# src/routes/posts.rs:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr ""
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr ""
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr ""
# src/routes/posts.rs:260
# src/routes/posts.rs:264
msgid "You are not allowed to publish on this blog."
msgstr ""
@@ -155,11 +156,10 @@ msgstr ""
msgid "Your article has been saved."
msgstr ""
# src/routes/posts.rs:538
msgid "New article"
msgstr ""
# src/routes/posts.rs:572
# src/routes/posts.rs:565
msgid "You are not allowed to delete this article."
msgstr ""
@@ -167,39 +167,43 @@ msgstr ""
msgid "Your article has been deleted."
msgstr ""
# src/routes/posts.rs:602
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
# src/routes/posts.rs:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
# src/routes/posts.rs:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
msgstr ""
# src/routes/session.rs:112
# src/routes/session.rs:108
msgid "You are now connected."
msgstr ""
# src/routes/session.rs:131
# src/routes/session.rs:124
msgid "You are now logged off."
msgstr ""
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr ""
# src/routes/session.rs:189
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr ""
# src/routes/session.rs:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr ""
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr ""
@@ -211,15 +215,15 @@ msgstr ""
msgid "You are no longer following {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr ""
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr ""
@@ -231,16 +235,18 @@ msgstr ""
msgid "Your account has been deleted."
msgstr ""
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr ""
# src/routes/user.rs:527
msgid "Your account has been created. Now you just need to log in, before you can use it."
msgid ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
@@ -273,7 +279,10 @@ 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 "Articles tagged \"{0}\""
@@ -288,11 +297,10 @@ msgstr ""
msgid "Create a blog"
msgstr ""
# src/template_utils.rs:251
msgid "Title"
msgstr ""
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr ""
@@ -308,7 +316,8 @@ msgstr ""
msgid "Markdown syntax is supported"
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"
@@ -370,68 +379,68 @@ msgstr ""
msgid "Advanced search"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr ""
msgid "Subtitle - byline"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr ""
msgid "Body content"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr ""
msgid "Tags"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr ""
msgid "Instance domain"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr ""
msgid "Author(s)"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr ""
msgid "Blog title"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr ""
msgid "Language"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr ""
@@ -453,28 +462,30 @@ msgstr ""
msgid "Classic editor (any changes will be lost)"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
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."
msgid ""
"You can upload media to your gallery, and then copy their Markdown code into "
"your articles to insert them."
msgstr ""
msgid "Upload media"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr ""
@@ -524,7 +535,9 @@ 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 "Unsubscribe"
@@ -536,7 +549,7 @@ msgstr ""
msgid "Comments"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr ""
@@ -681,7 +694,7 @@ msgstr ""
msgid "Administration of {0}"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr ""
@@ -694,7 +707,7 @@ msgstr ""
msgid "Long description"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr ""
@@ -719,13 +732,21 @@ msgstr ""
msgid "Administred by"
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 "Welcome to {}"
@@ -740,11 +761,11 @@ msgstr ""
msgid "Reset your password"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr ""
@@ -754,15 +775,15 @@ msgstr ""
msgid "Log in"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr ""
@@ -772,7 +793,9 @@ 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 "Admin"
@@ -814,19 +837,21 @@ msgstr ""
msgid "Create an account"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password confirmation"
msgstr ""
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
msgid ""
"Apologies, but registrations are closed on this particular instance. You "
"can, however, find a different one."
msgstr ""
msgid "{0}'s subscribers"
@@ -838,13 +863,14 @@ 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"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr ""
@@ -896,7 +922,9 @@ 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"
@@ -929,10 +957,9 @@ msgstr ""
msgid "I'm from another instance"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr ""
msgid "Continue to your instance"
msgstr ""
+129 -97
View File
@@ -3,75 +3,76 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 20:49\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Esperanto\n"
"Language: eo_UY\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: eo\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr ""
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr ""
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "{0} ŝatis vian artikolon."
msgstr ""
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr ""
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr ""
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr ""
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
msgstr ""
# src/routes/blogs.rs:106
# src/routes/blogs.rs:109
msgid "A blog with the same name already exists."
msgstr ""
# src/routes/blogs.rs:141
# src/routes/blogs.rs:142
msgid "Your blog was successfully created!"
msgstr ""
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr ""
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr "Vi ne estas permesita redakti ĉi tiun blogon."
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
msgid "You can't use this media as a blog icon."
msgstr ""
# src/routes/blogs.rs:281
# src/routes/blogs.rs:280
msgid "You can't use this media as a blog banner."
msgstr ""
# src/routes/blogs.rs:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr ""
@@ -83,19 +84,19 @@ msgstr ""
msgid "Your comment has been deleted."
msgstr ""
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr ""
@@ -103,23 +104,25 @@ msgstr ""
msgid "To like a post, you need to be logged in"
msgstr ""
# src/routes/medias.rs:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr ""
# src/routes/medias.rs:146
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr ""
msgstr "Vi ne estas permesita redakti ĉi tiun blogon."
# src/routes/medias.rs:163
msgid "Your avatar has been updated."
msgstr ""
# src/routes/medias.rs:168
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to use this media."
msgstr ""
msgstr "Vi ne estas permesita redakti ĉi tiun blogon."
# src/routes/notifications.rs:28
# src/routes/notifications.rs:29
msgid "To see your notifications, you need to be logged in"
msgstr ""
@@ -131,22 +134,23 @@ 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:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr "Vi ne estas la verkisto de ĉi tiu blogo."
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "Nova skribaĵo"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "Ŝanĝo {0}"
# src/routes/posts.rs:260
msgid "You are not allowed to publish on this blog."
msgstr ""
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr "Vi ne estas permesita redakti ĉi tiun blogon."
# src/routes/posts.rs:350
msgid "Your article has been updated."
msgstr ""
@@ -155,51 +159,55 @@ msgstr ""
msgid "Your article has been saved."
msgstr ""
# src/routes/posts.rs:538
msgid "New article"
msgstr ""
# src/routes/posts.rs:572
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr ""
msgstr "Vi ne estas permesita redakti ĉi tiun blogon."
# src/routes/posts.rs:597
msgid "Your article has been deleted."
msgstr ""
# src/routes/posts.rs:602
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
# src/routes/posts.rs:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
# src/routes/posts.rs:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
msgstr ""
# src/routes/session.rs:112
# src/routes/session.rs:108
msgid "You are now connected."
msgstr ""
# src/routes/session.rs:131
# src/routes/session.rs:124
msgid "You are now logged off."
msgstr ""
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr ""
# src/routes/session.rs:189
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr ""
# src/routes/session.rs:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr ""
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr ""
@@ -211,15 +219,15 @@ msgstr ""
msgid "You are no longer following {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr ""
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr ""
@@ -231,16 +239,18 @@ msgstr ""
msgid "Your account has been deleted."
msgstr ""
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr ""
# src/routes/user.rs:527
msgid "Your account has been created. Now you just need to log in, before you can use it."
msgid ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
@@ -273,7 +283,10 @@ msgstr "Eble ĝi estis tro longa."
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 "Articles tagged \"{0}\""
@@ -288,11 +301,10 @@ msgstr ""
msgid "Create a blog"
msgstr ""
# src/template_utils.rs:251
msgid "Title"
msgstr ""
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr ""
@@ -308,7 +320,8 @@ msgstr ""
msgid "Markdown syntax is supported"
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"
@@ -370,68 +383,69 @@ msgstr ""
msgid "Advanced search"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr ""
msgid "Subtitle - byline"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr ""
msgid "Body content"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr ""
msgid "Tags"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr ""
msgid "Instance domain"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr ""
#, fuzzy
msgid "Author(s)"
msgstr ""
msgstr "Verkistoj"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr ""
msgid "Blog title"
msgstr "Blogtitolo"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr ""
msgid "Language"
msgstr "Lingvo"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr "Eldonita sub ĉi tiu permesilo"
@@ -453,28 +467,30 @@ msgstr "Eldoni"
msgid "Classic editor (any changes will be lost)"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
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."
msgid ""
"You can upload media to your gallery, and then copy their Markdown code into "
"your articles to insert them."
msgstr ""
msgid "Upload media"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr ""
@@ -524,7 +540,9 @@ 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 "Unsubscribe"
@@ -536,7 +554,7 @@ msgstr "Aboni"
msgid "Comments"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr ""
@@ -681,7 +699,7 @@ msgstr ""
msgid "Administration of {0}"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr ""
@@ -694,7 +712,7 @@ msgstr ""
msgid "Long description"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr ""
@@ -719,13 +737,21 @@ msgstr ""
msgid "Administred by"
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 "Welcome to {}"
@@ -740,11 +766,11 @@ msgstr ""
msgid "Reset your password"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr ""
@@ -754,15 +780,15 @@ msgstr ""
msgid "Log in"
msgstr "Ensaluti"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "Pasvorto"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr ""
@@ -772,7 +798,9 @@ 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 "Admin"
@@ -814,19 +842,21 @@ msgstr ""
msgid "Create an account"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "Uzantnomo"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "Retpoŝtadreso"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password confirmation"
msgstr ""
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
msgid ""
"Apologies, but registrations are closed on this particular instance. You "
"can, however, find a different one."
msgstr ""
msgid "{0}'s subscribers"
@@ -838,13 +868,14 @@ msgstr ""
msgid "Your Profile"
msgstr "Via profilo"
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"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr ""
@@ -896,7 +927,9 @@ 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"
@@ -929,10 +962,9 @@ msgstr ""
msgid "I'm from another instance"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr ""
msgid "Continue to your instance"
msgstr ""
+214 -153
View File
@@ -3,99 +3,101 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 20:49\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Spanish\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: es-ES\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr "{0} ha comentado su artículo."
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr "{0} esta suscrito a tí."
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "A {0} le gustó tu artículo."
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "{0} te ha mencionado."
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr "{0} compartió su artículo."
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
msgstr "Para crear un nuevo blog, necesita estar logueado"
# src/routes/blogs.rs:106
# src/routes/blogs.rs:109
msgid "A blog with the same name already exists."
msgstr "Ya existe un blog con el mismo nombre."
msgstr ""
# src/routes/blogs.rs:141
# src/routes/session.rs:259
#, fuzzy
msgid "Your blog was successfully created!"
msgstr "¡Tu blog se ha creado satisfactoriamente!"
msgstr "Su contraseña se ha restablecido correctamente."
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr "Tu blog fue eliminado."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr "No está autorizado a eliminar este registro."
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr "No tiene permiso para editar este blog."
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
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:281
# src/routes/blogs.rs:280
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:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr "La información de tu blog ha sido actualizada."
msgstr ""
# src/routes/comments.rs:97
#, fuzzy
msgid "Your comment has been posted."
msgstr "Se ha publicado el comentario."
msgstr "Todavía no tiene ningún medio."
# src/routes/comments.rs:172
#, fuzzy
msgid "Your comment has been deleted."
msgstr "Se ha eliminado el comentario."
msgstr "Todavía no tiene ningún medio."
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr "Se han guardado los ajustes de la instancia."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr ""
@@ -103,23 +105,25 @@ msgstr ""
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:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr ""
# src/routes/medias.rs:146
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr ""
msgstr "No está autorizado a eliminar este registro."
# src/routes/medias.rs:163
#, fuzzy
msgid "Your avatar has been updated."
msgstr ""
msgstr "Todavía no tiene ningún medio."
# src/routes/medias.rs:168
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to use this media."
msgstr ""
msgstr "No tiene permiso para editar este blog."
# 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"
@@ -131,77 +135,82 @@ msgstr "Esta publicación aún no está publicada."
msgid "To write a new post, you need to be logged in"
msgstr "Para escribir un nuevo artículo, necesita estar logueado"
# src/routes/posts.rs:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr "No es un autor de este blog."
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "Nueva publicación"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "Editar {0}"
# src/routes/posts.rs:260
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr "No tienes permiso para publicar en este blog."
msgstr "No tiene permiso para editar este blog."
# src/routes/posts.rs:350
#, fuzzy
msgid "Your article has been updated."
msgstr "Se ha actualizado el artículo."
msgstr "Todavía no tiene ningún medio."
# src/routes/posts.rs:532
#, fuzzy
msgid "Your article has been saved."
msgstr "Se ha guardado el artículo."
msgstr "Todavía no tiene ningún medio."
# src/routes/posts.rs:538
msgid "New article"
msgstr "Nueva publicación"
# src/routes/posts.rs:572
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr "No tienes permiso para eliminar este artículo."
msgstr "No está autorizado a eliminar este registro."
# src/routes/posts.rs:597
#, fuzzy
msgid "Your article has been deleted."
msgstr "Se ha eliminado el artículo."
msgstr "Todavía no tiene ningún medio."
# src/routes/posts.rs:602
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:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
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:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
msgstr "Para compartir un artículo, necesita estar logueado"
# src/routes/session.rs:112
#, fuzzy
msgid "You are now connected."
msgstr "Ahora estás conectado."
msgstr "No está autorizado."
# src/routes/session.rs:131
#, fuzzy
msgid "You are now logged off."
msgstr "Ahora estás desconectado."
msgstr "No está autorizado."
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "Reiniciar contraseña"
# src/routes/session.rs:189
# src/routes/session.rs:182
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:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr "Su contraseña se ha restablecido correctamente."
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr ""
msgstr "Lo sentimos, pero el enlace expiró. Inténtalo de nuevo"
# src/routes/user.rs:136
msgid "To access your dashboard, you need to be logged in"
@@ -209,38 +218,40 @@ msgstr "Para acceder a su panel de control, necesita estar conectado"
# src/routes/user.rs:158
msgid "You are no longer following {}."
msgstr "Ya no estás siguiendo a {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr "Ahora estás siguiendo a {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr "Para suscribirse a alguien, necesita estar conectado"
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr "Para editar su perfil, necesita estar conectado"
# src/routes/user.rs:398
#, fuzzy
msgid "Your profile has been updated."
msgstr ""
msgstr "Todavía no tiene ningún medio."
# src/routes/user.rs:425
#, fuzzy
msgid "Your account has been deleted."
msgstr "Todavía no tiene ningún medio."
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr ""
# src/routes/user.rs:431
msgid "You can't delete someone else's account."
msgstr "No puedes eliminar la cuenta de otra persona."
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr "Los registros están cerrados en esta instancia."
msgstr ""
# src/routes/user.rs:527
msgid "Your account has been created. Now you just need to log in, before you can use it."
msgid ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
@@ -250,7 +261,8 @@ 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 "You are not authorized."
msgstr "No está autorizado."
@@ -273,8 +285,14 @@ msgstr "Quizás fue demasiado largo."
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 "Articles tagged \"{0}\""
msgstr "Artículos etiquetados \"{0}\""
@@ -288,11 +306,10 @@ msgstr "Nuevo Blog"
msgid "Create a blog"
msgstr "Crear un blog"
# src/template_utils.rs:251
msgid "Title"
msgstr "Título"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "Opcional"
@@ -308,8 +325,11 @@ msgstr "Descripción"
msgid "Markdown syntax is supported"
msgstr "Se puede utilizar la sintaxis Markdown"
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"
@@ -327,7 +347,9 @@ msgid "Danger zone"
msgstr "Zona de peligro"
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 "Permanently delete this blog"
msgstr "Eliminar permanentemente este blog"
@@ -349,14 +371,17 @@ msgstr "Últimas publicaciones"
msgid "No posts to see here yet."
msgstr "Ningún artículo aún."
#, fuzzy
msgid "Search result(s) for \"{0}\""
msgstr ""
msgstr "Resultado de búsqueda para \"{0}\""
#, fuzzy
msgid "Search result(s)"
msgstr ""
msgstr "Resultado de búsqueda"
#, fuzzy
msgid "No results for your query"
msgstr ""
msgstr "No hay resultado para su consulta"
msgid "No more results for your query"
msgstr "No hay más resultados para su consulta"
@@ -365,73 +390,74 @@ msgid "Search"
msgstr "Buscar"
msgid "Your query"
msgstr ""
msgstr "Su consulta"
msgid "Advanced search"
msgstr "Búsqueda avanzada"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr "Título del artículo que coincide con estas palabras"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr "Subtítulo que coincide con estas palabras"
msgid "Subtitle - byline"
msgstr ""
msgstr "Subtítulo - firma"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr ""
msgstr "Contenido que coincide con estas palabras"
msgid "Body content"
msgstr "Contenido"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr "Desde esta fecha"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr ""
msgstr "Hasta esta fecha"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr "Con estas etiquetas"
msgid "Tags"
msgstr "Etiquetas"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr "Publicado en una de estas instancias"
msgid "Instance domain"
msgstr "Dominio de instancia"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr "Publicado por uno de estos autores"
#, fuzzy
msgid "Author(s)"
msgstr ""
msgstr "Autores"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr "Publicado en uno de estos blogs"
msgid "Blog title"
msgstr "Título del blog"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr "Escrito en este idioma"
msgid "Language"
msgstr "Idioma"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr "Publicado bajo esta licencia"
@@ -453,30 +479,34 @@ msgstr "Publicar"
msgid "Classic editor (any changes will be lost)"
msgstr "Editor clásico (cualquier cambio estará perdido)"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Subtitle"
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"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr "Etiquetas, separadas por comas"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr "Licencia"
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr ""
msgstr "Dejar vacío para reservar todos los derechos"
msgid "Illustration"
msgstr "Ilustración"
@@ -524,7 +554,9 @@ 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"
msgid ""
"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this "
"article"
msgstr ""
msgid "Unsubscribe"
@@ -536,7 +568,7 @@ msgstr "Subscribirse"
msgid "Comments"
msgstr "Comentários"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr "Aviso de contenido"
@@ -565,7 +597,9 @@ msgid "Media upload"
msgstr "Subir medios"
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 "Leave it empty, if none is needed"
msgstr "Dejarlo vacío, si no se necesita nada"
@@ -658,13 +692,13 @@ msgid "Local feed"
msgstr "Feed local"
msgid "Nothing to see here yet. Try subscribing to more people."
msgstr ""
msgstr "Nada que ver aquí aún. Intente suscribirse a más personas."
msgid "Articles from {}"
msgstr ""
msgstr "Artículos de {}"
msgid "All the articles of the Fediverse"
msgstr ""
msgstr "Todos los artículos de la Fediverse"
msgid "Users"
msgstr "Usuarios"
@@ -681,7 +715,7 @@ msgstr "Banear"
msgid "Administration of {0}"
msgstr "Administración de {0}"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "Nombre"
@@ -689,12 +723,12 @@ msgid "Allow anyone to register here"
msgstr "Permite a cualquiera registrarse aquí"
msgid "Short description"
msgstr "Descripción corta"
msgstr ""
msgid "Long description"
msgstr "Descripción larga"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr "Licencia del artículo por defecto"
@@ -705,7 +739,7 @@ msgid "About {0}"
msgstr "Acerca de {0}"
msgid "Runs Plume {0}"
msgstr "Ejecuta Plume {0}"
msgstr "Ejecuta Pluma {0}"
msgid "Home to <em>{0}</em> people"
msgstr "Hogar de <em>{0}</em> usuarios"
@@ -719,13 +753,21 @@ msgstr "Y están conectados a <em>{0}</em> otras instancias"
msgid "Administred by"
msgstr "Administrado por"
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 "Welcome to {}"
@@ -740,11 +782,11 @@ msgstr "Bloquear"
msgid "Reset your password"
msgstr "Restablecer su contraseña"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr "Nueva contraseña"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr "Confirmación"
@@ -754,17 +796,17 @@ msgstr "Actualizar contraseña"
msgid "Log in"
msgstr "Iniciar sesión"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr "Nombre de usuario, o correo electrónico"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "Contraseña"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr ""
msgstr "Correo electrónico"
msgid "Send password reset link"
msgstr "Enviar enlace de restablecimiento de contraseña"
@@ -772,8 +814,12 @@ msgstr "Enviar enlace de restablecimiento de 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 "Admin"
msgstr "Administrador"
@@ -787,11 +833,13 @@ msgstr "Edita tu perfil"
msgid "Open on {0}"
msgstr "Abrir en {0}"
#, fuzzy
msgid "Follow {}"
msgstr ""
msgstr "Seguir"
#, fuzzy
msgid "Log in to follow"
msgstr ""
msgstr "Dejar de seguir"
msgid "Enter your full username handle to follow"
msgstr ""
@@ -814,20 +862,24 @@ msgstr "Crea tu cuenta"
msgid "Create an account"
msgstr "Crear una cuenta"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "Nombre de usuario"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "Correo electrónico"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password confirmation"
msgstr ""
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 subscribers"
msgstr "{0}'s suscriptores"
@@ -838,15 +890,16 @@ 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"
msgstr "Subir un avatar"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr ""
msgstr "Nombre mostrado"
msgid "Summary"
msgstr "Resumen"
@@ -861,7 +914,8 @@ 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 "Your Dashboard"
msgstr "Tu Tablero"
@@ -896,8 +950,12 @@ msgstr "Plume es un motor de blogs descentralizado."
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 "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"
@@ -929,10 +987,13 @@ msgstr ""
msgid "I'm from another instance"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr ""
#, fuzzy
msgid "Continue to your instance"
msgstr ""
msgstr "Configure su instancia"
#~ msgid "Delete this article"
#~ msgstr "Eliminar este artículo"
+631 -762
View File
File diff suppressed because it is too large Load Diff
+401 -532
View File
File diff suppressed because it is too large Load Diff
+239 -165
View File
@@ -3,123 +3,127 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 20:49\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: French\n"
"Language: fr_FR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: fr\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr "{0} a commenté votre article."
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr "{0} est abonné à vous."
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "{0} a aimé votre article."
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "{0} vous a mentionné."
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr "{0} a boosté votre article."
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
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:106
# 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:141
# src/routes/session.rs:259
#, fuzzy
msgid "Your blog was successfully created!"
msgstr "Votre blog a été créé avec succès!"
msgstr "Votre mot de passe a été réinitialisé avec succès."
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr "Votre blog a été supprimé."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr "Vous n'êtes pas autorisé⋅e à supprimer ce blog."
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr "Vous n'êtes pas autorisé à éditer ce blog."
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
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:281
# src/routes/blogs.rs:280
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:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr "Les informations de votre blog ont été mise à jour."
msgstr ""
# src/routes/comments.rs:97
#, fuzzy
msgid "Your comment has been posted."
msgstr "Votre commentaire a été publié."
msgstr "Vous n'avez pas encore de média."
# src/routes/comments.rs:172
#, fuzzy
msgid "Your comment has been deleted."
msgstr "Votre commentaire a été supprimé."
msgstr "Vous n'avez pas encore de média."
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr "Les paramètres de votre instance ont été enregistrés."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr "{} a été débloqué."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr "{} a été bloqué."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr "{} a été banni⋅e."
msgstr ""
# src/routes/likes.rs:51
msgid "To like a post, you need to be logged in"
msgstr "Vous devez vous connecter pour aimer un article"
# src/routes/medias.rs:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr "Votre média a été supprimé."
msgstr ""
# src/routes/medias.rs:146
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr "Vous n'êtes pas autorisé à supprimer ce média."
msgstr "Vous n'êtes pas autorisé⋅e à supprimer ce blog."
# src/routes/medias.rs:163
#, fuzzy
msgid "Your avatar has been updated."
msgstr "Votre avatar a été mis à jour."
msgstr "Vous n'avez pas encore de média."
# src/routes/medias.rs:168
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to use this media."
msgstr "Vous n'êtes pas autorisé à utiliser ce média."
msgstr "Vous n'êtes pas autorisé à éditer ce blog."
# 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"
@@ -131,75 +135,80 @@ msgstr "Cet article nest 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:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr "Vous n'êtes pas auteur⋅rice de ce blog."
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "Nouvel article"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "Modifier {0}"
# src/routes/posts.rs:260
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr "Vous n'êtes pas autorisé à publier sur ce blog."
msgstr "Vous n'êtes pas autorisé à éditer ce blog."
# src/routes/posts.rs:350
#, fuzzy
msgid "Your article has been updated."
msgstr "Votre article a été mis à jour."
msgstr "Vous n'avez pas encore de média."
# src/routes/posts.rs:532
#, fuzzy
msgid "Your article has been saved."
msgstr "Votre article a été enregistré."
msgstr "Vous n'avez pas encore de média."
# src/routes/posts.rs:538
msgid "New article"
msgstr "Nouvel article"
# src/routes/posts.rs:572
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr "Vous n'êtes pas autorisé à supprimer cet article."
msgstr "Vous n'êtes pas autorisé⋅e à supprimer ce blog."
# src/routes/posts.rs:597
#, fuzzy
msgid "Your article has been deleted."
msgstr "Votre article a été supprimé."
msgstr "Vous n'avez pas encore de média."
# src/routes/posts.rs:602
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:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
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:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
msgstr "Vous devez vous connecter pour partager un article"
# src/routes/session.rs:112
#, fuzzy
msgid "You are now connected."
msgstr "Vous êtes maintenant connecté."
msgstr "Vous navez pas les droits."
# src/routes/session.rs:131
#, fuzzy
msgid "You are now logged off."
msgstr "Vous êtes maintenant déconnecté."
msgstr "Vous navez pas les droits."
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "Réinitialisation du mot de passe"
# src/routes/session.rs:189
# src/routes/session.rs:182
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:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr "Votre mot de passe a été réinitialisé avec succès."
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr "Désolé, mais le lien a expiré. Réessayez"
@@ -209,39 +218,41 @@ msgstr "Vous devez vous connecter pour accéder à votre tableau de bord"
# src/routes/user.rs:158
msgid "You are no longer following {}."
msgstr "Vous ne suivez plus {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr "Vous suivez maintenant {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
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:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr "Vous devez vous connecter pour pour modifier votre profil"
# src/routes/user.rs:398
#, fuzzy
msgid "Your profile has been updated."
msgstr "Votre profil a été mis à jour."
msgstr "Vous n'avez pas encore de média."
# src/routes/user.rs:425
#, fuzzy
msgid "Your account has been deleted."
msgstr "Votre compte a été supprimé."
msgstr "Vous n'avez pas encore de média."
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr "Vous ne pouvez pas supprimer le compte d'une autre personne."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr "Les inscriptions sont fermées dans cette instance."
msgstr ""
# src/routes/user.rs:527
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 ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
msgstr "Erreur interne du serveur"
@@ -250,7 +261,9 @@ 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 cest un bogue, merci de le signaler."
msgstr ""
"Nous sommes désolé⋅e⋅s. Si vous pensez que cest un bogue, merci de le "
"signaler."
msgid "You are not authorized."
msgstr "Vous navez pas les droits."
@@ -273,8 +286,14 @@ msgstr "Peut-être que c’était trop long."
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 "Articles tagged \"{0}\""
msgstr "Articles marqués \"{0}\""
@@ -288,11 +307,10 @@ msgstr "Nouveau Blog"
msgid "Create a blog"
msgstr "Créer un blog"
# src/template_utils.rs:251
msgid "Title"
msgstr "Titre"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "Optionnel"
@@ -308,8 +326,11 @@ msgstr "Description"
msgid "Markdown syntax is supported"
msgstr "La syntaxe Markdown est supportée"
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"
@@ -349,14 +370,17 @@ msgstr "Derniers articles"
msgid "No posts to see here yet."
msgstr "Aucun article pour le moment."
#, fuzzy
msgid "Search result(s) for \"{0}\""
msgstr "Résultat(s) de la recherche pour \"{0}\""
msgstr "Résultats de la recherche pour \"{0}\""
#, fuzzy
msgid "Search result(s)"
msgstr "Résultat(s) de la recherche"
msgstr "Résultats de la recherche"
#, fuzzy
msgid "No results for your query"
msgstr "Pas de résultat pour votre requête"
msgstr "Aucun résultat pour votre recherche"
msgid "No more results for your query"
msgstr "Plus de résultats pour votre recherche"
@@ -370,68 +394,69 @@ msgstr "Votre recherche"
msgid "Advanced search"
msgstr "Recherche avancée"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr "Titre contenant ces mots"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr "Sous-titre contenant ces mots"
msgid "Subtitle - byline"
msgstr "Sous-titre"
msgstr "Sous-titre - signature"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr "Contenu correspondant à ces mots"
msgstr "Contenant ces mots"
msgid "Body content"
msgstr "Texte"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr "À partir de cette date"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr "Avant cette date"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr "Avec ces tags"
msgid "Tags"
msgstr "Étiquettes"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr "Publié sur une de ces instances"
msgid "Instance domain"
msgstr "Domaine d'une instance"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr "Écrit par un de ces auteur⋅ices"
#, fuzzy
msgid "Author(s)"
msgstr "Auteur·e(s)"
msgstr "Auteurs"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr "Publié dans un de ces blogs"
msgid "Blog title"
msgstr "Nom du blog"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr "Écrit en"
msgid "Language"
msgstr "Langue"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr "Placé sous cette licence"
@@ -439,13 +464,14 @@ msgid "Article license"
msgstr "Licence de l'article"
msgid "Interact with {}"
msgstr "Interagir avec {}"
msgstr ""
#, fuzzy
msgid "Log in to interact"
msgstr "Connectez-vous pour interagir"
msgstr "Connectez-vous pour aimer"
msgid "Enter your full username to interact"
msgstr "Entrez votre nom d'utilisateur complet pour interagir"
msgstr ""
msgid "Publish"
msgstr "Publier"
@@ -453,30 +479,34 @@ msgstr "Publier"
msgid "Classic editor (any changes will be lost)"
msgstr "Éditeur classique (tout changement sera perdu)"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Subtitle"
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"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr "Mots-clés, séparés par des virgules"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr "Licence"
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr "Laisser vide pour réserver tous les droits"
msgstr "Laisser vide pour se réservent tous les droits"
msgid "Illustration"
msgstr "Illustration"
@@ -524,8 +554,13 @@ 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"
#, fuzzy
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 "Unsubscribe"
msgstr "Se désabonner"
@@ -536,7 +571,7 @@ msgstr "S'abonner"
msgid "Comments"
msgstr "Commentaires"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr "Avertissement"
@@ -556,16 +591,18 @@ msgid "Delete"
msgstr "Supprimer"
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 ""
msgid "Only you and other authors can edit this article."
msgstr "Seuls vous et les autres auteur·e·s peuvent modifier cet article."
msgstr ""
msgid "Media upload"
msgstr "Téléversement de média"
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 "Leave it empty, if none is needed"
msgstr "Laisser vide, si aucun n'est nécessaire"
@@ -634,13 +671,13 @@ msgid "About this instance"
msgstr "À propos de cette instance"
msgid "Privacy policy"
msgstr "Politique de confidentialité"
msgstr ""
msgid "Administration"
msgstr "Administration"
msgid "Documentation"
msgstr "Documentation"
msgstr ""
msgid "Source code"
msgstr "Code source"
@@ -658,13 +695,14 @@ msgid "Local feed"
msgstr "Flux local"
msgid "Nothing to see here yet. Try subscribing to more people."
msgstr "Rien à voir ici pour le moment. Essayez de vous abonner à plus de personnes."
msgstr ""
"Rien à voir ici pour le moment. Essayez de vous abonner à plus de personnes."
msgid "Articles from {}"
msgstr "Articles de {}"
msgid "All the articles of the Fediverse"
msgstr "Tous les articles du Fédiverse"
msgstr "Tout les articles du Fédiverse"
msgid "Users"
msgstr "Utilisateurs"
@@ -681,7 +719,7 @@ msgstr "Bannir"
msgid "Administration of {0}"
msgstr "Administration de {0}"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "Nom"
@@ -694,7 +732,7 @@ msgstr "Description courte"
msgid "Long description"
msgstr "Description longue"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr "Licence d'article par défaut"
@@ -719,14 +757,22 @@ msgstr "Et sont connecté⋅es à <em>{0}</em> autres instances"
msgid "Administred by"
msgstr "Administré par"
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 ""
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 ""
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 ""
msgid "Welcome to {}"
msgstr "Bienvenue sur {0}"
@@ -740,11 +786,11 @@ msgstr "Bloquer"
msgid "Reset your password"
msgstr "Réinitialiser votre mot de passe"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr "Nouveau mot de passe"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr "Confirmation"
@@ -754,17 +800,17 @@ msgstr "Mettre à jour le mot de passe"
msgid "Log in"
msgstr "Se connecter"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr "Nom d'utilisateur⋅ice ou e-mail"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "Mot de passe"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr "Email"
msgstr "Courriel"
msgid "Send password reset link"
msgstr "Envoyer un lien pour réinitialiser le mot de passe"
@@ -772,8 +818,12 @@ msgstr "Envoyer un lien pour réinitialiser le mot de passe"
msgid "Check your inbox!"
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 "Admin"
msgstr "Administrateur"
@@ -787,14 +837,16 @@ msgstr "Modifier votre profil"
msgid "Open on {0}"
msgstr "Ouvrir sur {0}"
#, fuzzy
msgid "Follow {}"
msgstr "Suivre {}"
msgstr "Sabonner"
#, fuzzy
msgid "Log in to follow"
msgstr "Connectez-vous pour suivre"
msgstr "Connectez-vous pour partager"
msgid "Enter your full username handle to follow"
msgstr "Entrez votre nom d'utilisateur complet pour suivre"
msgstr ""
msgid "{0}'s subscriptions"
msgstr "Abonnements de {0}"
@@ -814,20 +866,24 @@ msgstr "Créer votre compte"
msgid "Create an account"
msgstr "Créer un compte"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "Nom dutilisateur"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "Adresse électronique"
# src/template_utils.rs:251
# src/template_utils.rs:217
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 subscribers"
msgstr "{0}'s abonnés"
@@ -838,13 +894,16 @@ msgstr "Modifier votre compte"
msgid "Your Profile"
msgstr "Votre Profile"
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 et sélectionner "
"à partir de là."
msgid "Upload an avatar"
msgstr "Téléverser un avatar"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr "Nom affiché"
@@ -861,7 +920,9 @@ 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 laisser votre "
"propre instance."
msgid "Your Dashboard"
msgstr "Votre tableau de bord"
@@ -870,7 +931,9 @@ 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"
@@ -894,10 +957,17 @@ 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"
@@ -923,16 +993,20 @@ msgstr "Répondre"
msgid "Delete this comment"
msgstr "Supprimer ce commentaire"
#, fuzzy
msgid "I'm from this instance"
msgstr "Je suis de cette instance"
msgstr "À propos de cette instance"
msgid "I'm from another instance"
msgstr "Je viens d'une autre instance"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr "Exemple : utilisateurice@plu.me"
msgstr ""
#, fuzzy
msgid "Continue to your instance"
msgstr "Continuez sur votre instance"
msgstr "Configurer votre instance"
#~ msgid "Delete this article"
#~ msgstr "Supprimer cet article"
+242 -180
View File
@@ -3,125 +3,129 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 20:49\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Galician\n"
"Language: gl_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: gl\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr "{0} comentou o teu artigo."
msgstr "{0} comentou o seu artigo."
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr "{0} está suscrita aos teus artigos."
msgstr "{0} subscribeuse a vostede."
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "a {0} gustoulle o teu artigo."
msgstr "a {0} gustoulle o seu artigo."
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "{0} mencionoute."
msgstr "{0} mencionouna."
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr "{0} promoveu o teu artigo."
msgstr "{0} promoveu o seu artigo."
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
msgstr "Para crear un novo blog debes estar conectada"
msgstr "Para crear un novo blog debe estar conectada"
# src/routes/blogs.rs:106
# src/routes/blogs.rs:109
msgid "A blog with the same name already exists."
msgstr "Xa existe un blog co mesmo nome."
msgstr ""
# src/routes/blogs.rs:141
# src/routes/session.rs:259
#, fuzzy
msgid "Your blog was successfully created!"
msgstr "O teu blog creouse correctamente!"
msgstr "O contrasinal restableceuse correctamente."
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr "Eliminaches o blog."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr "Non tes permiso para eliminar este blog."
msgstr "Vostede non ten permiso para eliminar este blog."
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr "Non podes editar este blog."
msgstr "Vostede non pode editar este blog."
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
msgid "You can't use this media as a blog icon."
msgstr "Non podes utilizar este medio como icona do blog."
msgstr "Vostede non pode utilizar este medio como icona do blog."
# src/routes/blogs.rs:281
# src/routes/blogs.rs:280
msgid "You can't use this media as a blog banner."
msgstr "Non podes utilizar este medio como banner do blog."
msgstr "Vostede non pode utilizar este medio como banner do blog."
# src/routes/blogs.rs:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr "Actualizouse a información sobre o blog."
msgstr ""
# src/routes/comments.rs:97
#, fuzzy
msgid "Your comment has been posted."
msgstr "O teu comentario foi publicado."
msgstr "Aínda non subeu ficheiros de medios."
# src/routes/comments.rs:172
#, fuzzy
msgid "Your comment has been deleted."
msgstr "Eliminouse o comentario."
msgstr "Aínda non subeu ficheiros de medios."
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr "Gardáronse os axustes das instancia."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr "{} foi desbloqueada."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr "{} foi bloqueada."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr "{} foi expulsada."
msgstr ""
# src/routes/likes.rs:51
msgid "To like a post, you need to be logged in"
msgstr "Para darlle a gústame, debes estar conectada"
msgstr "Para darlle a gústame, debe estar conectada"
# src/routes/medias.rs:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr "Eliminouse o ficheiro de medios."
msgstr ""
# src/routes/medias.rs:146
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr "Non tes permiso para eliminar este ficheiro."
msgstr "Vostede non ten permiso para eliminar este blog."
# src/routes/medias.rs:163
#, fuzzy
msgid "Your avatar has been updated."
msgstr "Actualizouse o avatar."
msgstr "Aínda non subeu ficheiros de medios."
# src/routes/medias.rs:168
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to use this media."
msgstr "Non tes permiso para usar este ficheiro de medios."
msgstr "Vostede non pode editar este blog."
# 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"
msgstr "Para ver as súas notificacións, debe estar conectada"
# src/routes/posts.rs:93
msgid "This post isn't published yet."
@@ -129,79 +133,84 @@ msgstr "Esto é un borrador, non publicar por agora."
# src/routes/posts.rs:122
msgid "To write a new post, you need to be logged in"
msgstr "Para escribir un novo artigo, debes estar conectada"
msgstr "Para escribir un novo artigo, debe estar conectada"
# src/routes/posts.rs:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr "Non es autora de este blog."
msgstr "Vostede non é autora de este blog."
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "Novo artigo"
msgstr "Nova entrada"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "Editar {0}"
# src/routes/posts.rs:260
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr "Non tes permiso para publicar en este blog."
msgstr "Vostede non pode editar este blog."
# src/routes/posts.rs:350
#, fuzzy
msgid "Your article has been updated."
msgstr "Actualizouse o artigo."
msgstr "Aínda non subeu ficheiros de medios."
# src/routes/posts.rs:532
#, fuzzy
msgid "Your article has been saved."
msgstr "Gardouse o artigo."
msgstr "Aínda non subeu ficheiros de medios."
# src/routes/posts.rs:538
msgid "New article"
msgstr "Novo artigo"
# src/routes/posts.rs:572
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr "Non tes permiso para eliminar este artigo."
msgstr "Vostede non ten permiso para eliminar este blog."
# src/routes/posts.rs:597
#, fuzzy
msgid "Your article has been deleted."
msgstr "Eliminouse o artigo."
msgstr "Aínda non subeu ficheiros de medios."
# src/routes/posts.rs:602
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:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
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:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
msgstr "Para compartir un artigo, debe estar conectada"
# src/routes/session.rs:112
#, fuzzy
msgid "You are now connected."
msgstr "Está conectada."
msgstr "Non ten permiso."
# src/routes/session.rs:131
#, fuzzy
msgid "You are now logged off."
msgstr "Está desconectada."
msgstr "Non ten permiso."
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "Restablecer contrasinal"
# src/routes/session.rs:189
# src/routes/session.rs:182
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:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr "O contrasinal restableceuse correctamente."
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr "Sentímolo, pero a ligazón caducou. Inténtao de novo"
msgstr "Lamentámolo, a ligazón caducou. Inténteo de novo"
# src/routes/user.rs:136
msgid "To access your dashboard, you need to be logged in"
@@ -209,39 +218,41 @@ msgstr "Para acceder ao taboleiro, debe estar conectada"
# src/routes/user.rs:158
msgid "You are no longer following {}."
msgstr "Xa non está a seguir a {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr "Está a seguir a {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr "Para suscribirse a un blog, debe estar conectada"
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr "Para editar o seu perfil, debe estar conectada"
# src/routes/user.rs:398
#, fuzzy
msgid "Your profile has been updated."
msgstr "Actualizouse o perfil."
msgstr "Aínda non subeu ficheiros de medios."
# src/routes/user.rs:425
#, fuzzy
msgid "Your account has been deleted."
msgstr "Eliminouse a túa conta."
msgstr "Aínda non subeu ficheiros de medios."
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr "Non pode eliminar a conta de outra persoa."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr "O rexistro está pechado en esta instancia."
msgstr ""
# src/routes/user.rs:527
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 ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
msgstr "Fallo interno do servidor"
@@ -273,8 +284,14 @@ msgstr "Pode que sexa demasiado longo."
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 "Articles tagged \"{0}\""
msgstr "Artigos etiquetados \"{0}\""
@@ -288,11 +305,10 @@ msgstr "Novo Blog"
msgid "Create a blog"
msgstr "Crear un blog"
# src/template_utils.rs:251
msgid "Title"
msgstr "Título"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "Opcional"
@@ -308,8 +324,10 @@ msgstr "Descrición"
msgid "Markdown syntax is supported"
msgstr "Pode utilizar sintaxe Markdown"
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"
@@ -349,14 +367,17 @@ msgstr "Últimos artigos"
msgid "No posts to see here yet."
msgstr "Aínda non hai entradas publicadas"
#, fuzzy
msgid "Search result(s) for \"{0}\""
msgstr "Resultado(s) da busca \"{0}\""
msgstr "Resultado da busca por \"{0}\""
#, fuzzy
msgid "Search result(s)"
msgstr "Resultado(s) da busca"
msgstr "Resultado da busca"
#, fuzzy
msgid "No results for your query"
msgstr "Sen resultados para a consulta"
msgstr "Sen resultados para a busca"
msgid "No more results for your query"
msgstr "Sen máis resultados para a súa consulta"
@@ -365,73 +386,74 @@ msgid "Search"
msgstr "Buscar"
msgid "Your query"
msgstr "A consulta"
msgstr "A súa consulta"
msgid "Advanced search"
msgstr "Busca avanzada"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr "Título de artigo coincidente con estas palabras"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr "O subtítulo coincide con estas palabras"
msgid "Subtitle - byline"
msgstr "Subtítulo - temática"
msgstr "Subtítulo - por liña"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr "Contido coincidente coas palabras"
msgstr "Contido coincidente con estas palabras"
msgid "Body content"
msgstr "Contido do corpo"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr "Desde esta data"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr "Ata esta data"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr "Contendo estas etiquetas"
msgid "Tags"
msgstr "Etiquetas"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr "Publicado en algunha de estas instancias"
msgid "Instance domain"
msgstr "Dominio da instancia"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr "Publicado por unha de estas autoras"
#, fuzzy
msgid "Author(s)"
msgstr "Autor(es)"
msgstr "Autoras"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr "Publicado en un de estos blogs"
msgid "Blog title"
msgstr "Título do blog"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr "Escrito en este idioma"
msgid "Language"
msgstr "Idioma"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr "Publicado baixo esta licenza"
@@ -439,13 +461,14 @@ msgid "Article license"
msgstr "Licenza do artigo"
msgid "Interact with {}"
msgstr "Interactúe con {}"
msgstr ""
#, fuzzy
msgid "Log in to interact"
msgstr "Conecte para interactuar"
msgstr "Conéctese para gostar"
msgid "Enter your full username to interact"
msgstr "Introduza o seu nome de usuaria completo para interactuar"
msgstr ""
msgid "Publish"
msgstr "Publicar"
@@ -453,28 +476,32 @@ msgstr "Publicar"
msgid "Classic editor (any changes will be lost)"
msgstr "Editor clásico (calquera perderanse os cambios)"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Subtitle"
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"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr "Etiquetas, separadas por vírgulas"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr "Licenza"
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr "Deixar baldeiro para reservar todos os dereitos"
@@ -524,8 +551,10 @@ 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 ""
msgid "Unsubscribe"
msgstr "Cancelar subscrición"
@@ -536,7 +565,7 @@ msgstr "Subscribirse"
msgid "Comments"
msgstr "Comentarios"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr "Aviso sobre o contido"
@@ -556,16 +585,17 @@ msgid "Delete"
msgstr "Eliminar"
msgid "This article is still a draft. Only you and other authors can see it."
msgstr "Este artigo é un borrador. Só ti e as outras autoras poden velo."
msgstr ""
msgid "Only you and other authors can edit this article."
msgstr "Só ti e as outras autoras poden editar este artigo."
msgstr ""
msgid "Media upload"
msgstr "Subir medios"
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 "Leave it empty, if none is needed"
msgstr "Deixar baldeiro se non precisa ningunha"
@@ -634,13 +664,13 @@ msgid "About this instance"
msgstr "Sobre esta instancia"
msgid "Privacy policy"
msgstr "Política de intimidade"
msgstr ""
msgid "Administration"
msgstr "Administración"
msgid "Documentation"
msgstr "Documentación"
msgstr ""
msgid "Source code"
msgstr "Código fonte"
@@ -658,7 +688,8 @@ msgid "Local feed"
msgstr "Contido local"
msgid "Nothing to see here yet. Try subscribing to more people."
msgstr "Nada por aquí. Inténtao subscribíndote a máis persoas."
msgstr ""
"Aínda non temos nada que mostrar. Inténteo subscribíndose a máis persoas."
msgid "Articles from {}"
msgstr "Artigos de {}"
@@ -681,7 +712,7 @@ msgstr "Prohibir"
msgid "Administration of {0}"
msgstr "Administración de {0}"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "Nome"
@@ -689,12 +720,12 @@ msgid "Allow anyone to register here"
msgstr "Permitir o rexistro aberto a calquera"
msgid "Short description"
msgstr "Descrición curta"
msgstr ""
msgid "Long description"
msgstr "Descrición longa"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr "Licenza por omisión dos artigos"
@@ -719,14 +750,22 @@ msgstr "E están conectadas a outras <em>{0}</em> instancias"
msgid "Administred by"
msgstr "Administrada por"
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 ""
"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 "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 ""
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 ""
msgid "Welcome to {}"
msgstr "Benvida a {}"
@@ -740,11 +779,11 @@ msgstr "Bloquear"
msgid "Reset your password"
msgstr "Restablecer contrasinal"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr "Novo contrasinal"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr "Confirmación"
@@ -754,15 +793,15 @@ msgstr "Actualizar contrasinal"
msgid "Log in"
msgstr "Conectar"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr "Nome de usuaria ou correo"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "Contrasinal"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr "Correo-e"
@@ -772,8 +811,12 @@ msgstr "Enviar ligazón para restablecer 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 "Admin"
msgstr "Admin"
@@ -787,17 +830,19 @@ msgstr "Edite o seu perfil"
msgid "Open on {0}"
msgstr "Aberto en {0}"
#, fuzzy
msgid "Follow {}"
msgstr "Seguimento {}"
msgstr "Seguir"
#, fuzzy
msgid "Log in to follow"
msgstr "Conéctese para seguir"
msgstr "Conéctese para promover"
msgid "Enter your full username handle to follow"
msgstr "Introduza o se nome de usuaria completo para continuar"
msgstr ""
msgid "{0}'s subscriptions"
msgstr "Suscricións de {0}"
msgstr ""
msgid "Articles"
msgstr "Artigos"
@@ -814,20 +859,24 @@ msgstr "Cree a súa conta"
msgid "Create an account"
msgstr "Crear unha conta"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "Nome de usuaria"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "Correo-e"
# src/template_utils.rs:251
# src/template_utils.rs:217
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 subscribers"
msgstr "Subscritoras de {0}"
@@ -838,13 +887,16 @@ 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"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr "Mostrar nome"
@@ -861,7 +913,9 @@ 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 "Your Dashboard"
msgstr "O seu taboleiro"
@@ -894,10 +948,14 @@ 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 ""
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"
@@ -923,16 +981,20 @@ msgstr "Respostar"
msgid "Delete this comment"
msgstr "Eliminar o comentario"
#, fuzzy
msgid "I'm from this instance"
msgstr "Eu formo parte de esta instancia"
msgstr "Sobre esta instancia"
msgid "I'm from another instance"
msgstr "Veño desde outra instancia"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr "Exemplo: usuaria@plu.me"
msgstr ""
#, fuzzy
msgid "Continue to your instance"
msgstr "Continuar hacia a súa instancia"
msgstr "Configure a súa instancia"
#~ msgid "Delete this article"
#~ msgstr "Eliminar este artigo"
+420 -551
View File
File diff suppressed because it is too large Load Diff
+186 -147
View File
@@ -3,75 +3,77 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-18 11:41\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Hindi\n"
"Language: hi_IN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: hi\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr "{0} ने आपके लेख पे कॉमेंट किया है"
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr "{0} ने आपको सब्सक्राइब किया है"
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "{0} ने आपके लेख को लाइक किया"
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "{0} ने आपको मेंशन किया"
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr "{0} ने आपके आर्टिकल को बूस्ट किया"
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr "{0} का avtar"
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
msgstr "नया ब्लॉग बनाने के लिए आपको लोग इन करना होगा"
# src/routes/blogs.rs:106
# src/routes/blogs.rs:109
msgid "A blog with the same name already exists."
msgstr "ये नाम से पहले ही एक ब्लॉग है"
# src/routes/blogs.rs:141
# src/routes/session.rs:259
#, fuzzy
msgid "Your blog was successfully created!"
msgstr ""
msgstr "आपका पासवर्ड रिसेट कर दिया गया है"
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr "आपको ये ब्लॉग डिलीट करने की अनुमति नहीं है"
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr "आपको ये ब्लॉग में बदलाव करने की अनुमति नहीं है"
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
msgid "You can't use this media as a blog icon."
msgstr "इस फोटो को ब्लॉग आइकॉन के लिए इस्तेमाल नहीं कर सकते"
# src/routes/blogs.rs:281
# src/routes/blogs.rs:280
msgid "You can't use this media as a blog banner."
msgstr "इस media को blog banner के लिए इस्तेमाल नहीं कर सकते"
# src/routes/blogs.rs:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr ""
@@ -83,19 +85,19 @@ msgstr ""
msgid "Your comment has been deleted."
msgstr ""
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr ""
@@ -103,23 +105,25 @@ msgstr ""
msgid "To like a post, you need to be logged in"
msgstr "Post को like करने के लिए आपको log in करना होगा"
# src/routes/medias.rs:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr ""
# src/routes/medias.rs:146
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr ""
msgstr "आपको ये ब्लॉग डिलीट करने की अनुमति नहीं है"
# src/routes/medias.rs:163
msgid "Your avatar has been updated."
msgstr ""
# src/routes/medias.rs:168
# src/routes/blogs.rs:217
#, fuzzy
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 "Notifications देखने के लिए आपको log in करना होगा"
@@ -131,21 +135,22 @@ msgstr "इस post को publish नहीं किया गया है"
msgid "To write a new post, you need to be logged in"
msgstr "नया post लिखने के लिए आपको log in करना होगा"
# src/routes/posts.rs:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr "आप इस blog के लेखक नहीं हैं"
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "नया post"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "Edit करें {0}"
# src/routes/posts.rs:260
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr ""
msgstr "आपको ये ब्लॉग में बदलाव करने की अनुमति नहीं है"
# src/routes/posts.rs:350
msgid "Your article has been updated."
@@ -155,53 +160,59 @@ msgstr ""
msgid "Your article has been saved."
msgstr ""
# src/routes/posts.rs:538
msgid "New article"
msgstr "नया लेख"
# src/routes/posts.rs:572
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr ""
msgstr "आपको ये ब्लॉग डिलीट करने की अनुमति नहीं है"
# src/routes/posts.rs:597
msgid "Your article has been deleted."
msgstr ""
# src/routes/posts.rs:602
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
# src/routes/posts.rs:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
msgstr "आपके अकाउंट के बारे में पर्याप्त जानकारी नहीं मिल पायी. कृपया जांच करें की आपका यूजरनाम सही है."
# src/routes/posts.rs:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
"आपके अकाउंट के बारे में पर्याप्त जानकारी नहीं मिल पायी. कृपया जांच करें की आपका यूजरनाम "
"सही है."
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
msgstr "Post reshare करने के लिए आपको log in करना होगा"
# src/routes/session.rs:112
# src/routes/session.rs:108
msgid "You are now connected."
msgstr ""
# src/routes/session.rs:131
# src/routes/session.rs:124
msgid "You are now logged off."
msgstr ""
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "पासवर्ड रीसेट करें"
# src/routes/session.rs:189
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr "आपका पासवर्ड रिसेट करने का लिंक: {0}"
# src/routes/session.rs:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr "आपका पासवर्ड रिसेट कर दिया गया है"
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr ""
msgstr "क्षमा करें, लेकिन लिंक इस्तेमाल करने की अवधि समाप्त हो चुकी है. फिर कोशिश करें"
# src/routes/user.rs:136
msgid "To access your dashboard, you need to be logged in"
@@ -211,15 +222,15 @@ msgstr "डैशबोर्ड पर जाने के लिए, लोग
msgid "You are no longer following {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr "सब्सक्राइब करने के लिए, लोग इन करें"
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr "प्रोफाइल में बदलाव करने के लिए, लोग इन करें"
@@ -231,16 +242,18 @@ msgstr ""
msgid "Your account has been deleted."
msgstr ""
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr ""
# src/routes/user.rs:527
msgid "Your account has been created. Now you just need to log in, before you can use it."
msgid ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
@@ -273,31 +286,33 @@ 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 "Articles tagged \"{0}\""
msgstr "\"{0}\" टैग किये गए लेख"
msgstr ""
msgid "There are currently no articles with such a tag"
msgstr "वर्तमान में ऐसे टैग के साथ कोई लेख नहीं है"
msgstr ""
msgid "New Blog"
msgstr "नया ब्लॉग"
msgstr ""
msgid "Create a blog"
msgstr "ब्लॉग बनाएं"
msgstr ""
# src/template_utils.rs:251
msgid "Title"
msgstr "शीर्षक"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "वैकल्पिक"
msgid "Create blog"
msgstr "ब्लॉग बनाएं"
msgstr ""
msgid "Edit \"{}\""
msgstr "{0} में बदलाव करें"
@@ -308,7 +323,8 @@ msgstr "वर्णन"
msgid "Markdown syntax is supported"
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"
@@ -336,27 +352,30 @@ msgid "{}'s icon"
msgstr "{} का आइकॉन"
msgid "Edit"
msgstr "बदलाव करें"
msgstr ""
msgid "There's one author on this blog: "
msgid_plural "There are {0} authors on this blog: "
msgstr[0] "ये ब्लॉग पे एक लेखक हैं: "
msgstr[1] "ये ब्लॉग पे {0} लेखक हैं: "
msgstr[0] ""
msgstr[1] ""
msgid "Latest articles"
msgstr "नवीनतम लेख"
msgid "No posts to see here yet."
msgstr "यहाँ वर्तमान में कोई पोस्ट्स नहीं है."
msgstr ""
#, fuzzy
msgid "Search result(s) for \"{0}\""
msgstr ""
msgstr "{0} के लिए सर्च रिजल्ट"
#, fuzzy
msgid "Search result(s)"
msgstr ""
msgstr "सर्च रिजल्ट"
#, fuzzy
msgid "No results for your query"
msgstr ""
msgstr "आपकी जांच के लिए रिजल्ट"
msgid "No more results for your query"
msgstr "आपकी जांच के लिए और रिजल्ट्स नहीं है"
@@ -365,73 +384,74 @@ msgid "Search"
msgstr "ढूंढें"
msgid "Your query"
msgstr ""
msgstr "आपके प्रश्न"
msgid "Advanced search"
msgstr "एडवांस्ड सर्च"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr "सर्च से मैच करने वाले लेख शीर्षक"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr "सर्च से मैच करने वाले लेख उपशीर्षक"
msgid "Subtitle - byline"
msgstr ""
msgstr "उपशीर्षक-byline"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr ""
msgstr "इन शब्दों से मैच करने वाला कंटेंट"
msgid "Body content"
msgstr "बॉडी कंटेंट"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr "इस तारीख से"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr ""
msgstr "इस तारीख तक"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr "इन टैग्स से युक्त"
msgid "Tags"
msgstr "टैग्स"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr "इन इन्सटेंसेस में पोस्ट किया गया"
msgid "Instance domain"
msgstr "इंस्टैंस डोमेन"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr "इन लेखकों द्वारा पोस्ट किये गए आर्टिकल्स"
#, fuzzy
msgid "Author(s)"
msgstr ""
msgstr "लेखक"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr "इन ब्लोग्स में से एक ब्लॉग पर पोस्ट किया गया"
msgid "Blog title"
msgstr "ब्लॉग टाइटल"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr "इन भाषाओँ में लिखे गए"
msgid "Language"
msgstr "भाषा"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr "इस लिसेंसे के साथ पब्लिश किया गया"
@@ -442,39 +462,41 @@ msgid "Interact with {}"
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 ""
# src/template_utils.rs:251
# src/template_utils.rs:217
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."
msgid ""
"You can upload media to your gallery, and then copy their Markdown code into "
"your articles to insert them."
msgstr ""
msgid "Upload media"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr ""
@@ -494,63 +516,65 @@ msgid "Publish your post"
msgstr ""
msgid "Written by {0}"
msgstr "{0} द्वारा लिखित"
msgstr ""
msgid "All rights reserved."
msgstr "सर्वाधिकार सुरक्षित"
msgstr ""
msgid "This article is under the {0} license."
msgstr ""
msgid "One like"
msgid_plural "{0} likes"
msgstr[0] "एक लाइक"
msgstr[1] "{0} लाइक्स"
msgstr[0] ""
msgstr[1] ""
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] "{0} बूस्ट्स"
msgstr[1] ""
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}आपके फेडिवेर्से अकाउंट का इस्तेमाल करें{3} इस आर्टिकल से इंटरैक्ट करने के लिए"
msgid ""
"{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this "
"article"
msgstr ""
msgid "Unsubscribe"
msgstr "अनसब्सक्राइब"
msgstr ""
msgid "Subscribe"
msgstr "सब्सक्राइब"
msgstr ""
msgid "Comments"
msgstr "कमैंट्स"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
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 "Delete"
msgstr ""
@@ -625,10 +649,10 @@ msgid "My account"
msgstr "मेरा अकाउंट"
msgid "Log In"
msgstr "लॉग इन"
msgstr "लॉग इन करें"
msgid "Register"
msgstr "रजिस्टर"
msgstr "अकाउंट रजिस्टर करें"
msgid "About this instance"
msgstr "इंस्टैंस के बारे में जानकारी"
@@ -658,13 +682,13 @@ msgid "Local feed"
msgstr "लोकल फीड"
msgid "Nothing to see here yet. Try subscribing to more people."
msgstr ""
msgstr "कंटेंट देखने के लिए अन्य लोगों को सब्सक्राइब करें"
msgid "Articles from {}"
msgstr ""
msgstr "{} के आर्टिकल्स"
msgid "All the articles of the Fediverse"
msgstr ""
msgstr "फेडिवेर्से के सारे आर्टिकल्स"
msgid "Users"
msgstr "उसेर्स"
@@ -676,12 +700,12 @@ msgid "Instances"
msgstr "इन्सटेंस"
msgid "Ban"
msgstr "बन"
msgstr "बन करें"
msgid "Administration of {0}"
msgstr "{0} का संचालन"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "नाम"
@@ -694,7 +718,7 @@ msgstr "संक्षिप्त वर्णन"
msgid "Long description"
msgstr "दीर्घ वर्णन"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr "डिफ़ॉल्ट आलेख लायसेंस"
@@ -719,32 +743,40 @@ msgstr "और <em>{0}</em> इन्सटेंसेस से जुड़े
msgid "Administred by"
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 "Welcome to {}"
msgstr "{} में स्वागत"
msgid "Unblock"
msgstr "अनब्लॉक"
msgstr "अनब्लॉक करें"
msgid "Block"
msgstr "ब्लॉक"
msgstr "ब्लॉक करें"
msgid "Reset your password"
msgstr "पासवर्ड रिसेट करें"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr "नया पासवर्ड"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr "पुष्टीकरण"
@@ -754,17 +786,17 @@ msgstr "पासवर्ड अपडेट करें"
msgid "Log in"
msgstr "लौग इन"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr "यूजरनेम या इ-मेल"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "पासवर्ड"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr ""
msgstr "इ-मेल"
msgid "Send password reset link"
msgstr "पासवर्ड रिसेट करने के लिए लिंक भेजें"
@@ -772,7 +804,9 @@ 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 "Admin"
@@ -782,7 +816,7 @@ msgid "It is you"
msgstr ""
msgid "Edit your profile"
msgstr "आपकी प्रोफाइल में बदलाव करें"
msgstr ""
msgid "Open on {0}"
msgstr ""
@@ -814,19 +848,21 @@ msgstr "अपना अकाउंट बनाएं"
msgid "Create an account"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "ईमेल"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password confirmation"
msgstr ""
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
msgid ""
"Apologies, but registrations are closed on this particular instance. You "
"can, however, find a different one."
msgstr ""
msgid "{0}'s subscribers"
@@ -838,13 +874,14 @@ 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"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr ""
@@ -896,7 +933,9 @@ 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"
@@ -915,7 +954,7 @@ msgid "By {0}"
msgstr ""
msgid "Draft"
msgstr "ड्राफ्ट"
msgstr ""
msgid "Respond"
msgstr ""
@@ -923,16 +962,16 @@ msgstr ""
msgid "Delete this comment"
msgstr ""
#, fuzzy
msgid "I'm from this instance"
msgstr ""
msgstr "इंस्टैंस के बारे में जानकारी"
msgid "I'm from another instance"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr ""
msgid "Continue to your instance"
msgstr ""
+127 -95
View File
@@ -3,75 +3,77 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:06\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-17 20:49\n"
"Last-Translator: Ana Gelez (AnaGelez)\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: hr\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr "{0} komentira na vaš članak."
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr ""
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "{0} se svidio vaš članak."
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr ""
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr ""
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr ""
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
msgstr ""
# src/routes/blogs.rs:106
# src/routes/blogs.rs:109
msgid "A blog with the same name already exists."
msgstr ""
# src/routes/blogs.rs:141
# src/routes/blogs.rs:142
msgid "Your blog was successfully created!"
msgstr ""
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr ""
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr ""
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
msgid "You can't use this media as a blog icon."
msgstr ""
# src/routes/blogs.rs:281
# src/routes/blogs.rs:280
msgid "You can't use this media as a blog banner."
msgstr ""
# src/routes/blogs.rs:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr ""
@@ -83,19 +85,19 @@ msgstr ""
msgid "Your comment has been deleted."
msgstr ""
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr ""
@@ -103,23 +105,25 @@ msgstr ""
msgid "To like a post, you need to be logged in"
msgstr ""
# src/routes/medias.rs:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr ""
# src/routes/medias.rs:146
# src/routes/posts.rs:140
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr ""
msgstr "Ti ne autor ovog bloga."
# src/routes/medias.rs:163
msgid "Your avatar has been updated."
msgstr ""
# src/routes/medias.rs:168
# src/routes/posts.rs:140
#, fuzzy
msgid "You are not allowed to use this media."
msgstr ""
msgstr "Ti ne autor ovog bloga."
# src/routes/notifications.rs:28
# src/routes/notifications.rs:29
msgid "To see your notifications, you need to be logged in"
msgstr ""
@@ -131,21 +135,22 @@ msgstr "Ovaj post još nije objavljen."
msgid "To write a new post, you need to be logged in"
msgstr ""
# src/routes/posts.rs:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr "Ti ne autor ovog bloga."
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "Novi članak"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "Uredi {0}"
# src/routes/posts.rs:260
# src/routes/posts.rs:140
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr ""
msgstr "Ti ne autor ovog bloga."
# src/routes/posts.rs:350
msgid "Your article has been updated."
@@ -155,51 +160,55 @@ msgstr ""
msgid "Your article has been saved."
msgstr ""
# src/routes/posts.rs:538
msgid "New article"
msgstr ""
# src/routes/posts.rs:572
# src/routes/posts.rs:140
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr ""
msgstr "Ti ne autor ovog bloga."
# src/routes/posts.rs:597
msgid "Your article has been deleted."
msgstr ""
# src/routes/posts.rs:602
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
# src/routes/posts.rs:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
# src/routes/posts.rs:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
msgstr ""
# src/routes/session.rs:112
# src/routes/session.rs:108
msgid "You are now connected."
msgstr ""
# src/routes/session.rs:131
# src/routes/session.rs:124
msgid "You are now logged off."
msgstr ""
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "Poništavanje zaporke"
# src/routes/session.rs:189
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr ""
# src/routes/session.rs:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr ""
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr ""
@@ -211,15 +220,15 @@ msgstr ""
msgid "You are no longer following {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr ""
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr ""
@@ -231,16 +240,18 @@ msgstr ""
msgid "Your account has been deleted."
msgstr ""
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr ""
# src/routes/user.rs:527
msgid "Your account has been created. Now you just need to log in, before you can use it."
msgid ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
@@ -273,7 +284,10 @@ 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 "Articles tagged \"{0}\""
@@ -288,11 +302,10 @@ msgstr ""
msgid "Create a blog"
msgstr ""
# src/template_utils.rs:251
msgid "Title"
msgstr ""
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr ""
@@ -308,7 +321,8 @@ msgstr ""
msgid "Markdown syntax is supported"
msgstr "Markdown sintaksa je podržana"
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"
@@ -371,68 +385,68 @@ msgstr ""
msgid "Advanced search"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr ""
msgid "Subtitle - byline"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr ""
msgid "Body content"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr ""
msgid "Tags"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr ""
msgid "Instance domain"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr ""
msgid "Author(s)"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr ""
msgid "Blog title"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr ""
msgid "Language"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr ""
@@ -454,28 +468,30 @@ msgstr ""
msgid "Classic editor (any changes will be lost)"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
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."
msgid ""
"You can upload media to your gallery, and then copy their Markdown code into "
"your articles to insert them."
msgstr ""
msgid "Upload media"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr ""
@@ -527,7 +543,9 @@ 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 "Unsubscribe"
@@ -539,7 +557,7 @@ msgstr ""
msgid "Comments"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr ""
@@ -664,7 +682,7 @@ msgid "Nothing to see here yet. Try subscribing to more people."
msgstr ""
msgid "Articles from {}"
msgstr ""
msgstr "Članci iz {}"
msgid "All the articles of the Fediverse"
msgstr ""
@@ -684,7 +702,7 @@ msgstr "Zabraniti"
msgid "Administration of {0}"
msgstr "Administracija od {0}"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr ""
@@ -697,7 +715,7 @@ msgstr "Kratki opis"
msgid "Long description"
msgstr "Dugi opis"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr ""
@@ -722,13 +740,21 @@ msgstr ""
msgid "Administred by"
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 "Welcome to {}"
@@ -743,11 +769,11 @@ msgstr "Blokirati"
msgid "Reset your password"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr ""
@@ -757,15 +783,15 @@ msgstr ""
msgid "Log in"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr ""
@@ -775,7 +801,9 @@ 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 "Admin"
@@ -817,19 +845,21 @@ msgstr ""
msgid "Create an account"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "E-pošta"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password confirmation"
msgstr ""
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
msgid ""
"Apologies, but registrations are closed on this particular instance. You "
"can, however, find a different one."
msgstr ""
msgid "{0}'s subscribers"
@@ -841,13 +871,14 @@ 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"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr ""
@@ -899,7 +930,9 @@ 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"
@@ -932,10 +965,9 @@ msgstr ""
msgid "I'm from another instance"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr ""
msgid "Continue to your instance"
msgstr ""
+420 -551
View File
File diff suppressed because it is too large Load Diff
+227 -159
View File
@@ -3,123 +3,127 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-18 16:25\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Italian\n"
"Language: it_IT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: it\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr "{0} ha commentato il tuo articolo."
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr "{0} si è iscritto a te."
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "{0} ha apprezzato il tuo articolo."
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "{0} ti ha menzionato."
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr "{0} ha boostato il tuo articolo."
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr "Avatar di {0}"
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
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:106
# 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:141
# src/routes/session.rs:259
#, fuzzy
msgid "Your blog was successfully created!"
msgstr "Il tuo blog è stato creato con successo!"
msgstr "La tua password è stata reimpostata con successo."
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr "Il tuo blog è stato eliminato."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr "Non ti è consentito di eliminare questo blog."
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr "Non ti è consentito modificare questo blog."
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
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:281
# src/routes/blogs.rs:280
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:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr "Le informazioni del tuo blog sono state aggiornate."
msgstr ""
# src/routes/comments.rs:97
#, fuzzy
msgid "Your comment has been posted."
msgstr "Il tuo commento è stato pubblicato."
msgstr "Non hai ancora nessun media."
# src/routes/comments.rs:172
#, fuzzy
msgid "Your comment has been deleted."
msgstr "Il tuo commento è stato eliminato."
msgstr "Non hai ancora nessun media."
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr "Le impostazioni dell'istanza sono state salvate."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr "{} sono stati sbloccati."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr "{} sono stati bloccati."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr "{} sono stati banditi."
msgstr ""
# src/routes/likes.rs:51
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:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr "I tuoi media sono stati eliminati."
msgstr ""
# src/routes/medias.rs:146
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr "Non ti è consentito rimuovere questo media."
msgstr "Non ti è consentito di eliminare questo blog."
# src/routes/medias.rs:163
#, fuzzy
msgid "Your avatar has been updated."
msgstr "La tua immagine di profilo è stata aggiornata."
msgstr "Non hai ancora nessun media."
# src/routes/medias.rs:168
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to use this media."
msgstr "Non ti è consentito utilizzare questo media."
msgstr "Non ti è consentito modificare questo blog."
# 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"
@@ -131,77 +135,82 @@ 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:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr "Non sei un autore di questo blog."
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "Nuovo post"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "Modifica {0}"
# src/routes/posts.rs:260
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr "Non ti è consentito pubblicare su questo blog."
msgstr "Non ti è consentito modificare questo blog."
# src/routes/posts.rs:350
#, fuzzy
msgid "Your article has been updated."
msgstr "Il tuo articolo è stato aggiornato."
msgstr "Non hai ancora nessun media."
# src/routes/posts.rs:532
#, fuzzy
msgid "Your article has been saved."
msgstr "Il tuo articolo è stato salvato."
msgstr "Non hai ancora nessun media."
# src/routes/posts.rs:538
msgid "New article"
msgstr "Nuovo articolo"
# src/routes/posts.rs:572
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr "Non è consentito eliminare questo articolo."
msgstr "Non ti è consentito di eliminare questo blog."
# src/routes/posts.rs:597
#, fuzzy
msgid "Your article has been deleted."
msgstr "Il tuo articolo è stato eliminato."
msgstr "Non hai ancora nessun media."
# src/routes/posts.rs:602
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:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
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:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
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:112
#, fuzzy
msgid "You are now connected."
msgstr "Ora sei connesso."
msgstr "Non sei autorizzato."
# src/routes/session.rs:131
#, fuzzy
msgid "You are now logged off."
msgstr "Ti sei disconnesso."
msgstr "Non sei autorizzato."
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "Reimposta password"
# src/routes/session.rs:189
# src/routes/session.rs:182
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:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr "La tua password è stata reimpostata con successo."
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr "Ci dispiace, ma il collegamento è scaduto. Riprova"
msgstr "Spiacente, ma il collegamento è scaduto. Riprova"
# src/routes/user.rs:136
msgid "To access your dashboard, you need to be logged in"
@@ -209,39 +218,41 @@ msgstr "Per accedere al tuo pannello, devi avere effettuato l'accesso"
# src/routes/user.rs:158
msgid "You are no longer following {}."
msgstr "Non stai più seguendo {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr "Ora stai seguendo {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
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:356
# src/routes/user.rs:344
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:398
#, fuzzy
msgid "Your profile has been updated."
msgstr "Il tuo profilo è stato aggiornato."
msgstr "Non hai ancora nessun media."
# src/routes/user.rs:425
#, fuzzy
msgid "Your account has been deleted."
msgstr "Il tuo account è stato eliminato."
msgstr "Non hai ancora nessun media."
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr "Non puoi eliminare l'account di qualcun altro."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr "Le registrazioni sono chiuse su questa istanza."
msgstr ""
# src/routes/user.rs:527
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 ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
msgstr "Errore interno del server"
@@ -273,8 +284,14 @@ msgstr "Probabilmente era troppo lungo."
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 "Articles tagged \"{0}\""
msgstr "Articoli etichettati \"{0}\""
@@ -288,11 +305,10 @@ msgstr "Nuovo Blog"
msgid "Create a blog"
msgstr "Crea un blog"
# src/template_utils.rs:251
msgid "Title"
msgstr "Titolo"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "Opzionale"
@@ -308,8 +324,11 @@ msgstr "Descrizione"
msgid "Markdown syntax is supported"
msgstr "La sintassi Markdown è supportata"
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"
@@ -327,7 +346,8 @@ msgid "Danger zone"
msgstr "Zona pericolosa"
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 "Permanently delete this blog"
msgstr "Elimina permanentemente questo blog"
@@ -349,12 +369,15 @@ msgstr "Ultimi articoli"
msgid "No posts to see here yet."
msgstr "Nessun post da mostrare qui."
#, fuzzy
msgid "Search result(s) for \"{0}\""
msgstr "Risultato(i) della ricerca per \"{0}\""
msgstr "Risultati della ricerca per \"{0}\""
#, fuzzy
msgid "Search result(s)"
msgstr "Risultato(i) della ricerca"
msgstr "Risultati della ricerca"
#, fuzzy
msgid "No results for your query"
msgstr "Nessun risultato per la tua ricerca"
@@ -370,68 +393,69 @@ msgstr "La tua richesta"
msgid "Advanced search"
msgstr "Ricerca avanzata"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr "Titoli di articolo che corrispondono a queste parole"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr "Sottotitoli che corrispondono a queste parole"
msgid "Subtitle - byline"
msgstr "Sottotitolo - firma"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr "Contenuto che corrisponde a queste parole"
msgstr "Contenuti che corrispondono a queste parole"
msgid "Body content"
msgstr "Contenuto del testo"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr "Da questa data"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr "A questa data"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr "Contenente queste etichette"
msgid "Tags"
msgstr "Etichette"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr "Pubblicato su una di queste istanze"
msgid "Instance domain"
msgstr "Dominio dell'istanza"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr "Pubblicato da uno di questi autori"
#, fuzzy
msgid "Author(s)"
msgstr "Autore(i)"
msgstr "Autori"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr "Pubblicato da uno di questi blog"
msgid "Blog title"
msgstr "Titolo del blog"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr "Scritto in questa lingua"
msgid "Language"
msgstr "Lingua"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr "Pubblicato sotto questa licenza"
@@ -439,13 +463,14 @@ msgid "Article license"
msgstr "Licenza dell'articolo"
msgid "Interact with {}"
msgstr "Interagisci con {}"
msgstr ""
#, fuzzy
msgid "Log in to interact"
msgstr "Accedi per interagire"
msgstr "Accedi per mettere mi piace"
msgid "Enter your full username to interact"
msgstr "Inserisci il tuo nome utente completo per interagire"
msgstr ""
msgid "Publish"
msgstr "Pubblica"
@@ -453,28 +478,32 @@ msgstr "Pubblica"
msgid "Classic editor (any changes will be lost)"
msgstr "Editor classico (eventuali modifiche andranno perse)"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Subtitle"
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"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr "Etichette, separate da virgole"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr "Licenza"
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr "Lascia vuoto per riservarti tutti i diritti"
@@ -524,8 +553,13 @@ 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"
#, fuzzy
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 "Unsubscribe"
msgstr "Annulla iscrizione"
@@ -536,7 +570,7 @@ msgstr "Iscriviti"
msgid "Comments"
msgstr "Commenti"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr "Avviso di contenuto sensibile"
@@ -556,10 +590,10 @@ msgid "Delete"
msgstr "Elimina"
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 ""
msgid "Only you and other authors can edit this article."
msgstr "Solo tu e gli altri autori potete modificare questo articolo."
msgstr ""
msgid "Media upload"
msgstr "Caricamento di un media"
@@ -634,13 +668,13 @@ msgid "About this instance"
msgstr "A proposito di questa istanza"
msgid "Privacy policy"
msgstr "Politica sulla Riservatezza"
msgstr ""
msgid "Administration"
msgstr "Amministrazione"
msgid "Documentation"
msgstr "Documentazione"
msgstr ""
msgid "Source code"
msgstr "Codice sorgente"
@@ -681,7 +715,7 @@ msgstr "Bandisci"
msgid "Administration of {0}"
msgstr "Amministrazione di {0}"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "Nome"
@@ -694,7 +728,7 @@ msgstr "Descrizione breve"
msgid "Long description"
msgstr "Descrizione lunga"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr "Licenza predefinita degli articoli"
@@ -719,14 +753,22 @@ msgstr "E sono connessi ad altre <em>{0}</em> istanze"
msgid "Administred by"
msgstr "Amministrata da"
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 ""
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 ""
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 ""
msgid "Welcome to {}"
msgstr "Benvenuto su {}"
@@ -740,11 +782,11 @@ msgstr "Blocca"
msgid "Reset your password"
msgstr "Reimposta la tua password"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr "Nuova password"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr "Conferma"
@@ -754,15 +796,15 @@ msgstr "Aggiorna password"
msgid "Log in"
msgstr "Accedi"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr "Nome utente, o email"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "Password"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr "E-mail"
@@ -772,8 +814,12 @@ msgstr "Invia collegamento per reimpostare la 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 "Admin"
msgstr "Amministratore"
@@ -787,14 +833,16 @@ msgstr "Modifica il tuo profilo"
msgid "Open on {0}"
msgstr "Apri su {0}"
#, fuzzy
msgid "Follow {}"
msgstr "Segui {}"
msgstr "Segui"
#, fuzzy
msgid "Log in to follow"
msgstr "Accedi per seguire"
msgstr "Accedi per boostare"
msgid "Enter your full username handle to follow"
msgstr "Inserisci il tuo nome utente completo (handle) per seguire"
msgstr ""
msgid "{0}'s subscriptions"
msgstr "Iscrizioni di {0}"
@@ -814,20 +862,24 @@ msgstr "Crea il tuo account"
msgid "Create an account"
msgstr "Crea un account"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "Nome utente"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "Email"
# src/template_utils.rs:251
# src/template_utils.rs:217
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 subscribers"
msgstr "Iscritti di {0}"
@@ -838,13 +890,16 @@ 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"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr "Nome visualizzato"
@@ -855,7 +910,8 @@ msgid "Update account"
msgstr "Aggiorna account"
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"
@@ -870,7 +926,9 @@ 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"
@@ -894,10 +952,16 @@ 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"
@@ -923,16 +987,20 @@ msgstr "Rispondi"
msgid "Delete this comment"
msgstr "Elimina questo commento"
#, fuzzy
msgid "I'm from this instance"
msgstr "Io appartengo a questa istanza"
msgstr "A proposito di questa istanza"
msgid "I'm from another instance"
msgstr "Io sono di un'altra istanza"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr "Esempio: utente@plu.me"
msgstr ""
#, fuzzy
msgid "Continue to your instance"
msgstr "Continua verso la tua istanza"
msgstr "Configura la tua istanza"
#~ msgid "Delete this article"
#~ msgstr "Elimina questo articolo"
+222 -159
View File
@@ -3,123 +3,127 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-18 06:16\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Japanese\n"
"Language: ja_JP\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: ja\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr "{0} さんがあなたの投稿にコメントしました。"
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr "{0} さんがあなたをフォローしました。"
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "{0} さんがあなたの投稿にいいねしました。"
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "{0} さんがあなたをメンションしました。"
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr "{0} さんがあなたの投稿をブーストしました。"
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr "{0} さんのアバター"
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
msgstr "新しいブログを作成するにはログインが必要です"
# src/routes/blogs.rs:106
# src/routes/blogs.rs:109
msgid "A blog with the same name already exists."
msgstr "同じ名前のブログがすでに存在しています。"
msgstr ""
# src/routes/blogs.rs:141
# src/routes/session.rs:259
#, fuzzy
msgid "Your blog was successfully created!"
msgstr "ブログは正常に作成されました。"
msgstr "パスワードが正常にリセットされました。"
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr "ブログを削除しました。"
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr "このブログを削除する権限がありません。"
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr "このブログを編集する権限がありません。"
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
msgid "You can't use this media as a blog icon."
msgstr "このメディアはブログアイコンに使用できません。"
# src/routes/blogs.rs:281
# src/routes/blogs.rs:280
msgid "You can't use this media as a blog banner."
msgstr "このメディアはブログバナーに使用できません。"
# src/routes/blogs.rs:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr "ブログ情報を更新しました。"
msgstr ""
# src/routes/comments.rs:97
#, fuzzy
msgid "Your comment has been posted."
msgstr "コメントを投稿しました。"
msgstr "メディアがまだありません。"
# src/routes/comments.rs:172
#, fuzzy
msgid "Your comment has been deleted."
msgstr "コメントを削除しました。"
msgstr "メディアがまだありません。"
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr "インスタンスの設定を保存しました。"
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr "{} のブロックを解除しました。"
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr "{} をブロックしました。"
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr "{} のログインを禁止しました。"
msgstr ""
# src/routes/likes.rs:51
msgid "To like a post, you need to be logged in"
msgstr "投稿をいいねするにはログインが必要です"
# src/routes/medias.rs:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr "メディアを削除しました。"
msgstr ""
# src/routes/medias.rs:146
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr "このメディアを削除する権限がありません。"
msgstr "このブログを削除する権限がありません。"
# src/routes/medias.rs:163
#, fuzzy
msgid "Your avatar has been updated."
msgstr "アバターを更新しました。"
msgstr "メディアがまだありません。"
# src/routes/medias.rs:168
# src/routes/blogs.rs:217
#, fuzzy
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 "通知を表示するにはログインが必要です"
@@ -131,77 +135,83 @@ msgstr "この投稿はまだ公開されていません。"
msgid "To write a new post, you need to be logged in"
msgstr "新しい投稿を書くにはログインが必要です"
# src/routes/posts.rs:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr "あなたはこのブログの投稿者ではありません。"
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "新しい投稿"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "{0} を編集"
# src/routes/posts.rs:260
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr "このブログで投稿を公開する権限がありません。"
msgstr "このブログを編集する権限がありません。"
# src/routes/posts.rs:350
#, fuzzy
msgid "Your article has been updated."
msgstr "投稿を更新しました。"
msgstr "メディアがまだありません。"
# src/routes/posts.rs:532
#, fuzzy
msgid "Your article has been saved."
msgstr "投稿を保存しました。"
msgstr "メディアがまだありません。"
# src/routes/posts.rs:538
msgid "New article"
msgstr "新しい投稿"
# src/routes/posts.rs:572
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr "この投稿を削除する権限がありません。"
msgstr "このブログを削除する権限がありません。"
# src/routes/posts.rs:597
#, fuzzy
msgid "Your article has been deleted."
msgstr "投稿を削除しました。"
msgstr "メディアがまだありません。"
# src/routes/posts.rs:602
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
msgstr "削除しようとしている投稿は存在しないようです。すでに削除していませんか?"
# src/routes/posts.rs:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
msgstr "お使いのアカウントに関する十分な情報を取得できませんでした。ご自身のユーザー名が正しいことを確認してください。"
# src/routes/posts.rs:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
msgstr "投稿を再共有するにはログインが必要です"
# src/routes/session.rs:112
#, fuzzy
msgid "You are now connected."
msgstr "接続しました。"
msgstr "許可されていません。"
# src/routes/session.rs:131
#, fuzzy
msgid "You are now logged off."
msgstr "ログアウトしました。"
msgstr "許可されていません。"
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "パスワードのリセット"
# src/routes/session.rs:189
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr "こちらのリンクから、パスワードをリセットできます: {0}"
# src/routes/session.rs:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr "パスワードが正常にリセットされました。"
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr "申し訳ありませんが、リンクの有効期限が切れています。もう一度お試しください"
msgstr ""
"申し訳ありませんが、リンクの有効期限が切れています。もう一度お試しください"
# src/routes/user.rs:136
msgid "To access your dashboard, you need to be logged in"
@@ -209,39 +219,41 @@ msgstr "ダッシュボードにアクセスするにはログインが必要で
# src/routes/user.rs:158
msgid "You are no longer following {}."
msgstr "{} のフォローを解除しました。"
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr "{} をフォローしました。"
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr "誰かをフォローするにはログインが必要です"
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr "プロフィールを編集するにはログインが必要です"
# src/routes/user.rs:398
#, fuzzy
msgid "Your profile has been updated."
msgstr "プロフィールを更新しました。"
msgstr "メディアがまだありません。"
# src/routes/user.rs:425
#, fuzzy
msgid "Your account has been deleted."
msgstr "アカウントを削除しました。"
msgstr "メディアがまだありません。"
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr "他人のアカウントは削除できません。"
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr "登録はこのインスタンス内に限定されています。"
msgstr ""
# src/routes/user.rs:527
msgid "Your account has been created. Now you just need to log in, before you can use it."
msgstr "アカウントを作成しました。使用前に、ログインする必要があります。"
msgid ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
msgstr "内部サーバーエラー"
@@ -250,7 +262,8 @@ msgid "Something broke on our side."
msgstr "サーバー側で何らかの問題が発生しました。"
msgid "Sorry about that. If you think this is a bug, please report it."
msgstr "申し訳ありません。これがバグだと思われる場合は、問題を報告してください。"
msgstr ""
"申し訳ありません。これがバグだと思われる場合は、問題を報告してください。"
msgid "You are not authorized."
msgstr "許可されていません。"
@@ -273,8 +286,14 @@ 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 "Articles tagged \"{0}\""
msgstr "\"{0}\" タグがついた投稿"
@@ -288,11 +307,10 @@ msgstr "新しいブログ"
msgid "Create a blog"
msgstr "ブログを作成"
# src/template_utils.rs:251
msgid "Title"
msgstr "タイトル"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "省略可"
@@ -308,8 +326,10 @@ msgstr "説明"
msgid "Markdown syntax is supported"
msgstr "Markdown 記法に対応しています。"
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 "画像をアップロード"
@@ -348,12 +368,15 @@ msgstr "最新の投稿"
msgid "No posts to see here yet."
msgstr "ここには表示できる投稿はまだありません。"
#, fuzzy
msgid "Search result(s) for \"{0}\""
msgstr "\"{0}\" の検索結果"
#, fuzzy
msgid "Search result(s)"
msgstr "検索結果"
#, fuzzy
msgid "No results for your query"
msgstr "検索結果はありません"
@@ -369,68 +392,69 @@ msgstr "検索用語"
msgid "Advanced search"
msgstr "高度な検索"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr "投稿のタイトルに一致する語句"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr "サブタイトルに一致する語句"
msgid "Subtitle - byline"
msgstr "サブタイトル - 投稿者名"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr "内容に一致する語句"
msgid "Body content"
msgstr "本文の内容"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr "この日付以降を検索"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr "この日付以前を検索"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr "含まれるタグ"
msgid "Tags"
msgstr "タグ"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr "以下のいずれかのインスタンスに投稿"
msgid "Instance domain"
msgstr "インスタンスのドメイン"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr "以下のいずれかの投稿者が投稿"
#, fuzzy
msgid "Author(s)"
msgstr "投稿者"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr "以下のいずれかのブログに投稿"
msgid "Blog title"
msgstr "ブログのタイトル"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr "投稿の言語"
msgid "Language"
msgstr "言語"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr "適用されているライセンス"
@@ -438,13 +462,14 @@ msgid "Article license"
msgstr "投稿のライセンス"
msgid "Interact with {}"
msgstr "{} と関わる"
msgstr ""
#, fuzzy
msgid "Log in to interact"
msgstr "関わるにはログインしてください"
msgstr "いいねするにはログインしてください"
msgid "Enter your full username to interact"
msgstr "関わるにはご自身の完全なユーザー名を入力してください"
msgstr ""
msgid "Publish"
msgstr "公開"
@@ -452,28 +477,32 @@ msgstr "公開"
msgid "Classic editor (any changes will be lost)"
msgstr "クラシックエディター (すべての変更を破棄します)"
# src/template_utils.rs:251
# src/template_utils.rs:217
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 "メディアをギャラリーにアップロードして、その 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 "メディアをアップロード"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr "タグ (コンマ区切り)"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr "ライセンス"
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr "すべての権利を保持するには空欄にしてください"
@@ -521,8 +550,10 @@ 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 ""
msgid "Unsubscribe"
msgstr "フォロー解除"
@@ -533,7 +564,7 @@ msgstr "フォロー"
msgid "Comments"
msgstr "コメント"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr "コンテンツの警告"
@@ -553,10 +584,10 @@ msgid "Delete"
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 "Media upload"
msgstr "メディアのアップロード"
@@ -631,13 +662,13 @@ msgid "About this instance"
msgstr "このインスタンスについて"
msgid "Privacy policy"
msgstr "プライバシーポリシー"
msgstr ""
msgid "Administration"
msgstr "管理"
msgid "Documentation"
msgstr "ドキュメンテーション"
msgstr ""
msgid "Source code"
msgstr "ソースコード"
@@ -655,10 +686,12 @@ msgid "Local feed"
msgstr "このインスタンスのフィード"
msgid "Nothing to see here yet. Try subscribing to more people."
msgstr "ここに表示できるものはまだありません。もっとたくさんの人をフォローしてみましょう。"
msgstr ""
"ここに表示できるものはまだありません。もっとたくさんの人をフォローしてみま"
"しょう。"
msgid "Articles from {}"
msgstr "{} に掲載された投稿"
msgstr "{} 投稿"
msgid "All the articles of the Fediverse"
msgstr "Fediverse のすべての投稿"
@@ -673,12 +706,12 @@ msgid "Instances"
msgstr "インスタンス"
msgid "Ban"
msgstr "アカウント停止"
msgstr "止"
msgid "Administration of {0}"
msgstr "{0} の管理"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "名前"
@@ -686,12 +719,12 @@ msgid "Allow anyone to register here"
msgstr "不特定多数に登録を許可"
msgid "Short description"
msgstr "短い説明"
msgstr ""
msgid "Long description"
msgstr "長い説明"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr "投稿のデフォルトのライセンス"
@@ -716,14 +749,22 @@ msgstr "他のインスタンスからの接続数 <em>{0}</em>"
msgid "Administred by"
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 ""
msgid "Welcome to {}"
msgstr "{} へようこそ"
@@ -737,11 +778,11 @@ msgstr "ブロック"
msgid "Reset your password"
msgstr "パスワードをリセット"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr "新しいパスワード"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr "確認"
@@ -751,15 +792,15 @@ msgstr "パスワードを更新"
msgid "Log in"
msgstr "ログイン"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr "ユーザー名またはメールアドレス"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "パスワード"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr "メール"
@@ -769,8 +810,12 @@ 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 "Admin"
msgstr "管理者"
@@ -784,17 +829,19 @@ msgstr "プロフィールを編集"
msgid "Open on {0}"
msgstr "{0} で開く"
#, fuzzy
msgid "Follow {}"
msgstr "{} をフォロー"
msgstr "フォロー"
#, fuzzy
msgid "Log in to follow"
msgstr "フォローするにはログインしてください"
msgstr "ブーストするにはログインしてください"
msgid "Enter your full username handle to follow"
msgstr "フォローするにはご自身の完全なユーザー名を入力してください"
msgstr ""
msgid "{0}'s subscriptions"
msgstr "{0} がフォロー中のユーザー"
msgstr ""
msgid "Articles"
msgstr "投稿"
@@ -811,20 +858,24 @@ msgstr "アカウントを作成"
msgid "Create an account"
msgstr "アカウントを作成"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "ユーザー名"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "メールアドレス"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password confirmation"
msgstr "パスワードの確認"
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
msgstr "申し訳ありませんが、このインスタンスでの登録は限定されています。ですが、他のインスタンスを見つけることはできます。"
msgid ""
"Apologies, but registrations are closed on this particular instance. You "
"can, however, find a different one."
msgstr ""
"申し訳ありませんが、このインスタンスでの登録は限定されています。ですが、他の"
"インスタンスを見つけることはできます。"
msgid "{0}'s subscribers"
msgstr "{0} のフォロワー"
@@ -835,13 +886,14 @@ 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"
msgstr "アバターをアップロード"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr "表示名"
@@ -867,7 +919,9 @@ 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 "新しいブログを開始"
@@ -891,10 +945,14 @@ 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 "投稿は他の 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 "詳細な規則を読む"
@@ -920,16 +978,21 @@ msgstr "返信"
msgid "Delete this comment"
msgstr "このコメントを削除"
#, fuzzy
msgid "I'm from this instance"
msgstr "このインスタンスから閲覧しています"
msgstr "このインスタンスについて"
#, fuzzy
msgid "I'm from another instance"
msgstr "別のインスタンスから閲覧しています"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr "例: user@plu.me"
msgstr ""
#, fuzzy
msgid "Continue to your instance"
msgstr "ご自身のインスタンスに移動"
msgstr "インスタンスを設定"
#~ msgid "Delete this article"
#~ msgstr "この投稿を削除"
+420 -551
View File
File diff suppressed because it is too large Load Diff
+420 -551
View File
File diff suppressed because it is too large Load Diff
+672 -803
View File
File diff suppressed because it is too large Load Diff
+228 -163
View File
@@ -3,123 +3,129 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-19 09:06\n"
"Last-Translator: Ana Gelez (AnaGelez)\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: pl\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr "{0} skomentował(a) Twój artykuł."
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr "{0} jest subskrybentem do ciebie."
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "{0} polubił(a) Twój artykuł."
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "{0} wspomniał(a) o Tobie."
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr "{0} podbił(a) Twój artykuł."
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr "Awatar {0}"
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
msgstr "Aby utworzyć nowy blog, musisz być zalogowany"
# src/routes/blogs.rs:106
# 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:141
# src/routes/session.rs:259
#, fuzzy
msgid "Your blog was successfully created!"
msgstr "Twój blog został pomyślnie utworzony!"
msgstr "Twoje hasło zostało pomyślnie zresetowane."
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr "Twój blog został usunięty."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr "Nie masz uprawnień do usunięcia tego bloga."
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr "Nie masz uprawnień edytować tego bloga."
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
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:281
# src/routes/blogs.rs:280
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:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr "Twoje informacje o blogu zostały zaktualizowane."
msgstr ""
# src/routes/comments.rs:97
#, fuzzy
msgid "Your comment has been posted."
msgstr "Twój komentarz został opublikowany."
msgstr "Nie masz żadnej zawartości multimedialnej."
# src/routes/comments.rs:172
#, fuzzy
msgid "Your comment has been deleted."
msgstr "Twój komentarz został usunięty."
msgstr "Nie masz żadnej zawartości multimedialnej."
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr "Zapisano ustawienia instancji."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr "{} został(a) odblokowany(-a)."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr "{} został(a) zablokowany(-a)."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr "{} został/a zbanowany/a."
msgstr ""
# src/routes/likes.rs:51
msgid "To like a post, you need to be logged in"
msgstr "Aby polubić post, musisz być zalogowany"
# src/routes/medias.rs:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr "Twoje media zostały usunięte."
msgstr ""
# src/routes/medias.rs:146
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr "Nie można usunąć tego medium."
msgstr "Nie masz uprawnień do usunięcia tego bloga."
# src/routes/medias.rs:163
#, fuzzy
msgid "Your avatar has been updated."
msgstr "Twój awatar został zaktualizowany."
msgstr "Nie masz żadnej zawartości multimedialnej."
# src/routes/medias.rs:168
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to use this media."
msgstr "Nie możesz użyć tego medium."
msgstr "Nie masz uprawnień edytować tego bloga."
# 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"
@@ -131,75 +137,80 @@ 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:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr "Nie jesteś autorem tego bloga."
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "Nowy wpis"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "Edytuj {0}"
# src/routes/posts.rs:260
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr "Nie możesz publikować na tym blogu."
msgstr "Nie masz uprawnień edytować tego bloga."
# src/routes/posts.rs:350
#, fuzzy
msgid "Your article has been updated."
msgstr "Twój artykuł został zaktualizowany."
msgstr "Nie masz żadnej zawartości multimedialnej."
# src/routes/posts.rs:532
#, fuzzy
msgid "Your article has been saved."
msgstr "Twój artykuł został zapisany."
msgstr "Nie masz żadnej zawartości multimedialnej."
# src/routes/posts.rs:538
msgid "New article"
msgstr "Nowy artykuł"
# src/routes/posts.rs:572
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr "Nie można usunąć tego artykułu."
msgstr "Nie masz uprawnień do usunięcia tego bloga."
# src/routes/posts.rs:597
#, fuzzy
msgid "Your article has been deleted."
msgstr "Twój artykuł został usunięty."
msgstr "Nie masz żadnej zawartości multimedialnej."
# src/routes/posts.rs:602
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:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
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:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
msgstr "Aby udostępnić post, musisz być zalogowany"
# src/routes/session.rs:112
#, fuzzy
msgid "You are now connected."
msgstr "Teraz jesteś połączony."
msgstr "Nie jesteś zalogowany."
# src/routes/session.rs:131
#, fuzzy
msgid "You are now logged off."
msgstr "Teraz jesteś wylogowany."
msgstr "Nie jesteś zalogowany."
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "Resetowanie hasła"
# src/routes/session.rs:189
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr "Tutaj jest link do zresetowania hasła: {0}"
# src/routes/session.rs:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr "Twoje hasło zostało pomyślnie zresetowane."
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr "Przepraszam, ale link wygasł. Spróbuj ponownie"
@@ -209,39 +220,41 @@ msgstr "Aby uzyskać dostęp do panelu, musisz być zalogowany"
# src/routes/user.rs:158
msgid "You are no longer following {}."
msgstr "Już nie obserwujesz użytkownika {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr "Obserwujesz teraz użytkownika {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr "Aby subskrybować do kogoś, musisz być zalogowany"
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr "Aby edytować swój profil, musisz być zalogowany"
# src/routes/user.rs:398
#, fuzzy
msgid "Your profile has been updated."
msgstr "Twój profil został zaktualizowany."
msgstr "Nie masz żadnej zawartości multimedialnej."
# src/routes/user.rs:425
#, fuzzy
msgid "Your account has been deleted."
msgstr "Twoje konto zostało usunięte."
msgstr "Nie masz żadnej zawartości multimedialnej."
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr "Nie możesz usunąć konta innej osoby."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr "Rejestracje są zamknięte w tej instancji."
msgstr ""
# src/routes/user.rs:527
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 ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
msgstr "Wewnętrzny błąd serwera"
@@ -250,7 +263,8 @@ 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 "You are not authorized."
msgstr "Nie jesteś zalogowany."
@@ -273,8 +287,14 @@ msgstr "Możliwe, że była za długa."
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 "Articles tagged \"{0}\""
msgstr "Artykuły oznaczone „{0}”"
@@ -288,11 +308,10 @@ msgstr "Nowy blog"
msgid "Create a blog"
msgstr "Utwórz blog"
# src/template_utils.rs:251
msgid "Title"
msgstr "Tytuł"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "Nieobowiązkowe"
@@ -308,14 +327,17 @@ msgstr "Opis"
msgid "Markdown syntax is supported"
msgstr "Składnia Markdown jest obsługiwana"
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"
msgid "Blog icon"
msgstr "Ikona bloga"
msgstr "Ikona blog"
msgid "Blog banner"
msgstr "Banner bloga"
@@ -333,7 +355,7 @@ msgid "Permanently delete this blog"
msgstr "Bezpowrotnie usuń ten blog"
msgid "{}'s icon"
msgstr "Ikona {}"
msgstr ""
msgid "Edit"
msgstr "Edytuj"
@@ -343,7 +365,7 @@ msgid_plural "There are {0} authors on this blog: "
msgstr[0] "Ten blog ma jednego autora: "
msgstr[1] "Ten blog ma {0} autorów: "
msgstr[2] "Ten blog ma {0} autorów: "
msgstr[3] "Ten blog ma {0} autorów: "
msgstr[3] ""
msgid "Latest articles"
msgstr "Najnowsze artykuły"
@@ -351,14 +373,17 @@ msgstr "Najnowsze artykuły"
msgid "No posts to see here yet."
msgstr "Brak wpisów do wyświetlenia."
#, fuzzy
msgid "Search result(s) for \"{0}\""
msgstr "Wyniki wyszukiwania dla \"{0}\""
msgstr "Wyniki wyszukiwania dla {0}"
#, fuzzy
msgid "Search result(s)"
msgstr "Wyniki wyszukiwania"
#, fuzzy
msgid "No results for your query"
msgstr "Nie znaleziono wyników dla twojego zapytania"
msgstr "Brak wyników dla tego kryterium"
msgid "No more results for your query"
msgstr "Nie ma więcej wyników pasujących do tych kryteriów"
@@ -372,68 +397,69 @@ msgstr "Twoje kryterium"
msgid "Advanced search"
msgstr "Zaawansowane wyszukiwanie"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr "Tytuł artykułu pasujący do tych słów"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr "Podtytuł artykułu pasujący do tych słów"
msgid "Subtitle - byline"
msgstr "Podtytuł"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr "Zawartość pasująca do tych słów"
msgid "Body content"
msgstr "Zawartość wpisu"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr "Od tej daty"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr "Do tej daty"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr "Zawierający te tagi"
msgid "Tags"
msgstr "Tagi"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr "Opublikowany na jednej z tych instancji"
msgid "Instance domain"
msgstr "Domena instancji"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr "Opublikowany przez jednego z tych autorów"
#, fuzzy
msgid "Author(s)"
msgstr "Autor(rzy)"
msgstr "Autorzy"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr "Opublikowany na jednym z tych blogów"
msgid "Blog title"
msgstr "Tytuł bloga"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr "Napisany w tym języku"
msgid "Language"
msgstr "Język"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr "Opublikowany na tej licencji"
@@ -441,13 +467,13 @@ msgid "Article license"
msgstr "Licencja artykułu"
msgid "Interact with {}"
msgstr "Interaguj z {}"
msgstr "Interakcji z {}"
msgid "Log in to interact"
msgstr "Zaloguj się, aby wejść w interakcję"
msgstr ""
msgid "Enter your full username to interact"
msgstr "Wprowadź swoją pełną nazwę użytkownika, aby wejść w interakcję"
msgstr ""
msgid "Publish"
msgstr "Opublikuj"
@@ -455,28 +481,32 @@ msgstr "Opublikuj"
msgid "Classic editor (any changes will be lost)"
msgstr "Klasyczny edytor (wszelkie zmiany zostaną utracone)"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Subtitle"
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"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr "Tagi, oddzielone przecinkami"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr "Licencja"
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr "Pozostawienie pustego jest równe zastrzeżeniu wszystkich praw"
@@ -509,7 +539,7 @@ msgid_plural "{0} likes"
msgstr[0] "Jedno polubienie"
msgstr[1] "{0} polubienia"
msgstr[2] "{0} polubień"
msgstr[3] "{0} polubień"
msgstr[3] ""
msgid "I don't like this anymore"
msgstr "Już tego nie lubię"
@@ -522,7 +552,7 @@ msgid_plural "{0} boosts"
msgstr[0] "Jedno podbicie"
msgstr[1] "{0} podbicia"
msgstr[2] "{0} podbić"
msgstr[3] "{0} podbić"
msgstr[3] ""
msgid "I don't want to boost this anymore"
msgstr "Nie chcę tego podbijać"
@@ -530,8 +560,12 @@ 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 "Unsubscribe"
msgstr "Przestań subskrybować"
@@ -542,7 +576,7 @@ msgstr "Subskrybować"
msgid "Comments"
msgstr "Komentarze"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr "Ostrzeżenie o zawartości"
@@ -562,16 +596,18 @@ msgid "Delete"
msgstr "Usuń"
msgid "This article is still a draft. Only you and other authors can see it."
msgstr "Ten artykuł jest szkicem. Tylko Ty i inni autorzy mogą go zobaczyć."
msgstr ""
msgid "Only you and other authors can edit this article."
msgstr "Tylko Ty i inni autorzy mogą edytować ten artykuł."
msgstr ""
msgid "Media upload"
msgstr "Wysyłanie zawartości multimedialnej"
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 "Leave it empty, if none is needed"
msgstr "Pozostaw puste, jeżeli niepotrzebne"
@@ -640,13 +676,13 @@ msgid "About this instance"
msgstr "O tej instancji"
msgid "Privacy policy"
msgstr "Polityka prywatności"
msgstr ""
msgid "Administration"
msgstr "Administracja"
msgid "Documentation"
msgstr "Dokumentacja"
msgstr ""
msgid "Source code"
msgstr "Kod źródłowy"
@@ -667,7 +703,7 @@ msgid "Nothing to see here yet. Try subscribing to more people."
msgstr "Nic tu nie jeszcze do zobaczenia. Spróbuj subskrybować więcej osób."
msgid "Articles from {}"
msgstr "Artykuły od {}"
msgstr "Artykuły z {}"
msgid "All the articles of the Fediverse"
msgstr "Wszystkie artykuły w Fediwersum"
@@ -687,7 +723,7 @@ msgstr "Zbanuj"
msgid "Administration of {0}"
msgstr "Administracja {0}"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "Nazwa"
@@ -700,7 +736,7 @@ msgstr "Krótki opis"
msgid "Long description"
msgstr "Szczegółowy opis"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr "Domyślna licencja artykułów"
@@ -725,14 +761,22 @@ msgstr "Sa połączone z <em>{0}</em> innymi instancjami"
msgid "Administred by"
msgstr "Administrowany przez"
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 ""
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 ""
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 ""
msgid "Welcome to {}"
msgstr "Witamy na {}"
@@ -746,11 +790,11 @@ msgstr "Zablikuj"
msgid "Reset your password"
msgstr "Zmień swoje hasło"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr "Nowe hasło"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr "Potwierdzenie"
@@ -760,15 +804,15 @@ msgstr "Zaktualizuj hasło"
msgid "Log in"
msgstr "Zaloguj się"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr "Nazwa użytkownika, lub adres e-mail"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "Hasło"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr "Adres e-mail"
@@ -778,8 +822,12 @@ msgstr "Wyślij e-mail resetujący 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 "Admin"
msgstr "Administrator"
@@ -797,13 +845,14 @@ msgid "Follow {}"
msgstr "Obserwuj {}"
msgid "Log in to follow"
msgstr "Zaloguj się, aby śledzić"
msgstr ""
#, fuzzy
msgid "Enter your full username handle to follow"
msgstr "Wpisz swoją pełny uchwyt nazwy użytkownika, aby móc śledzić"
msgstr "Wpisz swoją pełną nazwę użytkownika, do naśladowania"
msgid "{0}'s subscriptions"
msgstr "Subskrypcje {0}"
msgstr ""
msgid "Articles"
msgstr "Artykuły"
@@ -820,23 +869,27 @@ msgstr "Utwórz konto"
msgid "Create an account"
msgstr "Utwórz nowe konto"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "Nazwa użytkownika"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "Adres e-mail"
# src/template_utils.rs:251
# src/template_utils.rs:217
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 subscribers"
msgstr "Subskrybujący {0}"
msgstr ""
msgid "Edit your account"
msgstr "Edytuj swoje konto"
@@ -844,13 +897,16 @@ 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ć swojego awatara, przesłać go do Twojej galerii, a następnie "
"wybierz stamtąd."
msgid "Upload an avatar"
msgstr "Wczytaj awatara"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr "Nazwa wyświetlana"
@@ -876,7 +932,9 @@ 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"
@@ -900,10 +958,15 @@ msgid "Plume is a decentralized blogging engine."
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."
msgstr ""
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"
@@ -930,15 +993,17 @@ msgid "Delete this comment"
msgstr "Usuń ten komentarz"
msgid "I'm from this instance"
msgstr "Jestem z tej instancji"
msgstr ""
msgid "I'm from another instance"
msgstr "Jestem z innej instancji"
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr "Przykład: user@plu.me"
msgid "Continue to your instance"
msgstr "Przejdź na swoją instancję"
msgstr ""
#~ msgid "Delete this article"
#~ msgstr "Usuń ten artykuł"
+347 -292
View File
File diff suppressed because it is too large Load Diff
+136 -101
View File
@@ -3,75 +3,78 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-18 06:16\n"
"Last-Translator: Ana Gelez (AnaGelez)\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: ro\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr "{0} a comentat pe articolul tău."
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr "{0} este abonat la tine."
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "{0} i-a plăcut articolul tău."
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "{0} te-a menționat."
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr "{0} impulsionat articolul tău."
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr "Avatarul lui {0}"
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
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:106
# src/routes/blogs.rs:109
msgid "A blog with the same name already exists."
msgstr ""
# src/routes/blogs.rs:141
# src/routes/session.rs:259
#, fuzzy
msgid "Your blog was successfully created!"
msgstr ""
msgstr "Parola dumneavoastră a fost resetată cu succes."
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr "Nu aveți permisiunea de a șterge acest blog."
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr ""
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
msgid "You can't use this media as a blog icon."
msgstr ""
# src/routes/blogs.rs:281
# src/routes/blogs.rs:280
msgid "You can't use this media as a blog banner."
msgstr ""
# src/routes/blogs.rs:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr ""
@@ -83,19 +86,19 @@ msgstr ""
msgid "Your comment has been deleted."
msgstr ""
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr ""
@@ -103,23 +106,25 @@ msgstr ""
msgid "To like a post, you need to be logged in"
msgstr ""
# src/routes/medias.rs:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr ""
# src/routes/medias.rs:146
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr ""
msgstr "Nu aveți permisiunea de a șterge acest blog."
# src/routes/medias.rs:163
msgid "Your avatar has been updated."
msgstr ""
# src/routes/medias.rs:168
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to use this media."
msgstr ""
msgstr "Nu aveți permisiunea de a șterge acest blog."
# src/routes/notifications.rs:28
# src/routes/notifications.rs:29
msgid "To see your notifications, you need to be logged in"
msgstr ""
@@ -131,21 +136,22 @@ 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:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr ""
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "Postare nouă"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "Editare {0}"
# src/routes/posts.rs:260
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr ""
msgstr "Nu aveți permisiunea de a șterge acest blog."
# src/routes/posts.rs:350
msgid "Your article has been updated."
@@ -155,51 +161,55 @@ msgstr ""
msgid "Your article has been saved."
msgstr ""
# src/routes/posts.rs:538
msgid "New article"
msgstr ""
# src/routes/posts.rs:572
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr ""
msgstr "Nu aveți permisiunea de a șterge acest blog."
# src/routes/posts.rs:597
msgid "Your article has been deleted."
msgstr ""
# src/routes/posts.rs:602
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
# src/routes/posts.rs:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
# src/routes/posts.rs:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
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:112
# src/routes/session.rs:108
msgid "You are now connected."
msgstr ""
# src/routes/session.rs:131
# src/routes/session.rs:124
msgid "You are now logged off."
msgstr ""
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "Resetare parolă"
# src/routes/session.rs:189
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr ""
# src/routes/session.rs:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr "Parola dumneavoastră a fost resetată cu succes."
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr ""
@@ -211,15 +221,15 @@ msgstr ""
msgid "You are no longer following {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr ""
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr ""
@@ -231,16 +241,18 @@ msgstr ""
msgid "Your account has been deleted."
msgstr ""
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr ""
# src/routes/user.rs:527
msgid "Your account has been created. Now you just need to log in, before you can use it."
msgid ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
@@ -273,7 +285,10 @@ 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 "Articles tagged \"{0}\""
@@ -288,11 +303,10 @@ msgstr ""
msgid "Create a blog"
msgstr ""
# src/template_utils.rs:251
msgid "Title"
msgstr "Titlu"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "Opţional"
@@ -308,7 +322,8 @@ msgstr ""
msgid "Markdown syntax is supported"
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"
@@ -371,68 +386,69 @@ msgstr ""
msgid "Advanced search"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr ""
msgid "Subtitle - byline"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr ""
msgid "Body content"
msgstr "Conţinut de corp"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr ""
msgstr "La această dată"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr ""
msgid "Tags"
msgstr "Etichete"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr ""
msgid "Instance domain"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr ""
#, fuzzy
msgid "Author(s)"
msgstr ""
msgstr "Autori"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr "Postat pe unul dintre aceste bloguri"
msgid "Blog title"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr "Scris în această limbă"
msgid "Language"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr ""
@@ -454,28 +470,30 @@ msgstr ""
msgid "Classic editor (any changes will be lost)"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
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."
msgid ""
"You can upload media to your gallery, and then copy their Markdown code into "
"your articles to insert them."
msgstr ""
msgid "Upload media"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr ""
@@ -527,7 +545,9 @@ 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 "Unsubscribe"
@@ -539,7 +559,7 @@ msgstr "Abonare"
msgid "Comments"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr ""
@@ -664,10 +684,10 @@ msgid "Nothing to see here yet. Try subscribing to more people."
msgstr ""
msgid "Articles from {}"
msgstr ""
msgstr "Articolele de la {}"
msgid "All the articles of the Fediverse"
msgstr ""
msgstr "Toate articolele Fediverse"
msgid "Users"
msgstr "Utilizatori"
@@ -684,7 +704,7 @@ msgstr "Interzice"
msgid "Administration of {0}"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "Nume"
@@ -697,7 +717,7 @@ msgstr ""
msgid "Long description"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr ""
@@ -722,13 +742,21 @@ msgstr ""
msgid "Administred by"
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 "Welcome to {}"
@@ -743,11 +771,11 @@ msgstr "Bloc"
msgid "Reset your password"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr ""
@@ -757,15 +785,15 @@ msgstr ""
msgid "Log in"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "Parolă"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr ""
@@ -775,7 +803,9 @@ 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 "Admin"
@@ -817,19 +847,21 @@ msgstr ""
msgid "Create an account"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "Nume utilizator"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "Email"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password confirmation"
msgstr ""
msgstr "Confirmarea parolei"
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 subscribers"
@@ -841,13 +873,14 @@ 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"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr ""
@@ -899,7 +932,9 @@ 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"
@@ -926,16 +961,16 @@ msgstr "Răspuns"
msgid "Delete this comment"
msgstr "Şterge comentariul"
#, fuzzy
msgid "I'm from this instance"
msgstr ""
msgstr "Despre această instanță"
msgid "I'm from another instance"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr ""
msgid "Continue to your instance"
msgstr ""
+145 -102
View File
@@ -3,75 +3,78 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-18 06:16\n"
"Last-Translator: Ana Gelez (AnaGelez)\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-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: ru\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr ""
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr ""
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "{0} понравился вашей статье."
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "{0} упомянул вас."
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr ""
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr ""
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
msgstr ""
# src/routes/blogs.rs:106
# src/routes/blogs.rs:109
msgid "A blog with the same name already exists."
msgstr ""
# src/routes/blogs.rs:141
# src/routes/blogs.rs:142
msgid "Your blog was successfully created!"
msgstr ""
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr ""
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr ""
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
msgid "You can't use this media as a blog icon."
msgstr ""
# src/routes/blogs.rs:281
# src/routes/blogs.rs:280
msgid "You can't use this media as a blog banner."
msgstr ""
# src/routes/blogs.rs:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr ""
@@ -83,19 +86,19 @@ msgstr ""
msgid "Your comment has been deleted."
msgstr ""
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr ""
@@ -103,11 +106,11 @@ msgstr ""
msgid "To like a post, you need to be logged in"
msgstr ""
# src/routes/medias.rs:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr ""
# src/routes/medias.rs:146
# src/routes/medias.rs:145
msgid "You are not allowed to delete this media."
msgstr ""
@@ -115,11 +118,11 @@ msgstr ""
msgid "Your avatar has been updated."
msgstr ""
# src/routes/medias.rs:168
#, fuzzy
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 ""
@@ -131,21 +134,21 @@ msgstr "Этот пост ещё не опубликован."
msgid "To write a new post, you need to be logged in"
msgstr ""
# src/routes/posts.rs:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr ""
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "Новый пост"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr ""
# src/routes/posts.rs:260
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr ""
msgstr "Вы не авторизованы."
# src/routes/posts.rs:350
msgid "Your article has been updated."
@@ -155,11 +158,10 @@ msgstr ""
msgid "Your article has been saved."
msgstr ""
# src/routes/posts.rs:538
msgid "New article"
msgstr "Новая статья"
# src/routes/posts.rs:572
# src/routes/posts.rs:565
msgid "You are not allowed to delete this article."
msgstr ""
@@ -167,39 +169,43 @@ msgstr ""
msgid "Your article has been deleted."
msgstr ""
# src/routes/posts.rs:602
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
# src/routes/posts.rs:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
# src/routes/posts.rs:630
msgid ""
"Couldn't obtain enough information about your account. Please make sure your "
"username is correct."
msgstr ""
# src/routes/reshares.rs:51
msgid "To reshare a post, you need to be logged in"
msgstr ""
# src/routes/session.rs:112
#, fuzzy
msgid "You are now connected."
msgstr ""
msgstr "Вы не авторизованы."
# src/routes/session.rs:131
#, fuzzy
msgid "You are now logged off."
msgstr ""
msgstr "Вы не авторизованы."
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr ""
# src/routes/session.rs:189
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr ""
# src/routes/session.rs:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr ""
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr ""
@@ -211,15 +217,15 @@ msgstr ""
msgid "You are no longer following {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr ""
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr ""
@@ -231,16 +237,18 @@ msgstr ""
msgid "Your account has been deleted."
msgstr ""
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr ""
# src/routes/user.rs:527
msgid "Your account has been created. Now you just need to log in, before you can use it."
msgid ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
@@ -250,7 +258,9 @@ msgid "Something broke on our side."
msgstr "Произошла ошибка на вашей стороне."
msgid "Sorry about that. If you think this is a bug, please report it."
msgstr "Приносим извинения. Если вы считаете что это ошибка, пожалуйста сообщите о ней."
msgstr ""
"Приносим извинения. Если вы считаете что это ошибка, пожалуйста сообщите о "
"ней."
msgid "You are not authorized."
msgstr "Вы не авторизованы."
@@ -273,8 +283,14 @@ 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 "Что-то не так с вашим 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 "Articles tagged \"{0}\""
msgstr ""
@@ -288,11 +304,10 @@ msgstr ""
msgid "Create a blog"
msgstr "Создать блог"
# src/template_utils.rs:251
msgid "Title"
msgstr "Заголовок"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "Не обязательно"
@@ -308,7 +323,8 @@ msgstr "Описание"
msgid "Markdown syntax is supported"
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"
@@ -357,8 +373,9 @@ msgstr ""
msgid "Search result(s)"
msgstr ""
#, fuzzy
msgid "No results for your query"
msgstr ""
msgstr "Перейти в вашу галерею"
msgid "No more results for your query"
msgstr ""
@@ -372,68 +389,68 @@ msgstr ""
msgid "Advanced search"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr ""
msgid "Subtitle - byline"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr ""
msgid "Body content"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr ""
msgid "Tags"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr ""
msgid "Instance domain"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr ""
msgid "Author(s)"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr ""
msgid "Blog title"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr ""
msgid "Language"
msgstr ""
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr ""
@@ -443,8 +460,9 @@ msgstr ""
msgid "Interact with {}"
msgstr ""
#, fuzzy
msgid "Log in to interact"
msgstr ""
msgstr "Войдите, чтобы отмечать понравившиеся посты"
msgid "Enter your full username to interact"
msgstr ""
@@ -455,28 +473,30 @@ msgstr "Опубликовать"
msgid "Classic editor (any changes will be lost)"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
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."
msgid ""
"You can upload media to your gallery, and then copy their Markdown code into "
"your articles to insert them."
msgstr ""
msgid "Upload media"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr ""
@@ -530,7 +550,9 @@ 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 "Unsubscribe"
@@ -542,7 +564,7 @@ msgstr ""
msgid "Comments"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr "Предупреждение о контенте"
@@ -687,7 +709,7 @@ msgstr ""
msgid "Administration of {0}"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "Имя"
@@ -700,7 +722,7 @@ msgstr ""
msgid "Long description"
msgstr "Длинное описание"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr ""
@@ -725,13 +747,21 @@ msgstr ""
msgid "Administred by"
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 "Welcome to {}"
@@ -746,11 +776,11 @@ msgstr "Заблокировать"
msgid "Reset your password"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr ""
@@ -760,15 +790,15 @@ msgstr ""
msgid "Log in"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "Пароль"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr ""
@@ -778,7 +808,9 @@ 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 "Admin"
@@ -793,11 +825,13 @@ msgstr "Редактировать ваш профиль"
msgid "Open on {0}"
msgstr ""
#, fuzzy
msgid "Follow {}"
msgstr ""
msgstr "Подписаться"
#, fuzzy
msgid "Log in to follow"
msgstr ""
msgstr "Войдите, чтобы продвигать посты"
msgid "Enter your full username handle to follow"
msgstr ""
@@ -820,19 +854,21 @@ msgstr "Создать аккаунт"
msgid "Create an account"
msgstr "Создать новый аккаунт"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "Имя пользователя"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "Электронная почта"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password confirmation"
msgstr ""
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 subscribers"
@@ -844,13 +880,14 @@ 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"
msgstr ""
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr ""
@@ -902,7 +939,9 @@ 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."
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"
@@ -929,16 +968,20 @@ msgstr "Ответить"
msgid "Delete this comment"
msgstr ""
#, fuzzy
msgid "I'm from this instance"
msgstr ""
msgstr "Об этом узле"
msgid "I'm from another instance"
msgstr ""
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr ""
#, fuzzy
msgid "Continue to your instance"
msgstr ""
msgstr "Настроить ваш узел"
#~ msgid "Delete this article"
#~ msgstr "Удалить эту статью"
+237 -168
View File
@@ -3,123 +3,127 @@ msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
"PO-Revision-Date: 2019-12-16 21:07\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2019-04-18 11:41\n"
"Last-Translator: Ana Gelez (AnaGelez)\n"
"Language-Team: Slovak\n"
"Language: sk_SK\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>=2 && n<=4) ? 1 : 3;\n"
"X-Generator: crowdin.com\n"
"X-Crowdin-Project: plume\n"
"X-Crowdin-Language: sk\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
# src/template_utils.rs:102
# src/template_utils.rs:68
msgid "{0} commented on your article."
msgstr "{0} komentoval/a tvoj článok."
# src/template_utils.rs:103
# src/template_utils.rs:69
msgid "{0} is subscribed to you."
msgstr "{0} odoberá tvoje príspevky."
# src/template_utils.rs:104
# src/template_utils.rs:70
msgid "{0} liked your article."
msgstr "{0} si obľúbil/a tvoj článok."
# src/template_utils.rs:105
# src/template_utils.rs:71
msgid "{0} mentioned you."
msgstr "{0} sa o tebe zmienil/a."
# src/template_utils.rs:106
# src/template_utils.rs:72
msgid "{0} boosted your article."
msgstr "{0} vyzdvihli tvoj článok."
# src/template_utils.rs:142
# src/template_utils.rs:108
msgid "{0}'s avatar"
msgstr "Avatar užívateľa {0}"
# src/routes/blogs.rs:64
# src/routes/blogs.rs:70
msgid "To create a new blog, you need to be logged in"
msgstr "Aby si vytvoril/a nový blog, musíš byť prihlásený/á"
msgstr "Aby si vytvoril/a nový blog, musíš sa prihlás"
# src/routes/blogs.rs:106
# 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:141
# src/routes/session.rs:259
#, fuzzy
msgid "Your blog was successfully created!"
msgstr "Tvoj blog bol úspešne vytvorený!"
msgstr "Tvoje heslo bolo úspešne zmenené."
# src/routes/blogs.rs:163
# src/routes/blogs.rs:167
msgid "Your blog was deleted."
msgstr "Tvoj blog bol zmazaný."
msgstr ""
# src/routes/blogs.rs:170
# src/routes/blogs.rs:172
msgid "You are not allowed to delete this blog."
msgstr "Nemáš povolenie vymazať tento blog."
# src/routes/blogs.rs:218
# src/routes/blogs.rs:217
msgid "You are not allowed to edit this blog."
msgstr "Nemáš dovolené upravovať tento blog."
# src/routes/blogs.rs:263
# src/routes/blogs.rs:262
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:281
# src/routes/blogs.rs:280
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:314
# src/routes/blogs.rs:312
msgid "Your blog information have been updated."
msgstr "Informácie o tvojom blogu boli aktualizované."
msgstr ""
# src/routes/comments.rs:97
#, fuzzy
msgid "Your comment has been posted."
msgstr "Tvoj komentár bol odoslaný."
msgstr "Ešte nemáš nahrané žiadne multimédiá."
# src/routes/comments.rs:172
#, fuzzy
msgid "Your comment has been deleted."
msgstr "Tvoj komentár bol vymazaný."
msgstr "Ešte nemáš nahrané žiadne multimédiá."
# src/routes/instance.rs:134
# src/routes/instance.rs:145
msgid "Instance settings have been saved."
msgstr "Nastavenia instancie boli uložené."
msgstr ""
# src/routes/instance.rs:175
# src/routes/instance.rs:182
msgid "{} have been unblocked."
msgstr "{} bol/a odblokovaný/á."
msgstr ""
# src/routes/instance.rs:177
# src/routes/instance.rs:184
msgid "{} have been blocked."
msgstr "{} bol/a blokovaný/á."
msgstr ""
# src/routes/instance.rs:221
# src/routes/instance.rs:218
msgid "{} have been banned."
msgstr "{} bol/a vylúčený/á."
msgstr ""
# src/routes/likes.rs:51
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:141
# src/routes/medias.rs:143
msgid "Your media have been deleted."
msgstr "Tvoj mediálny súbor bol vymazaný."
msgstr ""
# src/routes/medias.rs:146
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this media."
msgstr "Nemáš povolenie vymazať tento mediálny súbor."
msgstr "Nemáš povolenie vymazať tento blog."
# src/routes/medias.rs:163
#, fuzzy
msgid "Your avatar has been updated."
msgstr "Tvoj avatár bol aktualizovaný."
msgstr "Ešte nemáš nahrané žiadne multimédiá."
# src/routes/medias.rs:168
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to use this media."
msgstr "Nemáš povolenie použiť tento mediálny súbor."
msgstr "Nemáš dovolené upravovať tento blog."
# 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ť"
@@ -131,77 +135,84 @@ 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:139
# src/routes/posts.rs:140
msgid "You are not an author of this blog."
msgstr "Nie si autorom na tomto blogu."
# src/routes/posts.rs:146
# src/routes/posts.rs:147
msgid "New post"
msgstr "Nový príspevok"
# src/routes/posts.rs:191
# src/routes/posts.rs:192
msgid "Edit {0}"
msgstr "Uprav {0}"
# src/routes/posts.rs:260
# src/routes/blogs.rs:217
#, fuzzy
msgid "You are not allowed to publish on this blog."
msgstr "Na tomto blogu nemáš dovolené uverejňovať."
msgstr "Nemáš dovolené upravovať tento blog."
# src/routes/posts.rs:350
#, fuzzy
msgid "Your article has been updated."
msgstr "Tvoj článok bol upravený."
msgstr "Ešte nemáš nahrané žiadne multimédiá."
# src/routes/posts.rs:532
#, fuzzy
msgid "Your article has been saved."
msgstr "Tvoj článok bol uložený."
msgstr "Ešte nemáš nahrané žiadne multimédiá."
# src/routes/posts.rs:538
msgid "New article"
msgstr "Nový článok"
# src/routes/posts.rs:572
# src/routes/blogs.rs:172
#, fuzzy
msgid "You are not allowed to delete this article."
msgstr "Nemáš povolenie vymazať tento článok."
msgstr "Nemáš povolenie vymazať tento blog."
# src/routes/posts.rs:597
#, fuzzy
msgid "Your article has been deleted."
msgstr "Tvoj článok bol vymazaný."
msgstr "Ešte nemáš nahrané žiadne multimédiá."
# src/routes/posts.rs:602
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:593
msgid ""
"It looks like the article you tried to delete doesn't exist. Maybe it is "
"already gone?"
msgstr ""
# src/routes/posts.rs:642
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:630
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/reshares.rs:51
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:112
#, fuzzy
msgid "You are now connected."
msgstr "Teraz si pripojený/á."
msgstr "Nemáš oprávnenie."
# src/routes/session.rs:131
#, fuzzy
msgid "You are now logged off."
msgstr "Teraz si odhlásený."
msgstr "Nemáš oprávnenie."
# src/routes/session.rs:188
# src/routes/session.rs:181
msgid "Password reset"
msgstr "Obnovenie hesla"
# src/routes/session.rs:189
# src/routes/session.rs:182
msgid "Here is the link to reset your password: {0}"
msgstr "Tu je odkaz na obnovenie tvojho hesla: {0}"
# src/routes/session.rs:264
# src/routes/session.rs:259
msgid "Your password was successfully reset."
msgstr "Tvoje heslo bolo úspešne zmenené."
# src/routes/session.rs:274
# src/routes/session.rs:263
msgid "Sorry, but the link expired. Try again"
msgstr "Prepáč, ale link vypršal. Skús to znova"
msgstr "Prepáč, ale tento odkaz už vypŕšal. Skús to znova"
# src/routes/user.rs:136
msgid "To access your dashboard, you need to be logged in"
@@ -209,39 +220,41 @@ msgstr "Pre prístup k prehľadovému panelu sa musíš prihlásiť"
# src/routes/user.rs:158
msgid "You are no longer following {}."
msgstr "Už nenásleduješ {}."
msgstr ""
# src/routes/user.rs:175
# src/routes/user.rs:174
msgid "You are now following {}."
msgstr "Teraz už následuješ {}."
msgstr ""
# src/routes/user.rs:254
# src/routes/user.rs:244
msgid "To subscribe to someone, you need to be logged in"
msgstr "Ak chceš niekoho odoberať, musíš sa prihlásiť"
# src/routes/user.rs:356
# src/routes/user.rs:344
msgid "To edit your profile, you need to be logged in"
msgstr "Na upravenie svojho profilu sa musíš prihlásiť"
msgstr "Na upravenie tvojho profilu sa musíš prihlásiť"
# src/routes/user.rs:398
#, fuzzy
msgid "Your profile has been updated."
msgstr "Tvoj profil bol upravený."
msgstr "Ešte nemáš nahrané žiadne multimédiá."
# src/routes/user.rs:425
#, fuzzy
msgid "Your account has been deleted."
msgstr "Tvoj účet bol vymazaný."
msgstr "Ešte nemáš nahrané žiadne multimédiá."
# src/routes/user.rs:431
# src/routes/user.rs:411
msgid "You can't delete someone else's account."
msgstr "Nemôžeš vymazať účet niekoho iného."
msgstr ""
# src/routes/user.rs:503
# src/routes/user.rs:473
msgid "Registrations are closed on this instance."
msgstr "Registrácie na tejto instancii sú uzatvorené."
msgstr ""
# src/routes/user.rs:527
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 ""
"Your account has been created. Now you just need to log in, before you can "
"use it."
msgstr ""
msgid "Internal server error"
msgstr "Vnútorná chyba v rámci serveru"
@@ -273,8 +286,14 @@ msgstr "Možno to bolo príliš dlhé."
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 "Articles tagged \"{0}\""
msgstr "Články otagované pod \"{0}\""
@@ -288,11 +307,10 @@ msgstr "Nový blog"
msgid "Create a blog"
msgstr "Vytvor blog"
# src/template_utils.rs:251
msgid "Title"
msgstr "Nadpis"
# src/template_utils.rs:254
# src/template_utils.rs:220
msgid "Optional"
msgstr "Volitelné/Nepovinný údaj"
@@ -308,8 +326,11 @@ msgstr "Popis"
msgid "Markdown syntax is supported"
msgstr "Markdown syntaxia je podporovaná"
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"
@@ -327,7 +348,9 @@ msgid "Danger zone"
msgstr "Riziková zóna"
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 "Permanently delete this blog"
msgstr "Vymaž tento blog natrvalo"
@@ -351,20 +374,23 @@ msgstr "Najnovšie články"
msgid "No posts to see here yet."
msgstr "Ešte tu nemožno vidieť žiadné príspevky."
#, fuzzy
msgid "Search result(s) for \"{0}\""
msgstr "Výsledky hľadania pre \"{0}\""
msgstr "Výsledok hľadania pre \"{0}\""
#, fuzzy
msgid "Search result(s)"
msgstr "Výsledky hľadania"
msgstr "Výsledok hľadania"
#, fuzzy
msgid "No results for your query"
msgstr "Žiadne výsledky pre tvoje zadanie"
msgstr "Žiadny výsledok pre tvoje zadanie"
msgid "No more results for your query"
msgstr "Žiadne ďalšie výsledky pre tvoje zadanie"
msgid "Search"
msgstr "Hľadaj"
msgstr "Vyhľadávanie"
msgid "Your query"
msgstr "Tvoje zadanie"
@@ -372,68 +398,69 @@ msgstr "Tvoje zadanie"
msgid "Advanced search"
msgstr "Pokročilé vyhľadávanie"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Article title matching these words"
msgstr "Nadpis článku vyhovujúci týmto slovám"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Subtitle matching these words"
msgstr "Podnadpis zhodujúci sa s týmito slovami"
msgid "Subtitle - byline"
msgstr "Podnadpis"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Content matching these words"
msgstr "Obsah zodpovedajúci týmto slovám"
msgid "Body content"
msgstr "Obsah článku"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "From this date"
msgstr "Od tohto dátumu"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "To this date"
msgstr "Do tohto dátumu"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Containing these tags"
msgstr "Obsahuje tieto štítky"
msgstr "Obsahuje tieto tagy"
msgid "Tags"
msgstr "Štítky"
msgstr "Tagy"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these instances"
msgstr "Uverejnené na jednej z týchto instancií"
msgid "Instance domain"
msgstr "Doména instancie"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted by one of these authors"
msgstr "Uverejnené jedným z týchto autorov"
#, fuzzy
msgid "Author(s)"
msgstr "Autori"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Posted on one of these blogs"
msgstr "Uverejnené na jednom z týchto blogov"
msgid "Blog title"
msgstr "Titulok blogu"
msgstr "Názov blogu"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Written in this language"
msgstr "Písané v tomto jazyku"
msgid "Language"
msgstr "Jazyk"
# src/template_utils.rs:339
# src/template_utils.rs:305
msgid "Published under this license"
msgstr "Uverejnené pod touto licenciou"
@@ -455,30 +482,34 @@ msgstr "Zverejni"
msgid "Classic editor (any changes will be lost)"
msgstr "Klasický editor (akékoľvek zmeny budú stratené)"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Subtitle"
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á"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Tags, separated by commas"
msgstr "Štítky, oddelené čiarkami"
msgstr "Tagy, oddelené čiarkami"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "License"
msgstr "Licencia"
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Leave it empty to reserve all rights"
msgstr "Pre vyhradenie všetkých práv ponechaj prázdne"
msgstr "Ponechaj políčko prázdne, pre vyhradenie všetkých práv"
msgid "Illustration"
msgstr "Ilustrácia"
@@ -502,7 +533,7 @@ msgid "All rights reserved."
msgstr "Všetky práva vyhradné."
msgid "This article is under the {0} license."
msgstr "Tento článok je uverejnený pod licenciou {0}."
msgstr "Tento článok je publikovaný pod licenciou {0}."
msgid "One like"
msgid_plural "{0} likes"
@@ -515,7 +546,7 @@ msgid "I don't like this anymore"
msgstr "Už sa mi to nepáči"
msgid "Add yours"
msgstr "Pridaj tvoje"
msgstr "Pridaj svoj"
msgid "One boost"
msgid_plural "{0} boosts"
@@ -530,8 +561,13 @@ 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"
#, fuzzy
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 "Unsubscribe"
msgstr "Neodoberaj"
@@ -542,7 +578,7 @@ msgstr "Odoberaj"
msgid "Comments"
msgstr "Komentáre"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Content warning"
msgstr "Varovanie o obsahu"
@@ -562,19 +598,20 @@ msgid "Delete"
msgstr "Zmazať"
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 ""
msgid "Only you and other authors can edit this article."
msgstr "Iba ty, a ostatní autori môžu upravovať tento článok."
msgstr ""
msgid "Media upload"
msgstr "Nahrávanie mediálnych súborov"
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 "Leave it empty, if none is needed"
msgstr "Nechaj prázdne, ak žiadne nieje treba"
msgstr "Nechaj prázdne, ak žiadna nieje potreb"
msgid "File"
msgstr "Súbor"
@@ -589,7 +626,7 @@ msgid "Upload"
msgstr "Nahraj"
msgid "You don't have any media yet."
msgstr "Ešte nemáš nahraté žiadne médiá."
msgstr "Ešte nemáš nahrané žiadne multimédiá."
msgid "Content warning: {0}"
msgstr "Upozornenie o obsahu: {0}"
@@ -640,13 +677,13 @@ msgid "About this instance"
msgstr "O tejto instancii"
msgid "Privacy policy"
msgstr "Zásady súkromia"
msgstr ""
msgid "Administration"
msgstr "Administrácia"
msgid "Documentation"
msgstr "Dokumentácia"
msgstr ""
msgid "Source code"
msgstr "Zdrojový kód"
@@ -670,7 +707,7 @@ msgid "Articles from {}"
msgstr "Články od {}"
msgid "All the articles of the Fediverse"
msgstr "Všetky články vo Fediverse"
msgstr "Všetky články Fediversa"
msgid "Users"
msgstr "Užívatelia"
@@ -687,7 +724,7 @@ msgstr "Zakáž"
msgid "Administration of {0}"
msgstr "Spravovanie {0}"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Name"
msgstr "Pomenovanie"
@@ -700,7 +737,7 @@ msgstr "Stručný popis"
msgid "Long description"
msgstr "Podrobný popis"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Default article license"
msgstr "Predvolená licencia článkov"
@@ -717,7 +754,7 @@ msgid "Home to <em>{0}</em> people"
msgstr "Domov pre <em>{0}</em> ľudí"
msgid "Who wrote <em>{0}</em> articles"
msgstr "Ktorí napísal/i <em>{0}</em> článkov"
msgstr "Ktorí napísal <em>{0}</em> článkov"
msgid "And are connected to <em>{0}</em> other instances"
msgstr "A sú pripojení k <em>{0}</em> ďalším instanciám"
@@ -725,14 +762,22 @@ msgstr "A sú pripojení k <em>{0}</em> ďalším instanciám"
msgid "Administred by"
msgstr "Správcom je"
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 ""
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 ""
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 ""
msgid "Welcome to {}"
msgstr "Vitaj na {}"
@@ -746,11 +791,11 @@ msgstr "Blokuj"
msgid "Reset your password"
msgstr "Obnov svoje heslo"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "New password"
msgstr "Nové heslo"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Confirmation"
msgstr "Potvrdenie"
@@ -760,15 +805,15 @@ msgstr "Aktualizovať heslo"
msgid "Log in"
msgstr "Prihlás sa"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username, or email"
msgstr "Užívateľské meno, alebo email"
msgstr "Používateľské meno, alebo email"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Password"
msgstr "Heslo"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "E-mail"
msgstr "Emailová adresa"
@@ -778,8 +823,12 @@ msgstr "Pošli odkaz na obnovu hesla"
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 "Admin"
msgstr "Správca"
@@ -796,11 +845,13 @@ msgstr "Otvor na {0}"
msgid "Follow {}"
msgstr "Následuj {}"
#, fuzzy
msgid "Log in to follow"
msgstr "Pre následovanie sa prihlás"
#, fuzzy
msgid "Enter your full username handle to follow"
msgstr "Pre následovanie zadaj svoju prezývku v úplnosti, aby si následoval/a"
msgstr "Zadaj svoju prezývku v úplnosti, aby si následoval/a"
msgid "{0}'s subscriptions"
msgstr "Odoberané užívateľom {0}"
@@ -818,22 +869,26 @@ msgid "Create your account"
msgstr "Vytvor si účet"
msgid "Create an account"
msgstr "Vytvor účet"
msgstr "Vytvor účet"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Username"
msgstr "Užívateľské meno"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Email"
msgstr "Emailová adresa"
# src/template_utils.rs:251
# src/template_utils.rs:217
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 zatvorené. Môžeš si "
"však nájsť inú."
msgid "{0}'s subscribers"
msgstr "Odberatelia obsahu od {0}"
@@ -844,13 +899,15 @@ 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"
# src/template_utils.rs:251
# src/template_utils.rs:217
msgid "Display name"
msgstr "Zobrazované meno"
@@ -861,13 +918,16 @@ msgid "Update account"
msgstr "Aktualizuj účet"
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 "Your Dashboard"
msgstr "Tvoja nástenka"
@@ -876,7 +936,9 @@ 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"
@@ -897,13 +959,18 @@ msgid "What is Plume?"
msgstr "Čo je to Plume?"
msgid "Plume is a decentralized blogging engine."
msgstr "Plume je decentralizovaná blogovacia platforma."
msgstr "Plume je decentralizovanou blogovacou platformou."
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á"
@@ -935,10 +1002,12 @@ msgstr "Som z tejto instancie"
msgid "I'm from another instance"
msgstr "Som z inej instancie"
# src/template_utils.rs:259
# src/template_utils.rs:225
msgid "Example: user@plu.me"
msgstr "Príklad: uzivatel@plu.me"
msgstr "Príklad: user@plu.me"
msgid "Continue to your instance"
msgstr "Pokračuj na tvoju instanciu"
#~ msgid "Delete this article"
#~ msgstr "Vymaž tento článok"
+420 -551
View File
File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More