Compare commits
115 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ec3205b372 | |||
| 45119d9a8c | |||
| 1065078f75 | |||
| 0ce904a985 | |||
| 254eec8e6a | |||
| 0e4cb4f6e1 | |||
| 9b05ac90df | |||
| f28a7fa508 | |||
| 65e95d8998 | |||
| 808b8f8e98 | |||
| 43b46a8be4 | |||
| 9bbfc71fc8 | |||
| 5d58b31f1c | |||
| e31a2238fb | |||
| 7de37bc9b7 | |||
| 13f7734751 | |||
| b4395bce99 | |||
| 7c82b08615 | |||
| 6498dbfbb7 | |||
| 74254aed4a | |||
| 8c48abf48e | |||
| 8958226604 | |||
| 005a6db230 | |||
| 4397abd8ab | |||
| e53882f555 | |||
| 5d5e61dfa1 | |||
| c5c6b70a89 | |||
| 6778a0e943 | |||
| 677e238c6d | |||
| b0bc2372fa | |||
| 6a808c7cc5 | |||
| d53543ccb1 | |||
| 88d7d54601 | |||
| 0f0c896887 | |||
| 65233c0a9a | |||
| 32e1e4788f | |||
| 181a78876b | |||
| 61d5446113 | |||
| c786569171 | |||
| d83a75e3f4 | |||
| a6f06559ea | |||
| 2084145dd3 | |||
| dd54058516 | |||
| 4056a54d44 | |||
| 191cd11741 | |||
| 800e74da67 | |||
| 237da47950 | |||
| ec12539fd0 | |||
| a537db559b | |||
| 2ba158df67 | |||
| c0c066547f | |||
| c3f59b14b9 | |||
| 1d06a8f1ad | |||
| efaf1295e9 | |||
| 4bc9cf3ad1 | |||
| 1e3851ea69 | |||
| b6d38536e3 | |||
| 9b4c678aa9 | |||
| a65775d85b | |||
| 192c7677c3 | |||
| 2a31a7b601 | |||
| 355fd7cb1d | |||
| 40efd73dfc | |||
| 31b144c76d | |||
| 31a46514cb | |||
| c8d906eb99 | |||
| 2895a1c819 | |||
| a4a5d08662 | |||
| b97c9d2165 | |||
| 5b7e8a69a5 | |||
| 9601e99e33 | |||
| d9a59f1b07 | |||
| b6a6af906a | |||
| 2c4799ce27 | |||
| b33b19849c | |||
| e398f36c57 | |||
| ee6064eee8 | |||
| 9d012c8f3c | |||
| 8888dbba0a | |||
| 6f8d5c1eb4 | |||
| 62da4a3d5c | |||
| 5cfc8e71a5 | |||
| a599760891 | |||
| 00324f668f | |||
| d4549704b9 | |||
| 0836e3d693 | |||
| 0058c3053d | |||
| 2a1a0a23a5 | |||
| 5614e3bd59 | |||
| acbda3cde1 | |||
| 0755436458 | |||
| 3daf405ae2 | |||
| 53dc3b0c03 | |||
| 371dcc5091 | |||
| 905fe54fa3 | |||
| 62c0827ff5 | |||
| d6c65ce81a | |||
| 5532b4a4d7 | |||
| 637bd3347b | |||
| bac373a818 | |||
| f0e7ea5640 | |||
| 4b981e0fad | |||
| 8fb9d861de | |||
| 199269ba3c | |||
| 0b9ec4c52c | |||
| 0e51565cc8 | |||
| 0418d35b67 | |||
| bf9d25363b | |||
| 84f00c57d1 | |||
| 7c1a5421fa | |||
| 3815bfe980 | |||
| de448c3192 | |||
| 967e2dfde6 | |||
| dd3c1eac5f | |||
| abc0a794c1 |
@@ -0,0 +1,30 @@
|
||||
name: cd
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
-
|
||||
name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
-
|
||||
name: Build and push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
push: true
|
||||
tags: plumeorg/plume:latest
|
||||
@@ -0,0 +1,36 @@
|
||||
name: cd
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*.*.*'
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
-
|
||||
name: Docker meta
|
||||
id: meta
|
||||
uses: docker/metadata-action@v3
|
||||
with:
|
||||
images: plumeorg/plume
|
||||
-
|
||||
name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
-
|
||||
name: Build and push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
push: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
+20
-1
@@ -4,6 +4,24 @@
|
||||
|
||||
## [Unreleased] - ReleaseDate
|
||||
|
||||
## [[0.7.1]] - 2022-01-12
|
||||
|
||||
### Added
|
||||
|
||||
- Introduce environment variable `MAIL_PORT` (#980)
|
||||
- Introduce email sign-up feature (#636, #1002)
|
||||
|
||||
### Changed
|
||||
|
||||
- Some styling improvements (#976, #977, #978)
|
||||
- Respond with error status code when error (#1002)
|
||||
|
||||
### Fiexed
|
||||
|
||||
- Fix comment link (#974)
|
||||
- Fix a bug that prevents posting articles (#975)
|
||||
- Fix a bug that notification page doesn't show (#981)
|
||||
|
||||
## [[0.7.0]] - 2022-01-02
|
||||
|
||||
### Added
|
||||
@@ -218,7 +236,8 @@
|
||||
- Ability to create multiple blogs
|
||||
|
||||
<!-- next-url -->
|
||||
[Unreleased]: https://github.com/Plume-org/Plume/compare/0.7.0...HEAD
|
||||
[Unreleased]: https://github.com/Plume-org/Plume/compare/0.7.1...HEAD
|
||||
[[0.7.1]]: https://github.com/Plume-org/Plume/compare/0.7.0...0.7.1
|
||||
[[0.7.0]]: https://github.com/Plume-org/Plume/compare/0.6.0...0.7.0
|
||||
[[0.6.0]]: https://github.com/Plume-org/Plume/compare/0.5.0...0.6.0
|
||||
[0.5.0]: https://github.com/Plume-org/Plume/compare/0.4.0-alpha-4...0.5.0
|
||||
|
||||
Generated
+497
-422
File diff suppressed because it is too large
Load Diff
+7
-11
@@ -1,36 +1,32 @@
|
||||
[package]
|
||||
authors = ["Plume contributors"]
|
||||
name = "plume"
|
||||
version = "0.7.0"
|
||||
version = "0.7.1"
|
||||
repository = "https://github.com/Plume-org/Plume"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
activitypub = "0.1.3"
|
||||
askama_escape = "0.1"
|
||||
atom_syndication = "0.6"
|
||||
clap = "2.33"
|
||||
dotenv = "0.15.0"
|
||||
gettext = { git = "https://github.com/Plume-org/gettext/", rev = "294c54d74c699fbc66502b480a37cc66c1daa7f3" }
|
||||
gettext-macros = { git = "https://github.com/Plume-org/gettext-macros/", rev = "a7c605f7edd6bfbfbfe7778026bfefd88d82db10" }
|
||||
gettext-utils = { git = "https://github.com/Plume-org/gettext-macros/", rev = "a7c605f7edd6bfbfbfe7778026bfefd88d82db10" }
|
||||
guid-create = "0.1"
|
||||
lettre = "0.9.2"
|
||||
guid-create = "0.2"
|
||||
lettre_email = "0.9.2"
|
||||
num_cpus = "1.10"
|
||||
rocket = "0.4.6"
|
||||
rocket_contrib = { version = "0.4.5", features = ["json"] }
|
||||
rocket_i18n = { git = "https://github.com/Plume-org/rocket_i18n", rev = "e922afa7c366038b3433278c03b1456b346074f2" }
|
||||
rpassword = "4.0"
|
||||
scheduled-thread-pool = "0.2.2"
|
||||
serde = "1.0"
|
||||
serde_json = "1.0.70"
|
||||
shrinkwraprs = "0.2.1"
|
||||
validator = "0.8"
|
||||
validator_derive = "0.8"
|
||||
shrinkwraprs = "0.3.0"
|
||||
validator = { version = "0.14", features = ["derive"] }
|
||||
webfinger = "0.4.1"
|
||||
tracing = "0.1.22"
|
||||
tracing-subscriber = "0.2.15"
|
||||
tracing-subscriber = "0.3.5"
|
||||
riker = "0.4.2"
|
||||
|
||||
[[bin]]
|
||||
@@ -52,7 +48,7 @@ version = "1.4.5"
|
||||
[dependencies.multipart]
|
||||
default-features = false
|
||||
features = ["server"]
|
||||
version = "0.16"
|
||||
version = "0.18"
|
||||
|
||||
[dependencies.plume-api]
|
||||
path = "plume-api"
|
||||
@@ -69,7 +65,7 @@ rev = "29910f2829e7e590a540da3804336577b48c7b31"
|
||||
|
||||
[build-dependencies]
|
||||
ructe = "0.13.0"
|
||||
rsass = "0.9"
|
||||
rsass = "0.23"
|
||||
|
||||
[features]
|
||||
default = ["postgres"]
|
||||
|
||||
@@ -516,4 +516,11 @@ input:checked ~ .cw-container > .cw-text {
|
||||
main .article-meta > *, main .article-meta .comments, main .article-meta > .banner > * {
|
||||
margin: 0 5%;
|
||||
}
|
||||
|
||||
.bottom-bar {
|
||||
align-items: center;
|
||||
& > div:nth-child(2) {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -219,15 +219,19 @@ p.error {
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.cover-link {
|
||||
margin: 0;
|
||||
|
||||
&:hover {
|
||||
opacity: 0.9;
|
||||
}
|
||||
}
|
||||
|
||||
.cover {
|
||||
min-height: 10em;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
margin: 0px;
|
||||
|
||||
&:hover {
|
||||
opacity: 0.9;
|
||||
}
|
||||
}
|
||||
|
||||
header {
|
||||
@@ -245,6 +249,9 @@ p.error {
|
||||
position: relative;
|
||||
a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding-block-start: 0.5em;
|
||||
transition: color 0.1s ease-in;
|
||||
color: $text-color;
|
||||
|
||||
@@ -569,14 +576,6 @@ figure {
|
||||
}
|
||||
}
|
||||
|
||||
.bottom-bar {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
& > div {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
main .article-meta .comments .comment {
|
||||
header {
|
||||
flex-direction: column;
|
||||
|
||||
@@ -120,8 +120,14 @@ fn compile_theme(path: &Path, out_dir: &Path) -> std::io::Result<()> {
|
||||
// compile the .scss/.sass file
|
||||
let mut out = File::create(out.join("theme.css"))?;
|
||||
out.write_all(
|
||||
&rsass::compile_scss_file(path, rsass::OutputStyle::Compressed)
|
||||
.expect("SCSS compilation error"),
|
||||
&rsass::compile_scss_path(
|
||||
path,
|
||||
rsass::output::Format {
|
||||
style: rsass::output::Style::Compressed,
|
||||
..rsass::output::Format::default()
|
||||
},
|
||||
)
|
||||
.expect("SCSS compilation error"),
|
||||
)?;
|
||||
|
||||
Ok(())
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
DROP TABLE email_signups;
|
||||
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE email_signups (
|
||||
id SERIAL PRIMARY KEY,
|
||||
email VARCHAR NOT NULL,
|
||||
token VARCHAR NOT NULL,
|
||||
expiration_date TIMESTAMP NOT NULL
|
||||
);
|
||||
|
||||
CREATE INDEX email_signups_token ON email_signups (token);
|
||||
CREATE UNIQUE INDEX email_signups_token_requests_email ON email_signups (email);
|
||||
@@ -0,0 +1 @@
|
||||
DROP TABLE email_signups;
|
||||
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE email_signups (
|
||||
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
email VARCHAR NOT NULL,
|
||||
token VARCHAR NOT NULL,
|
||||
expiration_date TIMESTAMP NOT NULL
|
||||
);
|
||||
|
||||
CREATE INDEX email_signups_token ON email_signups (token);
|
||||
CREATE UNIQUE INDEX email_signups_token_requests_email ON email_signups (email);
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "plume-api"
|
||||
version = "0.7.0"
|
||||
version = "0.7.1"
|
||||
authors = ["Plume contributors"]
|
||||
edition = "2018"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "plume-cli"
|
||||
version = "0.7.0"
|
||||
version = "0.7.1"
|
||||
authors = ["Plume contributors"]
|
||||
edition = "2018"
|
||||
|
||||
@@ -10,7 +10,7 @@ path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
clap = "2.33"
|
||||
dotenv = "0.14"
|
||||
dotenv = "0.15"
|
||||
rpassword = "5.0.0"
|
||||
|
||||
[dependencies.diesel]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "plume-common"
|
||||
version = "0.7.0"
|
||||
version = "0.7.1"
|
||||
authors = ["Plume contributors"]
|
||||
edition = "2018"
|
||||
|
||||
@@ -9,10 +9,9 @@ activitypub = "0.1.1"
|
||||
activitystreams-derive = "0.1.1"
|
||||
activitystreams-traits = "0.1.0"
|
||||
array_tool = "1.0"
|
||||
base64 = "0.10"
|
||||
heck = "0.3.0"
|
||||
hex = "0.3"
|
||||
hyper = "0.12.33"
|
||||
base64 = "0.13"
|
||||
heck = "0.4.0"
|
||||
hex = "0.4"
|
||||
openssl = "0.10.22"
|
||||
rocket = "0.4.6"
|
||||
reqwest = { version = "0.9", features = ["socks"] }
|
||||
@@ -24,6 +23,7 @@ syntect = "4.5.0"
|
||||
tokio = "0.1.22"
|
||||
regex-syntax = { version = "0.6.17", default-features = false, features = ["unicode-perl"] }
|
||||
tracing = "0.1.22"
|
||||
askama_escape = "0.10.2"
|
||||
|
||||
[dependencies.chrono]
|
||||
features = ["serde"]
|
||||
@@ -36,3 +36,5 @@ branch = "bidi-plume"
|
||||
|
||||
[dev-dependencies]
|
||||
once_cell = "1.5.2"
|
||||
|
||||
[features]
|
||||
|
||||
@@ -1,11 +1,8 @@
|
||||
use heck::CamelCase;
|
||||
use heck::ToUpperCamelCase;
|
||||
use openssl::rand::rand_bytes;
|
||||
use pulldown_cmark::{html, CodeBlockKind, CowStr, Event, LinkType, Options, Parser, Tag};
|
||||
use regex_syntax::is_word_character;
|
||||
use rocket::{
|
||||
http::uri::Uri,
|
||||
response::{Flash, Redirect},
|
||||
};
|
||||
use rocket::http::uri::Uri;
|
||||
use std::collections::HashSet;
|
||||
use syntect::html::{ClassStyle, ClassedHTMLGenerator};
|
||||
use syntect::parsing::SyntaxSet;
|
||||
@@ -21,7 +18,7 @@ pub fn random_hex() -> String {
|
||||
|
||||
/// Remove non alphanumeric characters and CamelCase a string
|
||||
pub fn make_actor_id(name: &str) -> String {
|
||||
name.to_camel_case()
|
||||
name.to_upper_camel_case()
|
||||
.chars()
|
||||
.filter(|c| c.is_alphanumeric())
|
||||
.collect()
|
||||
@@ -80,19 +77,6 @@ pub fn iri_percent_encode_seg_char(c: char) -> String {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Redirects to the login page with a given message.
|
||||
*
|
||||
* Note that the message should be translated before passed to this function.
|
||||
*/
|
||||
pub fn requires_login<T: Into<Uri<'static>>>(message: &str, url: T) -> Flash<Redirect> {
|
||||
Flash::new(
|
||||
Redirect::to(format!("/login?m={}", Uri::percent_encode(message))),
|
||||
"callback",
|
||||
url.into().to_string(),
|
||||
)
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
enum State {
|
||||
Mention,
|
||||
@@ -466,6 +450,10 @@ pub fn md_to_html<'a>(
|
||||
(buf, mentions.collect(), hashtags.collect())
|
||||
}
|
||||
|
||||
pub fn escape(string: &str) -> askama_escape::Escaped<askama_escape::Html> {
|
||||
askama_escape::escape(string, askama_escape::Html)
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "plume-front"
|
||||
version = "0.7.0"
|
||||
version = "0.7.1"
|
||||
authors = ["Plume contributors"]
|
||||
edition = "2018"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "plume-macro"
|
||||
version = "0.7.0"
|
||||
version = "0.7.1"
|
||||
authors = ["Trinity Pointard <trinity.pointard@insa-rennes.fr>"]
|
||||
edition = "2018"
|
||||
description = "Plume procedural macros"
|
||||
|
||||
@@ -1,18 +1,17 @@
|
||||
[package]
|
||||
name = "plume-models"
|
||||
version = "0.7.0"
|
||||
version = "0.7.1"
|
||||
authors = ["Plume contributors"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
activitypub = "0.1.1"
|
||||
ammonia = "2.1.1"
|
||||
askama_escape = "0.1"
|
||||
ammonia = "3.1.2"
|
||||
bcrypt = "0.10.1"
|
||||
guid-create = "0.1"
|
||||
itertools = "0.8.0"
|
||||
guid-create = "0.2"
|
||||
itertools = "0.10.3"
|
||||
lazy_static = "1.0"
|
||||
ldap3 = "0.7.1"
|
||||
ldap3 = "0.9.3"
|
||||
migrations_internals= "1.4.0"
|
||||
openssl = "0.10.22"
|
||||
rocket = "0.4.6"
|
||||
@@ -26,14 +25,16 @@ tantivy = "0.13.3"
|
||||
url = "2.1"
|
||||
walkdir = "2.2"
|
||||
webfinger = "0.4.1"
|
||||
whatlang = "0.11.1"
|
||||
shrinkwraprs = "0.2.1"
|
||||
whatlang = "0.13.0"
|
||||
shrinkwraprs = "0.3.0"
|
||||
diesel-derive-newtype = "0.1.2"
|
||||
glob = "0.3.0"
|
||||
lindera-tantivy = { version = "0.7.1", optional = true }
|
||||
tracing = "0.1.22"
|
||||
riker = "0.4.2"
|
||||
once_cell = "1.5.2"
|
||||
lettre = "0.9.6"
|
||||
native-tls = "0.2.8"
|
||||
|
||||
[dependencies.chrono]
|
||||
features = ["serde"]
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
use crate::search::TokenizerKind as SearchTokenizer;
|
||||
use crate::signups::Strategy as SignupStrategy;
|
||||
use crate::smtp::{SMTP_PORT, SUBMISSIONS_PORT, SUBMISSION_PORT};
|
||||
use rocket::config::Limits;
|
||||
use rocket::Config as RocketConfig;
|
||||
use std::collections::HashSet;
|
||||
@@ -15,12 +17,14 @@ pub struct Config {
|
||||
pub db_name: &'static str,
|
||||
pub db_max_size: Option<u32>,
|
||||
pub db_min_idle: Option<u32>,
|
||||
pub signup: SignupStrategy,
|
||||
pub search_index: String,
|
||||
pub search_tokenizers: SearchTokenizerConfig,
|
||||
pub rocket: Result<RocketConfig, InvalidRocketConfig>,
|
||||
pub logo: LogoConfig,
|
||||
pub default_theme: String,
|
||||
pub media_directory: String,
|
||||
pub mail: Option<MailConfig>,
|
||||
pub ldap: Option<LdapConfig>,
|
||||
pub proxy: Option<ProxyConfig>,
|
||||
}
|
||||
@@ -245,6 +249,31 @@ impl SearchTokenizerConfig {
|
||||
}
|
||||
}
|
||||
|
||||
pub struct MailConfig {
|
||||
pub server: String,
|
||||
pub port: u16,
|
||||
pub helo_name: String,
|
||||
pub username: String,
|
||||
pub password: String,
|
||||
}
|
||||
|
||||
fn get_mail_config() -> Option<MailConfig> {
|
||||
Some(MailConfig {
|
||||
server: env::var("MAIL_SERVER").ok()?,
|
||||
port: env::var("MAIL_PORT").map_or(SUBMISSIONS_PORT, |port| match port.as_str() {
|
||||
"smtp" => SMTP_PORT,
|
||||
"submissions" => SUBMISSIONS_PORT,
|
||||
"submission" => SUBMISSION_PORT,
|
||||
number => number
|
||||
.parse()
|
||||
.expect(r#"MAIL_PORT must be "smtp", "submissions", "submission" or an integer."#),
|
||||
}),
|
||||
helo_name: env::var("MAIL_HELO_NAME").unwrap_or_else(|_| "localhost".to_owned()),
|
||||
username: env::var("MAIL_USER").ok()?,
|
||||
password: env::var("MAIL_PASSWORD").ok()?,
|
||||
})
|
||||
}
|
||||
|
||||
pub struct LdapConfig {
|
||||
pub addr: String,
|
||||
pub base_dn: String,
|
||||
@@ -335,6 +364,7 @@ lazy_static! {
|
||||
s.parse::<u32>()
|
||||
.expect("Couldn't parse DB_MIN_IDLE into u32")
|
||||
)),
|
||||
signup: var("SIGNUP").map_or(SignupStrategy::default(), |s| s.parse().unwrap()),
|
||||
#[cfg(feature = "postgres")]
|
||||
database_url: var("DATABASE_URL")
|
||||
.unwrap_or_else(|_| format!("postgres://plume:plume@localhost/{}", DB_NAME)),
|
||||
@@ -347,6 +377,7 @@ lazy_static! {
|
||||
default_theme: var("DEFAULT_THEME").unwrap_or_else(|_| "default-light".to_owned()),
|
||||
media_directory: var("MEDIA_UPLOAD_DIRECTORY")
|
||||
.unwrap_or_else(|_| "static/media".to_owned()),
|
||||
mail: get_mail_config(),
|
||||
ldap: get_ldap_config(),
|
||||
proxy: get_proxy_config(),
|
||||
};
|
||||
|
||||
@@ -0,0 +1,143 @@
|
||||
use crate::{
|
||||
db_conn::DbConn,
|
||||
schema::email_signups,
|
||||
users::{NewUser, Role, User},
|
||||
Error, Result,
|
||||
};
|
||||
use chrono::{offset::Utc, Duration, NaiveDateTime};
|
||||
use diesel::{
|
||||
Connection as _, ExpressionMethods, Identifiable, Insertable, QueryDsl, Queryable, RunQueryDsl,
|
||||
};
|
||||
use plume_common::utils::random_hex;
|
||||
use std::ops::Deref;
|
||||
|
||||
const TOKEN_VALIDITY_HOURS: i64 = 2;
|
||||
|
||||
#[repr(transparent)]
|
||||
pub struct Token(String);
|
||||
|
||||
impl From<String> for Token {
|
||||
fn from(string: String) -> Self {
|
||||
Token(string)
|
||||
}
|
||||
}
|
||||
|
||||
impl From<Token> for String {
|
||||
fn from(token: Token) -> Self {
|
||||
token.0
|
||||
}
|
||||
}
|
||||
|
||||
impl Deref for Token {
|
||||
type Target = String;
|
||||
|
||||
fn deref(&self) -> &Self::Target {
|
||||
&self.0
|
||||
}
|
||||
}
|
||||
|
||||
impl Token {
|
||||
fn generate() -> Self {
|
||||
Self(random_hex())
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Identifiable, Queryable)]
|
||||
pub struct EmailSignup {
|
||||
pub id: i32,
|
||||
pub email: String,
|
||||
pub token: String,
|
||||
pub expiration_date: NaiveDateTime,
|
||||
}
|
||||
|
||||
#[derive(Insertable)]
|
||||
#[table_name = "email_signups"]
|
||||
pub struct NewEmailSignup<'a> {
|
||||
pub email: &'a str,
|
||||
pub token: &'a str,
|
||||
pub expiration_date: NaiveDateTime,
|
||||
}
|
||||
|
||||
impl EmailSignup {
|
||||
pub fn start(conn: &DbConn, email: &str) -> Result<Token> {
|
||||
conn.transaction(|| {
|
||||
Self::ensure_user_not_exist_by_email(conn, email)?;
|
||||
let _rows = Self::delete_existings_by_email(conn, email)?;
|
||||
let token = Token::generate();
|
||||
let expiration_date = Utc::now()
|
||||
.naive_utc()
|
||||
.checked_add_signed(Duration::hours(TOKEN_VALIDITY_HOURS))
|
||||
.expect("could not calculate expiration date");
|
||||
let new_signup = NewEmailSignup {
|
||||
email,
|
||||
token: &token,
|
||||
expiration_date,
|
||||
};
|
||||
let _rows = diesel::insert_into(email_signups::table)
|
||||
.values(new_signup)
|
||||
.execute(&**conn)?;
|
||||
|
||||
Ok(token)
|
||||
})
|
||||
}
|
||||
|
||||
pub fn find_by_token(conn: &DbConn, token: Token) -> Result<Self> {
|
||||
let signup = email_signups::table
|
||||
.filter(email_signups::token.eq(token.as_str()))
|
||||
.first::<Self>(&**conn)
|
||||
.map_err(Error::from)?;
|
||||
Ok(signup)
|
||||
}
|
||||
|
||||
pub fn confirm(&self, conn: &DbConn) -> Result<()> {
|
||||
conn.transaction(|| {
|
||||
Self::ensure_user_not_exist_by_email(conn, &self.email)?;
|
||||
if self.expired() {
|
||||
Self::delete_existings_by_email(conn, &self.email)?;
|
||||
return Err(Error::Expired);
|
||||
}
|
||||
Ok(())
|
||||
})
|
||||
}
|
||||
|
||||
pub fn complete(&self, conn: &DbConn, username: String, password: String) -> Result<User> {
|
||||
conn.transaction(|| {
|
||||
Self::ensure_user_not_exist_by_email(conn, &self.email)?;
|
||||
let user = NewUser::new_local(
|
||||
conn,
|
||||
username,
|
||||
"".to_string(),
|
||||
Role::Normal,
|
||||
"",
|
||||
self.email.clone(),
|
||||
Some(User::hash_pass(&password)?),
|
||||
)?;
|
||||
self.delete(conn)?;
|
||||
Ok(user)
|
||||
})
|
||||
}
|
||||
|
||||
fn delete(&self, conn: &DbConn) -> Result<()> {
|
||||
let _rows = diesel::delete(self).execute(&**conn).map_err(Error::from)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn ensure_user_not_exist_by_email(conn: &DbConn, email: &str) -> Result<()> {
|
||||
if User::email_used(conn, email)? {
|
||||
let _rows = Self::delete_existings_by_email(conn, email)?;
|
||||
return Err(Error::UserAlreadyExists);
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn delete_existings_by_email(conn: &DbConn, email: &str) -> Result<usize> {
|
||||
let existing_signups = email_signups::table.filter(email_signups::email.eq(email));
|
||||
diesel::delete(existing_signups)
|
||||
.execute(&**conn)
|
||||
.map_err(Error::from)
|
||||
}
|
||||
|
||||
fn expired(&self) -> bool {
|
||||
self.expiration_date < Utc::now().naive_utc()
|
||||
}
|
||||
}
|
||||
Executable → Regular
+32
@@ -16,6 +16,8 @@ extern crate serde_json;
|
||||
#[macro_use]
|
||||
extern crate tantivy;
|
||||
|
||||
pub use lettre;
|
||||
pub use lettre::smtp;
|
||||
use once_cell::sync::Lazy;
|
||||
use plume_common::activity_pub::{inbox::InboxError, request, sign};
|
||||
use posts::PostEvent;
|
||||
@@ -65,6 +67,7 @@ pub enum Error {
|
||||
Url,
|
||||
Webfinger,
|
||||
Expired,
|
||||
UserAlreadyExists,
|
||||
}
|
||||
|
||||
impl From<bcrypt::BcryptError> for Error {
|
||||
@@ -300,6 +303,33 @@ pub fn ap_url(url: &str) -> String {
|
||||
format!("https://{}", url)
|
||||
}
|
||||
|
||||
pub trait SmtpNewWithAddr {
|
||||
fn new_with_addr(
|
||||
addr: (&str, u16),
|
||||
) -> std::result::Result<smtp::SmtpClient, smtp::error::Error>;
|
||||
}
|
||||
|
||||
impl SmtpNewWithAddr for smtp::SmtpClient {
|
||||
// Stolen from lettre::smtp::SmtpClient::new_simple()
|
||||
fn new_with_addr(addr: (&str, u16)) -> std::result::Result<Self, smtp::error::Error> {
|
||||
use native_tls::TlsConnector;
|
||||
use smtp::{
|
||||
client::net::{ClientTlsParameters, DEFAULT_TLS_PROTOCOLS},
|
||||
ClientSecurity, SmtpClient,
|
||||
};
|
||||
|
||||
let (domain, port) = addr;
|
||||
|
||||
let mut tls_builder = TlsConnector::builder();
|
||||
tls_builder.min_protocol_version(Some(DEFAULT_TLS_PROTOCOLS[0]));
|
||||
|
||||
let tls_parameters =
|
||||
ClientTlsParameters::new(domain.to_string(), tls_builder.build().unwrap());
|
||||
|
||||
SmtpClient::new((domain, port), ClientSecurity::Wrapper(tls_parameters))
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
#[macro_use]
|
||||
mod tests {
|
||||
@@ -347,6 +377,7 @@ pub mod blogs;
|
||||
pub mod comment_seers;
|
||||
pub mod comments;
|
||||
pub mod db_conn;
|
||||
pub mod email_signups;
|
||||
pub mod follows;
|
||||
pub mod headers;
|
||||
pub mod inbox;
|
||||
@@ -367,6 +398,7 @@ pub mod safe_string;
|
||||
#[allow(unused_imports)]
|
||||
pub mod schema;
|
||||
pub mod search;
|
||||
pub mod signups;
|
||||
pub mod tags;
|
||||
pub mod timeline;
|
||||
pub mod users;
|
||||
|
||||
@@ -3,12 +3,11 @@ use crate::{
|
||||
users::User, Connection, Error, Result, CONFIG,
|
||||
};
|
||||
use activitypub::object::Image;
|
||||
use askama_escape::escape;
|
||||
use diesel::{self, ExpressionMethods, QueryDsl, RunQueryDsl};
|
||||
use guid_create::GUID;
|
||||
use plume_common::{
|
||||
activity_pub::{inbox::FromId, request, Id},
|
||||
utils::MediaProcessor,
|
||||
utils::{escape, MediaProcessor},
|
||||
};
|
||||
use std::{
|
||||
fs::{self, DirBuilder},
|
||||
|
||||
@@ -10,7 +10,7 @@ use activitypub::{
|
||||
CustomObject,
|
||||
};
|
||||
use chrono::{NaiveDateTime, TimeZone, Utc};
|
||||
use diesel::{self, BelongingToDsl, ExpressionMethods, QueryDsl, RunQueryDsl, SaveChangesDsl};
|
||||
use diesel::{self, BelongingToDsl, ExpressionMethods, QueryDsl, RunQueryDsl};
|
||||
use once_cell::sync::Lazy;
|
||||
use plume_common::{
|
||||
activity_pub::{
|
||||
@@ -67,15 +67,15 @@ impl Post {
|
||||
find_by!(posts, find_by_ap_url, ap_url as &str);
|
||||
|
||||
last!(posts);
|
||||
pub fn insert(conn: &Connection, new: NewPost) -> Result<Self> {
|
||||
pub fn insert(conn: &Connection, mut new: NewPost) -> Result<Self> {
|
||||
if new.ap_url.is_empty() {
|
||||
let blog = Blog::get(conn, new.blog_id)?;
|
||||
new.ap_url = Self::ap_url(blog, &new.slug);
|
||||
}
|
||||
diesel::insert_into(posts::table)
|
||||
.values(new)
|
||||
.execute(conn)?;
|
||||
let mut post = Self::last(conn)?;
|
||||
if post.ap_url.is_empty() {
|
||||
post.ap_url = Self::ap_url(post.get_blog(conn)?, &post.slug);
|
||||
let _: Post = post.save_changes(conn)?;
|
||||
}
|
||||
let post = Self::last(conn)?;
|
||||
|
||||
if post.published {
|
||||
post.publish_published();
|
||||
|
||||
@@ -73,6 +73,7 @@ table! {
|
||||
user_id -> Int4,
|
||||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
email_blocklist(id){
|
||||
id -> Int4,
|
||||
@@ -83,6 +84,15 @@ table! {
|
||||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
email_signups (id) {
|
||||
id -> Int4,
|
||||
email -> Varchar,
|
||||
token -> Varchar,
|
||||
expiration_date -> Timestamp,
|
||||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
follows (id) {
|
||||
id -> Int4,
|
||||
@@ -306,6 +316,7 @@ allow_tables_to_appear_in_same_query!(
|
||||
blogs,
|
||||
comments,
|
||||
comment_seers,
|
||||
email_signups,
|
||||
follows,
|
||||
instances,
|
||||
likes,
|
||||
|
||||
@@ -0,0 +1,72 @@
|
||||
use crate::CONFIG;
|
||||
use rocket::request::{FromRequest, Outcome, Request};
|
||||
use std::fmt;
|
||||
use std::str::FromStr;
|
||||
|
||||
pub enum Strategy {
|
||||
Password,
|
||||
Email,
|
||||
}
|
||||
|
||||
impl Default for Strategy {
|
||||
fn default() -> Self {
|
||||
Self::Password
|
||||
}
|
||||
}
|
||||
|
||||
impl FromStr for Strategy {
|
||||
type Err = StrategyError;
|
||||
|
||||
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
||||
use self::Strategy::*;
|
||||
|
||||
match s {
|
||||
"password" => Ok(Password),
|
||||
"email" => Ok(Email),
|
||||
s => Err(StrategyError::Unsupported(s.to_string())),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub enum StrategyError {
|
||||
Unsupported(String),
|
||||
}
|
||||
|
||||
impl fmt::Display for StrategyError {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
use self::StrategyError::*;
|
||||
|
||||
match self {
|
||||
// FIXME: Calc option strings from enum
|
||||
Unsupported(s) => write!(f, "Unsupported strategy: {}. Choose password or email", s),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl std::error::Error for StrategyError {}
|
||||
|
||||
pub struct Password();
|
||||
pub struct Email();
|
||||
|
||||
impl<'a, 'r> FromRequest<'a, 'r> for Password {
|
||||
type Error = ();
|
||||
|
||||
fn from_request(_request: &'a Request<'r>) -> Outcome<Self, ()> {
|
||||
match matches!(CONFIG.signup, Strategy::Password) {
|
||||
true => Outcome::Success(Self()),
|
||||
false => Outcome::Forward(()),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'r> FromRequest<'a, 'r> for Email {
|
||||
type Error = ();
|
||||
|
||||
fn from_request(_request: &'a Request<'r>) -> Outcome<Self, ()> {
|
||||
match matches!(CONFIG.signup, Strategy::Email) {
|
||||
true => Outcome::Success(Self()),
|
||||
false => Outcome::Forward(()),
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -202,6 +202,22 @@ impl User {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* TODO: Should create user record with normalized(lowercased) email
|
||||
*/
|
||||
pub fn email_used(conn: &DbConn, email: &str) -> Result<bool> {
|
||||
use diesel::dsl::{exists, select};
|
||||
|
||||
select(exists(
|
||||
users::table
|
||||
.filter(users::instance_id.eq(Instance::get_local()?.id))
|
||||
.filter(users::email.eq(email))
|
||||
.or_filter(users::email.eq(email.to_ascii_lowercase())),
|
||||
))
|
||||
.get_result(&**conn)
|
||||
.map_err(Error::from)
|
||||
}
|
||||
|
||||
fn fetch_from_webfinger(conn: &DbConn, acct: &str) -> Result<User> {
|
||||
let link = resolve(acct.to_owned(), true)?
|
||||
.links
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"Language: af_ZA\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"Language: ar_SA\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "فتح محرر النصوص الغني"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "العنوان"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "العنوان الثانوي أو الملخص"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "اكتب مقالك هنا. ماركداون مُدَعَّم."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "يتبقا {} حرفا تقريبا"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "الوسوم"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "الرخصة"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "الغلاف"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "هذه مسودة"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "نشر كتابا"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Language: bg_BG\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr "Искате ли да активирате локално автоматично запаметяване, последно редактирано в {}?"
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Отворете редактора с богат текст"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Заглавие"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Подзаглавие или резюме"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Напишете статията си тук. Поддържа се Markdown."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Остават {} знака вляво"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Етикети"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Лиценз"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Основно изображение"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Това е проект"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Публикувай"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Language: ca_ES\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Obre l’editor de text enriquit"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Títol"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Subtítol o resum"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Escriviu el vostre article ací. Podeu fer servir el Markdown."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Queden uns {} caràcters"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Etiquetes"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Llicència"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Coberta"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Açò és un esborrany"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Publica"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2022-01-02 11:39\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"Language: cs_CZ\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Otevřít editor formátovaného textu"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Nadpis"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Podnadpis, nebo shrnutí"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Sem napište svůj článek. Markdown je podporován."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Zbývá kolem {} znaků"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Tagy"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licence"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Titulka"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Tohle je koncept"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Zveřejnit"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"Language: da_DK\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-12-11 15:00\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"Language: de_DE\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr "Möchten Sie die lokale automatische Speicherung laden, die zuletzt um {} bearbeitet wurde?"
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr " Rich Text Editor (RTE) öffnen"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Titel"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Untertitel oder Zusammenfassung"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Schreiben deinen Artikel hier. Markdown wird unterstützt."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Ungefähr {} Zeichen übrig"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Schlagwörter"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Lizenz"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Einband"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Dies ist ein Entwurf"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Veröffentlichen"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Greek\n"
|
||||
"Language: el_GR\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: English\n"
|
||||
"Language: en_US\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Esperanto\n"
|
||||
"Language: eo_UY\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Malfermi la riĉan redaktilon"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Titolo"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Verku vian artikolon ĉi tie. Markdown estas subtenita."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Proksimume {} signoj restantaj"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Etikedoj"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Permesilo"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Kovro"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Malfinias"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Eldoni"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2022-01-02 11:39\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Language: es_ES\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr "¿Quieres cargar el guardado automático local editado por última vez en {}?"
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Abrir el editor de texto enriquecido"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Título"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Subtítulo, o resumen"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Escriba su artículo aquí. Puede utilizar Markdown."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Quedan unos {} caracteres"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Etiquetas"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licencia"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Cubierta"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Esto es un borrador"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Publicar"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-12-11 15:00\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Persian\n"
|
||||
"Language: fa_IR\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr "آیا میخواهید نسخهٔ ذخیره شدهٔ خودکار محلّی از آخرین ویرایش در {} را بار کنید؟"
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "باز کردن ویرایشگر غنی"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "عنوان"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "زیرعنوان، یا چکیده"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "مقالهتان را اینجا بنویسید. از مارکداون پشتیبانی میشود."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "نزدیک به {} حرف باقی مانده است"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "برچسبها"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "پروانه"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "جلد"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "این، یک پیشنویس است"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "انتشار"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"Language: fi_FI\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Avaa edistynyt tekstieditori"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Otsikko"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Alaotsikko tai tiivistelmä"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Kirjoita artikkelisi tähän. Markdown -kuvauskieli on tuettu."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "%{count} merkkiä jäljellä"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Tagit"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Lisenssi"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Kansi"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Tämä on luonnos"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Julkaise"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-12-11 15:00\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"Language: fr_FR\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr "Voulez vous charger la sauvegarde automatique locale, éditée la dernière fois à {}?"
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Ouvrir l'éditeur de texte avancé"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Titre"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Sous-titre ou résumé"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Écrivez votre article ici. Vous pouvez utiliser du Markdown."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Environ {} caractères restant"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Étiquettes"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licence"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Illustration"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Ceci est un brouillon"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Publier"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Galician\n"
|
||||
"Language: gl_ES\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr "Queres cargar a última copia gardada editada o {}?"
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Abre o editor de texto enriquecido"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Título"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Subtítulo, ou resumo"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Escribe aquí o teu artigo: podes utilizar Markdown."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Dispós de {} caracteres"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Etiquetas"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licenza"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Portada"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Este é un borrador"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Publicar"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"Language: he_IL\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"Language: hi_IN\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "शीर्षक"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "अपना आर्टिकल या लेख यहाँ लिखें. Markdown उपलब्ध है."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "लगभग {} अक्षर बाकी हैं"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "टैग्स"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "लाइसेंस"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "पब्लिश करें"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Croatian\n"
|
||||
"Language: hr_HR\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Naslov"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Tagovi"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licenca"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Objavi"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"Language: hu_HU\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"Language: it_IT\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Apri il compositore di testo avanzato"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Titolo"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Sottotitolo, o sommario"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Scrivi qui il tuo articolo. È supportato il Markdown."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Circa {} caratteri rimasti"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Etichette"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licenza"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Copertina"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Questa è una bozza"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Pubblica"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Language: ja_JP\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "リッチテキストエディターを開く"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "タイトル"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "サブタイトル、または概要"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "投稿をここに書きます。Markdown がサポートされています。"
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "残り約 {} 文字"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "タグ"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "ライセンス"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "カバー"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "これは下書きです"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "公開"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"Language: ko_KR\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Language: nl_NL\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr "Wilt u de lokale auto-opslaan laden? Laatst bewerkt om: {}"
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Open de rich-text editor"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Titel"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Ondertitel of samenvatting"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Schrijf hier je artikel. Markdown wordt ondersteund."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Ongeveer {} tekens over"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licentie"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Hoofdafbeelding"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Dit is een concept"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Publiceren"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian\n"
|
||||
"Language: no_NO\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Lisens"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Publiser"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"Language: pl_PL\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Otwórz edytor tekstu sformatowanego"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Tytuł"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Podtytuł, lub podsumowanie"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Napisz swój artykuł tutaj. Markdown jest obsługiwany."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Pozostało w okolicy {} znaków"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Tagi"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licencja"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Okładka"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "To jest szkic"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Publikuj"
|
||||
|
||||
|
||||
@@ -12,46 +12,46 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
|
||||
# plume-front/src/editor.rs:177
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:331
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:388
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:392
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:399
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:410
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:519
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:520
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:526
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:560
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:571
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-12-11 15:00\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"Language: pt_BR\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr "Você quer carregar o último conteúdo salvo localmente editado em {}?"
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Abrir o editor de rich text"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Título"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Subtítulo ou resumo"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Escreva seu artigo aqui. Markdown é suportado."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Cerca de {} caracteres restantes"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licença"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Capa"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Isso é um rascunho"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Publicar"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Romanian\n"
|
||||
"Language: ro_RO\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Deschide editorul de text"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Titlu"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Scrie articolul tău aici. Markdown este acceptat."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "În apropiere de {} caractere rămase"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Etichete"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licenţă"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Coperta"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Aceasta este o ciornă"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Publică"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"Language: ru_RU\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr "Хотите ли вы загрузить локальное автосохранение, сделанное в {}?"
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Открыть в визуальном редакторе"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Заголовок"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Подзаголовок или резюме"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Пишите свою статью здесь. Markdown поддерживается."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Осталось около {} символов"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Теги"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Лицензия"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Обложка"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Это черновик"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Опубликовать"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Santali\n"
|
||||
"Language: sat_IN\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr "ᱟᱢ ᱪᱮᱫ ᱢᱟᱲᱟᱝ {} ᱨᱮ ᱥᱟᱯᱲᱟᱣ ᱟᱠᱟᱱ ᱞᱚᱠᱟᱞ ᱚᱴᱚᱥᱮᱣ ᱞᱟᱫᱮ ᱥᱟᱱᱟᱢ ᱠᱟᱱᱟ ᱥᱮ?"
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "ᱨᱤᱪ ᱚᱞ ᱥᱟᱯᱟᱣᱤᱡ ᱠᱷᱩᱞᱟᱹᱭ ᱢᱮ"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "ᱴᱭᱴᱚᱞ"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "ᱥᱟᱹᱵᱴᱟᱭᱴᱟᱹᱞ, ᱟᱨ ᱵᱟᱝ ᱥᱟᱹᱢᱢᱟᱨᱭ"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "ᱟᱢᱟᱜ ᱚᱱᱚᱞ ᱱᱚᱰᱮ ᱚᱞ ᱛᱟᱢ ᱾ ᱪᱤᱱᱦᱟᱹ ᱥᱟᱯᱚᱴ ᱜᱮᱭᱟ ᱾"
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "ᱡᱷᱚᱛᱚ ᱨᱮ {} ᱡᱤᱱᱤᱥ ᱵᱟᱧᱪᱟᱣᱠᱟᱱᱟ"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "ᱴᱮᱜᱽᱥ"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "ᱞᱚᱭᱥᱮᱱᱥ"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "ᱢᱚᱭᱞᱟᱹᱴ"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "ᱱᱚᱶᱟ ᱫᱚ ᱰᱨᱟᱯᱷᱼᱴ ᱠᱟᱱᱟ"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "ᱯᱟᱨᱥᱟᱞ"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Sinhala\n"
|
||||
"Language: si_LK\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "මාතෘකාව"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "බලපත්රය"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-12-11 15:00\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovak\n"
|
||||
"Language: sk_SK\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr "Chceš načítať automaticky uloženú zálohu, s poslednou úpravou {}?"
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Otvor editor formátovaného textu"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Nadpis"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Zhrnutie, alebo podnadpis"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Tu napíš svoj článok. Markdown je podporovaný."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Zostáva asi {} znakov"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Štítky"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licencia"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Obálka"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Toto je koncept"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Zverejniť"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovenian\n"
|
||||
"Language: sl_SI\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Naslov"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Oznake"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licenca"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "To je osnutek"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Objavi"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Serbian (Latin)\n"
|
||||
"Language: sr_CS\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Otvori uređivač sa stilizacijom"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Naslov"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Podnaslov, ili sažetak"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Napišite vaš članak ovde. Na raspolaganju vam je Markdown."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Preostalo oko {} znakova"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Markeri"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licenca"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Naslovna strana"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Ovo je nacrt"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Objavi"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Language: sv_SE\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Titel"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Skriv din artikel här. Markdown stöds."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Ungefär {} karaktärer kvar"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Taggar"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Licens"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Omslag"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Publicera"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\n"
|
||||
"Language: tr_TR\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Zengin metin editörünü (RTE) aç"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Başlık"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "Alt başlık, veya açıklama"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "Makaleni buraya yaz. Markdown kullanabilirsin."
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "Yaklaşık {} karakter kaldı"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "Etiketler"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "Lisans"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "Kapak"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "Bu bir taslaktır"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "Yayınla"
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"Language: uk_UA\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Urdu (Pakistan)\n"
|
||||
"Language: ur_PK\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"Language: vi_VN\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "Văn bản của tôi"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "Tiêu Châu"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr ""
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
|
||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-12-11 15:00\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:20\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"Language: zh_TW\n"
|
||||
@@ -17,47 +17,47 @@ msgstr ""
|
||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||
"X-Crowdin-File-ID: 12\n"
|
||||
|
||||
# plume-front/src/editor.rs:188
|
||||
# plume-front/src/editor.rs:172
|
||||
msgid "Do you want to load the local autosave last edited at {}?"
|
||||
msgstr "你想要載入上次在 {} 编辑的本地自動保存嗎?"
|
||||
|
||||
# plume-front/src/editor.rs:281
|
||||
# plume-front/src/editor.rs:326
|
||||
msgid "Open the rich text editor"
|
||||
msgstr "開啟 RTF 編輯器"
|
||||
|
||||
# plume-front/src/editor.rs:314
|
||||
# plume-front/src/editor.rs:385
|
||||
msgid "Title"
|
||||
msgstr "標題"
|
||||
|
||||
# plume-front/src/editor.rs:318
|
||||
# plume-front/src/editor.rs:389
|
||||
msgid "Subtitle, or summary"
|
||||
msgstr "副標題,或摘要"
|
||||
|
||||
# plume-front/src/editor.rs:325
|
||||
# plume-front/src/editor.rs:396
|
||||
msgid "Write your article here. Markdown is supported."
|
||||
msgstr "在這裡寫下您的文章。支援 Markdown 語法。"
|
||||
|
||||
# plume-front/src/editor.rs:336
|
||||
# plume-front/src/editor.rs:407
|
||||
msgid "Around {} characters left"
|
||||
msgstr "大約還可輸入 {} 字符"
|
||||
|
||||
# plume-front/src/editor.rs:413
|
||||
# plume-front/src/editor.rs:517
|
||||
msgid "Tags"
|
||||
msgstr "標籤"
|
||||
|
||||
# plume-front/src/editor.rs:414
|
||||
# plume-front/src/editor.rs:518
|
||||
msgid "License"
|
||||
msgstr "授權條款"
|
||||
|
||||
# plume-front/src/editor.rs:417
|
||||
# plume-front/src/editor.rs:524
|
||||
msgid "Cover"
|
||||
msgstr "封面"
|
||||
|
||||
# plume-front/src/editor.rs:437
|
||||
# plume-front/src/editor.rs:564
|
||||
msgid "This is a draft"
|
||||
msgstr "這是草稿"
|
||||
|
||||
# plume-front/src/editor.rs:444
|
||||
# plume-front/src/editor.rs:575
|
||||
msgid "Publish"
|
||||
msgstr "發布"
|
||||
|
||||
|
||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"Language: af_ZA\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:106
|
||||
msgid "{0} is subscribed to you."
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} liked your article."
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} mentioned you."
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"Language: ar_SA\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "علّق {0} على مقالك."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} مشترك لك."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} أعجبهم مقالك."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "أشار إليك {0}."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} دعمو مقالك."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "خيطك"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "الخيط المحلي"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "الخيط الموحد"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "الصورة الرمزية لـ {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "الصفحة السابقة"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "الصفحة التالية"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "اختياري"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "لإنشاء مدونة جديدة، تحتاج إلى تسجيل الدخول"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "توجد مدونة تحمل نفس العنوان."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "تم إنشاء مدونتك بنجاح!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "تم حذف مدونتك."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "لا يسمح لك بحذف هذه المدونة."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "لا يسمح لك بتعديل هذه المدونة."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "لا يمكنك استخدام هذه الوسائط كأيقونة للمدونة."
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "لا يمكنك استخدام هذه الوسائط كشعار للمدونة."
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "تم تحديث معلومات مُدوّنتك."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "تم نشر تعليقك."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "تم حذف تعليقك."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "التسجيلات مُغلقة على مثيل الخادم هذ."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "لقد تم إنشاء حسابك. ما عليك إلّا الولوج الآن للتمكّن مِن استعماله."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "تم حفظ إعدادات المثيل."
|
||||
@@ -149,19 +169,19 @@ msgstr "تم."
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "يجب عليك تسجيل الدخول أولا للإعجاب بهذا المقال"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "لقد تم حذف وسائطك."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "لا يسمح لك بحذف هذه الوسائط."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "تم تحديث صورتك الشخصية."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "لا يسمح لك باستعمال هذه الوسائط."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "لا يسمح لك باستعمال هذه الوسائط."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "يجب عليك تسجيل الدخول أولا لعرض الإشعارات"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "هذا المقال ليس منشورا بعد."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "يجب عليك تسجيل الدخول أولا لكتابة مقال جديد"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "لست مِن محرري هذه المدونة."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "منشور جديد"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "تعديل {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "لا يسمح لك بالنشر على هذه المدونة."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "تم تحديث مقالك."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "تم حفظ مقالك."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "مقال جديد"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "لا يسمح لك بحذف هذا المقال."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "تم حذف مقالك."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr "لم يتم العثور على المقال الذي تحاول حذفه. ربما سبق حذفه؟"
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr "تعذر العثور عن معلومات حسابك. المرجو التحقق من صحة إسم المستخدم."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "ها هو رابط إعادة تعيين كلمتك السرية: {0}"
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "تمت إعادة تعيين كلمتك السرية بنجاح."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "يجب عليك تسجيل الدخول أولاللنفاذ إلى لوح المراقبة"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "أنت لم تعد تتابع {}."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "أنت الآن تتابع {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "للإشتراك بأحد ما، يجب تسجيل الدخول أولا"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "لتعديل الحساب، يجب تسجيل الدخول أولا"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "تم تحديث ملفك الشخصي."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "تم حذف حسابك."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "لا يمكنك حذف حساب شخص آخر."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "التسجيلات مُغلقة على مثيل الخادم هذ."
|
||||
msgid "Create your account"
|
||||
msgstr "انشئ حسابك"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "لقد تم إنشاء حسابك. ما عليك إلّا الولوج الآن للتمكّن مِن استعماله."
|
||||
msgid "Create an account"
|
||||
msgstr "انشئ حسابا"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "البريد الالكتروني"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "المعذرة، لاكن التسجيل مغلق في هذا المثيل بالدات. يمكنك إجاد مثيل آخر للتسجيل."
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "تحقق من علبة الوارد الخاصة بك!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "اسم المستخدم"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "كلمة السر"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "إرسال الوسائط"
|
||||
@@ -423,27 +468,6 @@ msgstr "المشترِكون"
|
||||
msgid "Subscriptions"
|
||||
msgstr "الاشتراكات"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "انشئ حسابك"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "انشئ حسابا"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "اسم المستخدم"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "البريد الالكتروني"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "كلمة السر"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "المعذرة، لاكن التسجيل مغلق في هذا المثيل بالدات. يمكنك إجاد مثيل آخر للتسجيل."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "{0} اشتراكات"
|
||||
|
||||
@@ -849,9 +873,6 @@ msgstr "تأكيد"
|
||||
msgid "Update password"
|
||||
msgstr "تحديث الكلمة السرية"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "تحقق من علبة الوارد الخاصة بك!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "لقد أرسلنا رسالة للعنوان الذي توصلنا به من طرفك تضمنرابط لإعادت تحديد كلمة المرور."
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Language: bg_BG\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} коментира(ха) твоя статия."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} абониран(и) за вас."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} хареса(ха) вашата статия."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} ви спомена(ха)."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} подсили(ха) вашата статия."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "Вашата емисия"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Местна емисия"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Федерална емисия"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "Аватар {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "Предишна страница"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "Следваща страница"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "По избор"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "За да създадете нов блог, трябва да влезете"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Вече съществува блог със същото име."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "Блогът Ви бе успешно създаден!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Блогът ви бе изтрит."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Нямате права за да изтриете този блог."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Нямате права за да редактирате този блог."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "Не можете да използвате тази медия като икона на блога."
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "Не можете да използвате тази медия като банер на блога."
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Информацията в блога ви бе актуализирана."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "Коментарът е публикуван."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Коментарът бе изтрит."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Регистрациите са затворени в тази инстанция."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Вашият акаунт беше създаден. Сега просто трябва да влезете за да можете да го използвате."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "Настройките на инстанциите са запазени."
|
||||
@@ -149,19 +169,19 @@ msgstr "Свършен."
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "За да харесате публикация, трябва да сте влезли в профила си"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Медията ви е изтрита."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "Вие нямате права да изтриете тази медия."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Вашият аватар е актуализиран."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "Нямате права да използвате тази медия."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "Нямате права да използвате тази медия."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "За да видите известията си, трябва да сте влезли в профила си"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Тази публикация все още не е публикувана."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "За да напишете нова публикация, трябва да влезете"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Вие не сте автор на този блог."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Нова публикация"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Редактирано от {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "Нямате права за публикуване в този блог."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Статията ви е актуализирана."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Вашата статия е запазена."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Нова статия"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Нямате права за изтриване на тази статия."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Статията е изтрита."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr "Изглежда, че статията, която се опитвате да изтриете не съществува. Може би вече я няма?"
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr "Не можа да се получи достатъчно информация за профила ви. Моля, уверете се, че потребителското ви име е правилно."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Ето и връзка, на която да зададете нова
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "Вашата парола бе успешно възстановена."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "За да получите достъп до таблото си за управление, трябва да сте влезли в профила си"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Вече не следвате {}."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Вече следите {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "За да се абонирате за някого, трябва да сте влезли в системата"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "За да редактирате профила си, трябва да влезете"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Вашият профил е актуализиран."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Вашият акаунт е изтрит."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "Не можете да изтриете профила на някой друг."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Регистрациите са затворени в тази инстанция."
|
||||
msgid "Create your account"
|
||||
msgstr "Създай профил"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Вашият акаунт беше създаден. Сега просто трябва да влезете за да можете да го използвате."
|
||||
msgid "Create an account"
|
||||
msgstr "Създай профил"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Електронна поща"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Извиняваме се, но регистрациите са затворени за тази конкретна инстанция. Можете обаче да намерите друга."
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Проверете си пощата!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Потребителско име"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Парола"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Потвърждение на парола"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Качи медия"
|
||||
@@ -423,27 +468,6 @@ msgstr "Абонати"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Абонаменти"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Създай профил"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Създай профил"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Потребителско име"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Електронна поща"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Парола"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Потвърждение на парола"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Извиняваме се, но регистрациите са затворени за тази конкретна инстанция. Можете обаче да намерите друга."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "{0} абонаменти"
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr "Потвърждение"
|
||||
msgid "Update password"
|
||||
msgstr "Обнови паролата"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Проверете си пощата!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "Изпратихме емайл с връзка за възстановяване на паролата ви, на адреса който ни дадохте."
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Language: ca_ES\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} han comentat el teu article."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} s'ha subscrit."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "A {0} li ha agradat el vostre article."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} us ha esmentat."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} ha impulsat el teu article."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "El teu feed"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Feed local"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Feed federat"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "avatar de {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "Pàgina anterior"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "Pàgina següent"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Opcional"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "Per a crear un blog nou, heu d’iniciar una sessió"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Ja existeix un blog amb el mateix nom."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "S’ha creat el vostre blog correctament."
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "S’ha suprimit el vostre blog."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "No tens permís per a esborrar aquest blog."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "No tens permís per a editar aquest blog."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "No pots usar aquest Mèdia com a icona del blog."
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "No pots usar aquest Mèdia com a capçalera del blog."
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "S’ha actualitzat la informació del vostre blog."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "S’ha publicat el vostre comentari."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "S’ha suprimit el vostre comentari."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "El registre d'aquesta instància és tancat."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "S'ha creat el teu compte. Ara cal iniciar sessió per a començar a usar-lo."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "S'han desat les configuracions de l'instància."
|
||||
@@ -149,19 +169,19 @@ msgstr "Fet."
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "Per a agradar-te una publicació necessites iniciar sessió"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "S'ha esborrat el teu Mèdia."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "No tens permís per a esborrar aquest Mèdia."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "S'ha actualitzat el teu avatar."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "No tens permís per a usar aquest Mèdia."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "No tens permís per a usar aquest Mèdia."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Per a veure les teves notificacions necessites iniciar sessió"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Aquesta entrada encara no està publicada."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "Per a escriure una nova entrada cal iniciar sessió"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "No ets un autor d'aquest blog."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Apunt nou"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Edita {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "No tens permís per a publicar en aquest blog."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "S’ha actualitzat el vostre article."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "S’ha desat el vostre article."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Article nou"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "No tens permís per a esborrar aquest article."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "S’ha suprimit el vostre article."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr "Sembla que l'article que intentes esborrar no existeix. Potser ja no hi és?"
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr "No s'ha pogut obtenir informació sobre el teu compte. Si us plau, assegura't que el teu nom d'usuari és correcte."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Aquí està l'enllaç per a reiniciar la teva contrasenya: {0}"
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "S’ha reinicialitzat la vostra contrasenya correctament."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "Per a accedir al teu panell cal iniciar sessió"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Ja no segueixes a {}."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Ara estàs seguint a {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "Per a subscriure't a algú cal iniciar sessió"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "Per a editar el teu perfil cal iniciar sessió"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "El teu perfil s'ha actualitzat."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "El teu compte s'ha esborrat."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "No pots esborrar el compte d'algú altre."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "El registre d'aquesta instància és tancat."
|
||||
msgid "Create your account"
|
||||
msgstr "Crea el teu compte"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "S'ha creat el teu compte. Ara cal iniciar sessió per a començar a usar-lo."
|
||||
msgid "Create an account"
|
||||
msgstr "Crear un compte"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Adreça electrònica"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Disculpa, el registre d'aquesta instància és tancat. Pots trobar-ne un altre diferent."
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Reviseu la vostra safata d’entrada."
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nom d’usuari"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Confirmació de la contrasenya"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Carregar Mèdia"
|
||||
@@ -423,27 +468,6 @@ msgstr "Subscriptors"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Subscripcions"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Crea el teu compte"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Crear un compte"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nom d’usuari"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Adreça electrònica"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Confirmació de la contrasenya"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Disculpa, el registre d'aquesta instància és tancat. Pots trobar-ne un altre diferent."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "Subscripcions de {0}"
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr "Confirmació"
|
||||
msgid "Update password"
|
||||
msgstr "Actualitza la contrasenya"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Reviseu la vostra safata d’entrada."
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "Hem enviat un correu a l'adreça que ens vas donar, amb un enllaç per a reiniciar la teva contrasenya."
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2022-01-02 11:39\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"Language: cs_CZ\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} komentoval/a váš článek."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} vás odebírá."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} si oblíbil/a váš článek."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} vás zmínil/a."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} povýšil/a váš článek."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "Vaše zdroje"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Místní zdroje"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Federované zdroje"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "Avatar uživatele {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "Předchozí stránka"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "Následující strana"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Volitelné"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
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:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Blog s rovnakým názvem již existuje."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "Váš blog byl úspěšně vytvořen!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Váš blog byl smazán."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Nemáte oprávnění zmazat tento blog."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Nemáte oprávnění upravovat tento blog."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
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:297
|
||||
# src/routes/blogs.rs:298
|
||||
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:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Údaje o vašem blogu byly aktualizovány."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "Váš komentář byl zveřejněn."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Váš komentář byl odstraněn."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Registrace jsou na téhle instanci uzavřeny."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Váš účet byl vytvořen. Nyní se stačí jenom přihlásit, než ho budete moci používat."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "Nastavení instance bylo uloženo."
|
||||
@@ -149,19 +169,19 @@ msgstr "Hotovo."
|
||||
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:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Vaše média byla smazána."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "Nemáte oprávnění k smazání tohoto média."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Váš avatar byl aktualizován."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "Nemáte oprávnění k použití tohoto média."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "Nemáte oprávnění k použití tohoto média."
|
||||
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:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Tento příspěvek ještě není zveřejněn."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
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:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Nejste autorem tohto blogu."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Nový příspěvek"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Upravit {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "Nemáte oprávnění zveřejňovat na tomto blogu."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Váš článek byl upraven."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Váš článek byl uložen."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Nový článek"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Nemáte oprávnění zmazat tento článek."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Váš článek byl smazán."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
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:672
|
||||
# src/routes/posts.rs:673
|
||||
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á."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Zde je odkaz na obnovení vášho hesla: {0}"
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "Vaše heslo bylo úspěšně obnoveno."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "Pro přístup k vaší nástěnce musíte být přihlášen/a"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Již nenásledujete {}."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Teď již nenásledujete {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
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:299
|
||||
# src/routes/user.rs:323
|
||||
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:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Váš profil byl upraven."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Váš účet byl odstraněn."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "Nemůžete smazat účet někoho jiného."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Registrace jsou na téhle instanci uzavřeny."
|
||||
msgid "Create your account"
|
||||
msgstr "Vytvořit váš účet"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Váš účet byl vytvořen. Nyní se stačí jenom přihlásit, než ho budete moci používat."
|
||||
msgid "Create an account"
|
||||
msgstr "Vytvořit účet"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
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 "Registration"
|
||||
msgstr ""
|
||||
|
||||
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 for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Uživatelské jméno"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Potvrzení hesla"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Nahrávaní médií"
|
||||
@@ -423,27 +468,6 @@ msgstr "Odběratelé"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Odběry"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Vytvořit váš účet"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Vytvořit účet"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Uživatelské jméno"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Potvrzení hesla"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Omlouváme se, ale registrace je uzavřena na této konkrétní instanci. Můžete však najít jinou."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "Odběry uživatele {0}"
|
||||
|
||||
@@ -845,9 +869,6 @@ msgstr "Potvrzení"
|
||||
msgid "Update password"
|
||||
msgstr "Aktualizovat heslo"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Zkontrolujte svou příchozí poštu!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "Zaslali jsme email na adresu, kterou jste nám dodali, s odkazem na obnovu vášho hesla."
|
||||
|
||||
|
||||
+57
-35
@@ -17,6 +17,10 @@ msgstr ""
|
||||
"X-Crowdin-Language: cy\n"
|
||||
"X-Crowdin-File: /master/po/plume/plume.pot\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:68
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
@@ -106,6 +110,24 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:526
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:132
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:133
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:549
|
||||
msgid ""
|
||||
"Your account has been created. Now you just need to log in, before you can "
|
||||
"use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:120
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -277,14 +299,44 @@ msgstr ""
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:526
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:217
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:549
|
||||
msgid ""
|
||||
"Your account has been created. Now you just need to log in, before you can "
|
||||
"use it."
|
||||
"Apologies, but registrations are closed on this particular instance. You "
|
||||
"can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:217
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:217
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:217
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -426,33 +478,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:217
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:217
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:217
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:217
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apologies, but registrations are closed on this particular instance. You "
|
||||
"can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -890,9 +915,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"We sent a mail to the address you gave us, with a link to reset your "
|
||||
"password."
|
||||
|
||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"Language: da_DK\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:106
|
||||
msgid "{0} is subscribed to you."
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} liked your article."
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} mentioned you."
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-12-11 15:00\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"Language: de_DE\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} hat deinen Artikel kommentiert."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} hat dich abonniert."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} gefällt Ihr Artikel."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} hat dich erwähnt."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} hat deinen Artikel geboosted."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "Dein Feed"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Lokaler Feed"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Föderierter Feed"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "{0}'s Profilbild"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "Vorherige Seite"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "Nächste Seite"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Optional"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "Du musst angemeldet sein, um einen Blog zu erstellen"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Es existiert bereits ein Blog mit diesem Namen."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "Dein Blog wurde erfolgreich erstellt!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Dein Blog wurde gelöscht."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Du bist nicht berechtigt, diesen Blog zu löschen."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Du bist nicht berechtigt, diesen Blog zu bearbeiten."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "Du kannst dieses Medium nicht als Blog-Symbol verwenden."
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "Du kannst diese Datei nicht als Blog-Banner verwenden."
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Informationen des Blog wurden aktualisiert."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "Dein Kommentar wurde veröffentlicht."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Dein Kommentar wurde gelöscht."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Anmeldungen sind auf dieser Instanz aktuell nicht möglich."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr "Benutzerregistrierung"
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr "Dies ist der Link für die Anmeldung: {0}"
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Dein Konto wurde erstellt. Jetzt musst du dich nur noch anmelden, um es nutzen zu können."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "Die Instanzeinstellungen wurden gespeichert."
|
||||
@@ -149,19 +169,19 @@ msgstr "Fertig"
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "Um einen Beitrag zu liken, musst du angemeldet sein"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Deine Datei wurde gelöscht."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "Dir fehlt die Berechtigung, diese Datei zu löschen."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Dein Benutzerbild wurde aktualisiert."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "Dir fehlt die Berechtigung, um diese Datei zu nutzen."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "Dir fehlt die Berechtigung, um diese Datei zu nutzen."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Um deine Benachrichtigungen zu sehen, musst du angemeldet sein"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Dieser Beitrag wurde noch nicht veröffentlicht."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "Um einen neuen Beitrag zu schreiben, musst du angemeldet sein"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Du bist kein Autor dieses Blogs."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Neuer Beitrag"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "{0} bearbeiten"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "Dir fehlt die Berechtigung, in diesem Blog zu veröffentlichen."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Dein Artikel wurde aktualisiert."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Dein Artikel wurde gespeichert."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Neuer Artikel"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Dir fehlt die Berechtigung, diesen Artikel zu löschen."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Dein Artikel wurde gelöscht."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr "Möglicherweise ist der zu löschende Artikel nicht (mehr) vorhanden. Wurde er vielleicht schon entfernt?"
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr "Wir konnten nicht genug Informationen über dein Konto finden. Bitte stelle sicher, dass dein Benutzername richtig ist."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Hier der Link, um das Passwort zurückzusetzen: {0}"
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "Dein Passwort wurde erfolgreich zurückgesetzt."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "Um auf dein Dashboard zuzugreifen, musst du angemeldet sein"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Du folgst {} nun nicht mehr."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Du folgst nun {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "Um jemanden zu abonnieren, musst du angemeldet sein"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "Um dein Profil zu bearbeiten, musst du angemeldet sein"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Dein Profil wurde aktualisiert."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Dein Benutzerkonto wurde gelöscht."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "Dir fehlt die Berechtigung, das Konto eines anderen zu löschen."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Anmeldungen sind auf dieser Instanz aktuell nicht möglich."
|
||||
msgid "Create your account"
|
||||
msgstr "Eigenen Account erstellen"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Dein Konto wurde erstellt. Jetzt musst du dich nur noch anmelden, um es nutzen zu können."
|
||||
msgid "Create an account"
|
||||
msgstr "Konto erstellen"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "E-Mail-Adresse"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr "E-Mail-Bestätigung"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Entschuldigung, Registrierungen sind auf dieser Instanz geschlossen. Du kannst jedoch eine andere finden."
|
||||
|
||||
msgid "Registration"
|
||||
msgstr "Registrierung"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Posteingang prüfen!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr "Wir haben eine E-Mail mit einem Link zur Registrierung an die von Ihnen angegebene Adresse gesendet."
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Benutzername"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Passwort bestätigen"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Hochladen von Mediendateien"
|
||||
@@ -423,27 +468,6 @@ msgstr "Abonnenten"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Abonnement"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Eigenen Account erstellen"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Konto erstellen"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Benutzername"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "E-Mail-Adresse"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Passwort bestätigen"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Entschuldigung, Registrierungen sind auf dieser Instanz geschlossen. Du kannst jedoch eine andere finden."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "{0}'s Abonnements"
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr "Bestätigung"
|
||||
msgid "Update password"
|
||||
msgstr "Passwort aktualisieren"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Posteingang prüfen!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "Wir haben eine Mail an die von dir angegebene Adresse gesendet, mit einem Link, um dein Passwort zurückzusetzen."
|
||||
|
||||
|
||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Greek\n"
|
||||
"Language: el_GR\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:106
|
||||
msgid "{0} is subscribed to you."
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} liked your article."
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} mentioned you."
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: English\n"
|
||||
"Language: en_US\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:106
|
||||
msgid "{0} is subscribed to you."
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} liked your article."
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} mentioned you."
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+95
-74
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Esperanto\n"
|
||||
"Language: eo_UY\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} komentis pri vian afiŝon."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} abonis pri vian."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} ŝatis vian artikolon."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} menciis vin."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "Profilbildo de {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "Por krei novan blogon, vi devas ensaluti"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Blogon kun la sama nomo jam ekzistas."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "Sukcesas krei vian blogon!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Via blogo estis forigita."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Vi ne rajtas forigi ĉi tiun blogon."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Vi ne estas permesita redakti ĉi tiun blogon."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "Vi ne povas uzi ĉi tiun aŭdovidaĵon kiel simbolo de blogo."
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Viaj blogaj informaĵoj estis ĝisdatigita."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Via komento estis forigita."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Via aŭdovidaĵo estis forigita."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "Vi ne rajtas forigi ĉi tiun aŭdovidaĵon."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Via profilbildo estis gîstatiga."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Ĉi tiu skribaĵo ankoraŭ ne estas eldonita."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
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:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Vi ne estas la verkisto de ĉi tiu blogo."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Nova skribaĵo"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Ŝanĝo {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Via artikolo estis ĝisdatigita."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Via artikolo estis konservita."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Nova artikolo"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Vi ne rajtas forigi ĉi tiun artikolon."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Via artikolo estis forigita."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -245,46 +265,71 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Via profilo estis ĝisdatigita."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Via konto estis forigita."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "Vi ne povas forigi konton de aliulo."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr "Krei vian konton"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Krei konton"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Retpoŝtadreso"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Uzantnomo"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Pasvorto"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Konfirmo de la pasvorto"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr ""
|
||||
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Krei vian konton"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Krei konton"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Uzantnomo"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Retpoŝtadreso"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Pasvorto"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Konfirmo de la pasvorto"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr "Konfirmo"
|
||||
msgid "Update password"
|
||||
msgstr "Ĝisdatigi pasvorton"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2022-01-02 11:39\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Language: es_ES\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} ha comentado tu artículo."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} esta suscrito a tí."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "A {0} le gustó tu artículo."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} te ha mencionado."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} compartió su artículo."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "Tu Feed"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Feed local"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Feed federada"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "Avatar de {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "Página anterior"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "Página siguiente"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Opcional"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "Para crear un nuevo blog, necesitas estar conectado"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Ya existe un blog con el mismo nombre."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "¡Tu blog se ha creado satisfactoriamente!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Tu blog fue eliminado."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "No está autorizado a eliminar este registro."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "No tiene permiso para editar este blog."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
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:297
|
||||
# src/routes/blogs.rs:298
|
||||
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:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "La información de tu blog ha sido actualizada."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "Se ha publicado el comentario."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Se ha eliminado el comentario."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Los registros están cerrados en esta instancia."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Tu cuenta ha sido creada. Ahora solo necesitas iniciar sesión, antes de poder usarla."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "Se han guardado los ajustes de la instancia."
|
||||
@@ -149,19 +169,19 @@ msgstr "Hecho."
|
||||
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:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Tus medios han sido eliminados."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "No tienes permisos para eliminar este medio."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Tu avatar ha sido actualizado."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "No tienes permisos para usar este medio."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "No tienes permisos para usar este medio."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Para ver tus notificaciones, necesitas estar conectado"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Esta publicación aún no está publicada."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "Para escribir un nuevo artículo, necesitas estar conectado"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "No eres un autor de este blog."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Nueva publicación"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Editar {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "No tienes permiso para publicar en este blog."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Se ha actualizado el artículo."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Se ha guardado el artículo."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Nueva publicación"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "No tienes permiso para eliminar este artículo."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Se ha eliminado el artículo."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
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:672
|
||||
# src/routes/posts.rs:673
|
||||
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."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Aquí está el enlace para restablecer tu contraseña: {0}"
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "Su contraseña se ha restablecido correctamente."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "Para acceder a su panel de control, necesita estar conectado"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Ya no estás siguiendo a {}."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Ahora estás siguiendo a {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "Para suscribirse a alguien, necesita estar conectado"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "Para editar su perfil, necesita estar conectado"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Tu perfil ha sido actualizado."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Tu cuenta ha sido eliminada."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "No puedes eliminar la cuenta de otra persona."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Los registros están cerrados en esta instancia."
|
||||
msgid "Create your account"
|
||||
msgstr "Crea tu cuenta"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Tu cuenta ha sido creada. Ahora solo necesitas iniciar sesión, antes de poder usarla."
|
||||
msgid "Create an account"
|
||||
msgstr "Crear una cuenta"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Correo electrónico"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
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 "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Revise su bandeja de entrada!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nombre de usuario"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Confirmación de contraseña"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Subir medios"
|
||||
@@ -423,27 +468,6 @@ msgstr "Suscriptores"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Suscripciones"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Crea tu cuenta"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Crear una cuenta"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nombre de usuario"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Correo electrónico"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Confirmación de contraseña"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Lo sentimos, pero las inscripciones están cerradas en esta instancia. Sin embargo, puede encontrar una instancia distinta."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "Suscripciones de {0}"
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr "Confirmación"
|
||||
msgid "Update password"
|
||||
msgstr "Actualizar contraseña"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Revise su bandeja de entrada!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "Enviamos un correo a la dirección que nos dio, con un enlace para restablecer su contraseña."
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-12-11 15:00\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Persian\n"
|
||||
"Language: fa_IR\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} روی مقالهٔ شما نظر داد."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} شما را دنبال میکند."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} مقالهٔ شما را پسندید."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} به شما اشاره کرد."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} مقالهٔ شما را تقویت کرد."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "خوراک شما"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "خوراک محلی"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "خوراک سراسری"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "چهرک {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "برگ پیشین"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "برگ پسین"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "اختیاری"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "برای ساخت یک بلاگ بایستی وارد شوید"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "بلاگی با همین نام از قبل وجود دارد."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "بلاگ شما با موفقیت ساخته شد!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "بلاگ شما پاک شد."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "شما مجاز به پاک کردن این بلاگ نیستید."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "شما مجاز به ویرایش این بلاگ نیستید."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "شما نمیتوانید این رسانه را به عنوان تصویر بلاگ استفاده کنید."
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "شما نمیتوانید از این رسانه به عنوان تصویر سردر بلاگ استفاده کنید."
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "اطلاعات بلاگ شما بهروز شده است."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "نظر شما فرستاده شده است."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "نظر شما پاک شده است."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "ثبتنام روی این نمونه بسته شده است."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "حساب شما ایجاد شده است. اکنون برای استفاده از آن تنها نیاز است که واردش شوید."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "تنظیمات نمونه ذخیره شده است."
|
||||
@@ -149,19 +169,19 @@ msgstr "انجام شد."
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "برای پسندیدن یک فرسته، بایستی وارد شده باشید"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "رسانه شما پاک شده است."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "شما مجاز به پاک کردن این رسانه نیستید."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "چهرک شما بهروز شده است."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "شما مجاز به استفاده از این رسانه نیستید."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "شما مجاز به استفاده از این رسانه نیستید.
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "برای دیدن اعلانات خود بایستی وارد شده باشید"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "این فرسته هنوز منتشر نشده است."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "برای نوشتن یک فرستهٔ جدید، بایستی وارد شده باشید"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "شما نویسندهٔ این بلاگ نیستید."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "فرستهٔ جدید"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "ویرایش {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "شما مجاز به انتشار روی این بلاگ نیستید."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "مقالهٔ شما بهروز شده است."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "مقالهٔ شما ذخیره شده است."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "مقالهٔ جدید"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "شما مجاز به حذف این مقاله نیستید."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "مقالهٔ شما پاک شده است."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr "به نظر میرسد مقالهای را که میخواهید پاک کنید، وجود ندارد. قبلا پاک نشده است؟"
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr "نتوانستیم اطّلاعات کافی دربارهٔ حساب شما دریافت کنیم. لطفاً مطمئن شوید که نام کاربری درست است."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "اینجا، پیوندی برای بازنشانی گذرواژهٔ ش
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "گذرواژه شما با موفقیت بازنشانی شد."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "برای دسترسی به پیشخوان بایستی وارد شده باشید"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "دیگر {} را دنبال نمیکنید."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "اکنون {} را دنبال میکنید."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "برای دنبال کردن یک نفر، باید وارد شوید"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "برای ویرایش نمایهٔ خود، باید وارد شوید"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "نمایهٔ شما بهروز شده است."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "حساب شما پاک شده است."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "نمیتوانید حساب شخص دیگری را پاک کنید."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "ثبتنام روی این نمونه بسته شده است."
|
||||
msgid "Create your account"
|
||||
msgstr "حسابی برای خود بسازید"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "حساب شما ایجاد شده است. اکنون برای استفاده از آن تنها نیاز است که واردش شوید."
|
||||
msgid "Create an account"
|
||||
msgstr "حسابی بسازید"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "رایانامه"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "معذرت میخواهیم. ثبتنام روی این نمونه خاص بسته شده است. با این حال شما میتوانید یک نمونه دیگر پیدا کنید."
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "صندوق پستی خود را بررسی کنید!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "نام کاربری"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "گذرواژه"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "تایید گذرواژه"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "بارگذاری رسانه"
|
||||
@@ -423,27 +468,6 @@ msgstr "دنبالکنندگان"
|
||||
msgid "Subscriptions"
|
||||
msgstr "دنبالشوندگان"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "حسابی برای خود بسازید"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "حسابی بسازید"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "نام کاربری"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "رایانامه"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "گذرواژه"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "تایید گذرواژه"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "معذرت میخواهیم. ثبتنام روی این نمونه خاص بسته شده است. با این حال شما میتوانید یک نمونه دیگر پیدا کنید."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "دنبالشوندگان {0}"
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr "تایید"
|
||||
msgid "Update password"
|
||||
msgstr "بهروزرسانی گذرواژه"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "صندوق پستی خود را بررسی کنید!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "ما، یک رایانامه به نشانیای که به ما دادید فرستادهایم. با پیوندی که در آن است میتوانید گذرواژه خود را تغییر دهید."
|
||||
|
||||
|
||||
+95
-74
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"Language: fi_FI\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} kommentoi mediaasi."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "Sinulla on {0} tilaajaa."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} tykkää artikkeleistasi."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} on maininnut sinut."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "Artikkelivirtasi"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Paikallinen artikkelivirta"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Yhdistetty artikkelivirta"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "{0}n avatar"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Valinnainen"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "Luodaksesi blogin sinun tulee olla sisäänkirjautuneena"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Saman niminen blogi on jo olemassa."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "Blogisi luotiin onnistuneesti!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Blogisi poistettiin."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Sinulla ei ole oikeutta poistaa tätä blogia."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Sinulla ei ole oikeutta muokata tätä blogia."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "Et voi käyttää tätä mediaa blogin ikonina."
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "Et voi käyttää tätä mediaa blogin bannerina."
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Blogisi tiedot on päivitetty."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "Kommentisi lähetettiin."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Sisältösi poistettiin."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "Instanssin asetukset on tallennettu."
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "Tykätäksesi postauksesta sinun tulee olla sisäänkirjautuneena"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Mediasi on poistettu."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "Sinulla ei ole oikeutta poistaa tätä mediaa."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Avatarisi on päivitetty."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "Sinulla ei ole oikeutta käyttää tätä mediaa."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "Sinulla ei ole oikeutta käyttää tätä mediaa."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Nähdäksesi ilmoituksesi sinun tulee olla sisäänkirjautuneena"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Tätä postausta ei ole vielä julkaistu."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "Kirjoittaaksesi uuden postauksen sinun tulee olla sisäänkirjautuneena"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Et ole tämän blogin kirjoittaja."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Uusi postaus"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Muokkaa {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "Sinulla ei ole oikeutta julkaista tällä blogilla."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Artikkeli päivitetty."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Artikkeli on tallennettu."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Uusi artikkeli"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Sinulla ei ole oikeutta poistaa tätä artikkelia."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Artikkelisi on poistettu."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr "Näyttää siltä, että koetat poistaa artikkelia jota ei ole olemassa. Ehkä se on jo poistettu?"
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr "Tunnuksestasi ei saatu haettua tarpeeksi tietoja. Varmistathan että käyttäjätunkuksesi on oikein."
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-12-11 15:00\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"Language: fr_FR\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} a commenté votre article."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} vous suit."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} a aimé votre article."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} vous a mentionné."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} a boosté votre article."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "Votre flux"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Flux local"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Flux fédéré"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "Avatar de {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "Page précédente"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "Page suivante"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Optionnel"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
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:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Un blog avec le même nom existe déjà."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "Votre blog a été créé avec succès !"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Votre blog a été supprimé."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Vous n'êtes pas autorisé⋅e à supprimer ce blog."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Vous n'êtes pas autorisé à éditer ce blog."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
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:297
|
||||
# src/routes/blogs.rs:298
|
||||
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:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Les informations de votre blog ont été mise à jour."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "Votre commentaire a été publié."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Votre commentaire a été supprimé."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Les inscriptions sont fermées sur cette instance."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Votre compte a été créé. Vous avez juste à vous connecter, avant de pouvoir l'utiliser."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "Les paramètres de votre instance ont été enregistrés."
|
||||
@@ -149,19 +169,19 @@ msgstr "Terminé."
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "Vous devez vous connecter pour aimer un article"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Votre média a été supprimé."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "Vous n'êtes pas autorisé à supprimer ce média."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Votre avatar a été mis à jour."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "Vous n'êtes pas autorisé à utiliser ce média."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "Vous n'êtes pas autorisé à utiliser ce média."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Vous devez vous connecter pour voir vos notifications"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Cet article n’est pas encore publié."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
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:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Vous n'êtes pas auteur⋅rice de ce blog."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Nouvel article"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Modifier {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "Vous n'êtes pas autorisé à publier sur ce blog."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Votre article a été mis à jour."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Votre article a été enregistré."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Nouvel article"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Vous n'êtes pas autorisé à supprimer cet article."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Votre article a été supprimé."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
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:672
|
||||
# src/routes/posts.rs:673
|
||||
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."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Voici le lien pour réinitialiser votre mot de passe : {0}"
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "Votre mot de passe a été réinitialisé avec succès."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "Vous devez vous connecter pour accéder à votre tableau de bord"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Vous ne suivez plus {}."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Vous suivez maintenant {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
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:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "Vous devez vous connecter pour modifier votre profil"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Votre profil a été mis à jour."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Votre compte a été supprimé."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "Vous ne pouvez pas supprimer le compte d'une autre personne."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Les inscriptions sont fermées sur cette instance."
|
||||
msgid "Create your account"
|
||||
msgstr "Créer votre compte"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Votre compte a été créé. Vous avez juste à vous connecter, avant de pouvoir l'utiliser."
|
||||
msgid "Create an account"
|
||||
msgstr "Créer un compte"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Adresse électronique"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
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 "Registration"
|
||||
msgstr ""
|
||||
|
||||
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 for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nom d’utilisateur"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Confirmation du mot de passe"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Téléversement de média"
|
||||
@@ -423,27 +468,6 @@ msgstr "Abonnés"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Abonnements"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Créer votre compte"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Créer un compte"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nom d’utilisateur"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Adresse électronique"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Confirmation du mot de passe"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Désolé, mais les inscriptions sont fermées sur cette instance en particulier. Vous pouvez, toutefois, en trouver une autre."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "Abonnements de {0}"
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr "Confirmation"
|
||||
msgid "Update password"
|
||||
msgstr "Mettre à jour 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."
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Galician\n"
|
||||
"Language: gl_ES\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} comentou o teu artigo."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} está suscrita aos teus artigos."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "a {0} gustoulle o teu artigo."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} mencionoute."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} promoveu o teu artigo."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "O seu contido"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Contido local"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Contido federado"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "Avatar de {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "Páxina anterior"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "Páxina seguinte"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Opcional"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "Para crear un novo blog debes estar conectada"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Xa existe un blog co mesmo nome."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "O teu blog creouse correctamente!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Eliminaches o blog."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Non tes permiso para eliminar este blog."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Non podes editar este blog."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "Non podes utilizar este medio como icona do blog."
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "Non podes utilizar este medio como cabeceira do blog."
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Actualizouse a información sobre o blog."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "O teu comentario foi publicado."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Eliminouse o comentario."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "O rexistro está pechado en esta instancia."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
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."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "Gardáronse os axustes das instancia."
|
||||
@@ -149,19 +169,19 @@ msgstr "Feito."
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "Para darlle a gústame, debes estar conectada"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Eliminouse o ficheiro de medios."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "Non tes permiso para eliminar este ficheiro."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Actualizouse o avatar."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "Non tes permiso para usar este ficheiro de medios."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "Non tes permiso para usar este ficheiro de medios."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Para ver as túas notificacións, debes estar conectada"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Esto é un borrador, non publicar por agora."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "Para escribir un novo artigo, debes estar conectada"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Non es autora de este blog."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Novo artigo"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Editar {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "Non tes permiso para publicar en este blog."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Actualizouse o artigo."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Gardouse o artigo."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Novo artigo"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Non tes permiso para eliminar este artigo."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Eliminouse o artigo."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
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:672
|
||||
# src/routes/posts.rs:673
|
||||
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."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Aquí está a ligazón para restablecer o contrasinal: {0}"
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "O contrasinal restableceuse correctamente."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "Para acceder ao taboleiro, debes estar conectada"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Xa non está a seguir a {}."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Está a seguir a {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "Para suscribirse a un blog, debe estar conectada"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "Para editar o seu perfil, debe estar conectada"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Actualizouse o perfil."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Eliminouse a túa conta."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "Non pode eliminar a conta de outra persoa."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "O rexistro está pechado en esta instancia."
|
||||
msgid "Create your account"
|
||||
msgstr "Cree a súa conta"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Creouse a túa conta. Agora só tes que conectarte para poder utilizala."
|
||||
msgid "Create an account"
|
||||
msgstr "Crear unha conta"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Correo-e"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
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 "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Comprobe o seu correo!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nome de usuaria"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Contrasinal"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Confirmación do contrasinal"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Subir medios"
|
||||
@@ -423,27 +468,6 @@ msgstr "Subscritoras"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Subscricións"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Cree a súa conta"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Crear unha conta"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nome de usuaria"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Correo-e"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Contrasinal"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Confirmación do contrasinal"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Desculpe, pero o rexistro en esta instancia está pechado. Porén pode atopar outra no fediverso."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "Suscricións de {0}"
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr "Confirmación"
|
||||
msgid "Update password"
|
||||
msgstr "Actualizar contrasinal"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Comprobe o seu correo!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "Enviamoslle un correo ao enderezo que nos deu, con unha ligazón para restablecer o contrasinal."
|
||||
|
||||
|
||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"Language: he_IL\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:106
|
||||
msgid "{0} is subscribed to you."
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} liked your article."
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} mentioned you."
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -845,9 +869,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+95
-74
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"Language: hi_IN\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} ने आपके लेख पे कॉमेंट किया है"
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} ने आपको सब्सक्राइब किया है"
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} ने आपके लेख को लाइक किया"
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} ने आपको मेंशन किया"
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} ने आपके आर्टिकल को बूस्ट किया"
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "आपकी फीड"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "लोकल फीड"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "फ़ेडरेटेड फीड"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "{0} का avtar"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "वैकल्पिक"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "नया ब्लॉग बनाने के लिए आपको लोग इन करना होगा"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "ये नाम से पहले ही एक ब्लॉग है"
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "आपको ये ब्लॉग डिलीट करने की अनुमति नहीं है"
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "आपको ये ब्लॉग में बदलाव करने की अनुमति नहीं है"
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "इस फोटो को ब्लॉग आइकॉन के लिए इस्तेमाल नहीं कर सकते"
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "इस media को blog banner के लिए इस्तेमाल नहीं कर सकते"
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "Post को like करने के लिए आपको log in करना होगा"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Notifications देखने के लिए आपको log in करना होगा"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "इस post को publish नहीं किया गया है"
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "नया post लिखने के लिए आपको log in करना होगा"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "आप इस blog के लेखक नहीं हैं"
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "नया post"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Edit करें {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "नया लेख"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr "आपके अकाउंट के बारे में पर्याप्त जानकारी नहीं मिल पायी. कृपया जांच करें की आपका यूजरनाम सही है."
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr "आपका पासवर्ड रिसेट करने का
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "आपका पासवर्ड रिसेट कर दिया गया है"
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "डैशबोर्ड पर जाने के लिए, लोग इन करें"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "सब्सक्राइब करने के लिए, लोग इन करें"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "प्रोफाइल में बदलाव करने के लिए, लोग इन करें"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr "अपना अकाउंट बनाएं"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Email"
|
||||
msgstr "ईमेल"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "आपका इनबॉक्स चेक करें"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr "पासवर्ड"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "अपना अकाउंट बनाएं"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr "ईमेल"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "पासवर्ड"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr "पुष्टीकरण"
|
||||
msgid "Update password"
|
||||
msgstr "पासवर्ड अपडेट करें"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "आपका इनबॉक्स चेक करें"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "हमने आपके दिए गए इ-मेल पे पासवर्ड रिसेट लिंक भेज दिया है."
|
||||
|
||||
|
||||
+99
-78
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Croatian\n"
|
||||
"Language: hr_HR\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} komentira na vaš članak."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
msgid "{0} is subscribed to you."
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} se svidio vaš članak."
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} komentira na vaš članak."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} mentioned you."
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} se svidio vaš članak."
|
||||
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Lokalnog kanala"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Federalni kanala"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Ovaj post još nije objavljen."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Ti ne autor ovog bloga."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Novi članak"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Uredi {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr "E-pošta"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr "E-pošta"
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -843,9 +867,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"Language: hu_HU\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:106
|
||||
msgid "{0} is subscribed to you."
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} liked your article."
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} mentioned you."
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"Language: it_IT\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} ha commentato il tuo articolo."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} si è iscritto a te."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} ha apprezzato il tuo articolo."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} ti ha menzionato."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} ha boostato il tuo articolo."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "Il tuo flusso"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Flusso locale"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Flusso federato"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "Avatar di {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "Pagina precedente"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "Pagina successiva"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Opzionale"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
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:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Un blog con lo stesso nome esiste già."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "Il tuo blog è stato creato con successo!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Il tuo blog è stato eliminato."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Non ti è consentito di eliminare questo blog."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Non ti è consentito modificare questo blog."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
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:297
|
||||
# src/routes/blogs.rs:298
|
||||
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:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Le informazioni del tuo blog sono state aggiornate."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "Il tuo commento è stato pubblicato."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Il tuo commento è stato eliminato."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Le registrazioni sono chiuse su questa istanza."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Il tuo account è stato creato. Ora devi solo effettuare l'accesso prima di poterlo utilizzare."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "Le impostazioni dell'istanza sono state salvate."
|
||||
@@ -149,19 +169,19 @@ msgstr "Fatto."
|
||||
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:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "I tuoi media sono stati eliminati."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "Non ti è consentito rimuovere questo media."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "La tua immagine di profilo è stata aggiornata."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "Non ti è consentito utilizzare questo media."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "Non ti è consentito utilizzare questo media."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Per vedere le tue notifiche, devi avere effettuato l'accesso"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Questo post non è ancora stato pubblicato."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
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:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Non sei un autore di questo blog."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Nuovo post"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Modifica {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "Non ti è consentito pubblicare su questo blog."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Il tuo articolo è stato aggiornato."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Il tuo articolo è stato salvato."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Nuovo articolo"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Non è consentito eliminare questo articolo."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Il tuo articolo è stato eliminato."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
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:672
|
||||
# src/routes/posts.rs:673
|
||||
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."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Qui c'è il collegamento per reimpostare la tua password: {0}"
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "La tua password è stata reimpostata con successo."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "Per accedere al tuo pannello, devi avere effettuato l'accesso"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Non stai più seguendo {}."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Ora stai seguendo {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
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:299
|
||||
# src/routes/user.rs:323
|
||||
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:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Il tuo profilo è stato aggiornato."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Il tuo account è stato eliminato."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "Non puoi eliminare l'account di qualcun altro."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Le registrazioni sono chiuse su questa istanza."
|
||||
msgid "Create your account"
|
||||
msgstr "Crea il tuo account"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Il tuo account è stato creato. Ora devi solo effettuare l'accesso prima di poterlo utilizzare."
|
||||
msgid "Create an account"
|
||||
msgstr "Crea un account"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
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 "Registration"
|
||||
msgstr ""
|
||||
|
||||
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 for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nome utente"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Conferma password"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Caricamento di un media"
|
||||
@@ -423,27 +468,6 @@ msgstr "Iscritti"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Sottoscrizioni"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Crea il tuo account"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Crea un account"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nome utente"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Conferma password"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Spiacenti, ma le registrazioni sono chiuse per questa istanza. Puoi comunque trovarne un'altra."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "Iscrizioni di {0}"
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr "Conferma"
|
||||
msgid "Update password"
|
||||
msgstr "Aggiorna password"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Controlla la tua casella di posta in arrivo!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "Ti abbiamo inviato una mail all'indirizzo che ci hai fornito, con il collegamento per reimpostare la tua password."
|
||||
|
||||
|
||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Language: ja_JP\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} さんがあなたの投稿にコメントしました。"
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} さんがあなたをフォローしました。"
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} さんがあなたの投稿にいいねしました。"
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} さんがあなたをメンションしました。"
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} さんがあなたの投稿をブーストしました。"
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "自分のフィード"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "このインスタンスのフィード"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "全インスタンスのフィード"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "{0} さんのアバター"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "前のページ"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "次のページ"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "省略可"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "新しいブログを作成するにはログインが必要です"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "同じ名前のブログがすでに存在しています。"
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "ブログは正常に作成されました。"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "ブログを削除しました。"
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "このブログを削除する権限がありません。"
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "このブログを編集する権限がありません。"
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "このメディアはブログアイコンに使用できません。"
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "このメディアはブログバナーに使用できません。"
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "ブログ情報を更新しました。"
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "コメントを投稿しました。"
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "コメントを削除しました。"
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "このインスタンスでは登録がクローズされています。"
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr "ユーザー登録"
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr "こちらのリンクから、ユーザー登録できます: {0}"
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "アカウントを作成しました。使用前に、ログインする必要があります。"
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "インスタンスの設定を保存しました。"
|
||||
@@ -127,7 +147,7 @@ msgstr "ブロックリストから削除しました"
|
||||
|
||||
# src/routes/instance.rs:219
|
||||
msgid "Email already blocked"
|
||||
msgstr ""
|
||||
msgstr "メールは既にブロックされています"
|
||||
|
||||
# src/routes/instance.rs:224
|
||||
msgid "Email Blocked"
|
||||
@@ -149,19 +169,19 @@ msgstr "完了しました。"
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "投稿をいいねするにはログインが必要です"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "メディアを削除しました。"
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "このメディアを削除する権限がありません。"
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "アバターを更新しました。"
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "このメディアを使用する権限がありません。"
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "このメディアを使用する権限がありません。"
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "通知を表示するにはログインが必要です"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "この投稿はまだ公開されていません。"
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "新しい投稿を書くにはログインが必要です"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "あなたはこのブログの投稿者ではありません。"
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "新しい投稿"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "{0} を編集"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "このブログで投稿を公開する権限がありません。"
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "投稿を更新しました。"
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "投稿を保存しました。"
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "新しい投稿"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "この投稿を削除する権限がありません。"
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "投稿を削除しました。"
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr "削除しようとしている投稿は存在しないようです。すでに削除していませんか?"
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr "お使いのアカウントに関する十分な情報を取得できませんでした。ご自身のユーザー名が正しいことを確認してください。"
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "こちらのリンクから、パスワードをリセットできます
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "パスワードが正常にリセットされました。"
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "ダッシュボードにアクセスするにはログインが必要です"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "{} のフォローを解除しました。"
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "{} をフォローしました。"
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "誰かをフォローするにはログインが必要です"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "プロフィールを編集するにはログインが必要です"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "プロフィールを更新しました。"
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "アカウントを削除しました。"
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "他人のアカウントは削除できません。"
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "登録はこのインスタンス内に限定されています。"
|
||||
msgid "Create your account"
|
||||
msgstr "アカウントを作成"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "アカウントを作成しました。使用前に、ログインする必要があります。"
|
||||
msgid "Create an account"
|
||||
msgstr "アカウントを作成"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "メールアドレス"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr "メール確認"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "申し訳ありませんが、このインスタンスでの登録は限定されています。ですが、他のインスタンスを見つけることはできます。"
|
||||
|
||||
msgid "Registration"
|
||||
msgstr "ユーザー登録"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "受信トレイを確認してください!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr "指定された宛先に、ユーザー登録するためのリンクを記載したメールを送信しました。"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "ユーザー名"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "パスワード"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "パスワードの確認"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "メディアのアップロード"
|
||||
@@ -423,27 +468,6 @@ msgstr "フォロワー"
|
||||
msgid "Subscriptions"
|
||||
msgstr "フォロー"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "アカウントを作成"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "アカウントを作成"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "ユーザー名"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "メールアドレス"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "パスワード"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "パスワードの確認"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "申し訳ありませんが、このインスタンスでの登録は限定されています。ですが、他のインスタンスを見つけることはできます。"
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "{0} がフォロー中のユーザー"
|
||||
|
||||
@@ -839,9 +863,6 @@ msgstr "確認"
|
||||
msgid "Update password"
|
||||
msgstr "パスワードを更新"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "受信トレイを確認してください!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "指定された宛先に、パスワードをリセットするためのリンクを記載したメールを送信しました。"
|
||||
|
||||
|
||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"Language: ko_KR\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:106
|
||||
msgid "{0} is subscribed to you."
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} liked your article."
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} mentioned you."
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -839,9 +863,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+56
-32
@@ -14,6 +14,10 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.2.2\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} la inn en kommentar til artikkelen din"
|
||||
@@ -105,6 +109,24 @@ msgstr "Ingen innlegg å vise enda."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Ingen innlegg å vise enda."
|
||||
|
||||
# src/routes/user.rs:473
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:132
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:133
|
||||
msgid "Here is the link for registration: {0}"
|
||||
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 ""
|
||||
|
||||
# src/routes/instance.rs:145
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -275,16 +297,44 @@ msgstr "Ingen innlegg å vise enda."
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:473
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr "Opprett din konto"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Lag en ny konto"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Epost"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Email confirmation"
|
||||
msgstr "Oppsett"
|
||||
|
||||
msgid ""
|
||||
"Apologies, but registrations are closed on this particular instance. You "
|
||||
"can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:527
|
||||
msgid ""
|
||||
"Your account has been created. Now you just need to log in, before you can "
|
||||
"use it."
|
||||
#, fuzzy
|
||||
msgid "Registration"
|
||||
msgstr "Registrér deg"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Brukernavn"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Passord"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Passordbekreftelse"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr ""
|
||||
|
||||
@@ -438,29 +488,6 @@ msgstr "Lang beskrivelse"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Lang beskrivelse"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Opprett din konto"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Lag en ny konto"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Brukernavn"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Epost"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Passord"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Passordbekreftelse"
|
||||
|
||||
msgid ""
|
||||
"Apologies, but registrations are closed on this particular instance. You "
|
||||
"can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "Lang beskrivelse"
|
||||
@@ -927,9 +954,6 @@ msgstr "Oppsett"
|
||||
msgid "Update password"
|
||||
msgstr "Oppdater konto"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"We sent a mail to the address you gave us, with a link to reset your "
|
||||
"password."
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Language: nl_NL\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} reageerde op je bericht."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} is op je geabonneerd."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} vond je artikel leuk."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} vermeldde jou."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} heeft je artikel geboost."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "Jouw feed"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Lokale feed"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Gefedereerde feed"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "{0}'s avatar"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "Vorige pagina"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "Volgende pagina"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Optioneel"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "Om een nieuwe blog te maken moet je ingelogd zijn"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Er bestaat al een blog met dezelfde naam."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "Je blog is succesvol aangemaakt!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Je blog is verwijderd."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Je mag deze blog niet verwijderen."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Je mag deze blog niet bewerken."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "Je kunt dit object niet als blogpictogram gebruiken."
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "Je kunt dit object niet als blog banner gebruiken."
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Je bloginformatie is bijgewerkt."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "Je reactie is geplaatst."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Je reactie is verwijderd."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Registraties zijn gesloten op deze server."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Je account is aangemaakt. Nu hoe je alleen maar in te loggen, om het te kunnen gebruiken."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "Serverinstellingen zijn opgeslagen."
|
||||
@@ -149,19 +169,19 @@ msgstr "Klaar."
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "Om een bericht leuk te vinden, moet je ingelogd zijn"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Je media zijn verwijderd."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "Je mag dit medium niet verwijderen."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Je avatar is bijgewerkt."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "Je mag dit mediabestand niet gebruiken."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "Je mag dit mediabestand niet gebruiken."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Om je meldingen te kunnen zien, moet je ingelogd zijn"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Dit bericht is nog niet gepubliceerd."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "Om een nieuwe bericht te schrijven moet je ingelogd zijn"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Je bent geen schrijver van deze blog."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Nieuw bericht"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "{0} bewerken"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "Je mag niet publiceren op deze blog."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Je artikel is bijgewerkt."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Je artikel is opgeslagen."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Nieuw artikel"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Je mag dit artikel niet verwijderen."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Je artikel is verwijderd."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr "Het lijkt erop dat het artikel dat je probeerde te verwijderen niet bestaat. Misschien is het al verdwenen?"
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr "Kon niet genoeg informatie over je account opvragen. Controleer of je gebruikersnaam juist is."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Hier is de link om je wachtwoord opnieuw in te stellen: {0}"
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "Je wachtwoord is succesvol ingesteld."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "Om toegang te krijgen tot je dashboard, moet je ingelogd zijn"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Je volgt {} niet langer."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Je volgt nu {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "Om je te abonneren op iemand, moet je ingelogd zijn"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "Om je profiel te bewerken moet je ingelogd zijn"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Je profiel is bijgewerkt."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Je account is verwijderd."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "Je kunt het account van iemand anders niet verwijderen."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Registraties zijn gesloten op deze server."
|
||||
msgid "Create your account"
|
||||
msgstr "Maak je account aan"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Je account is aangemaakt. Nu hoe je alleen maar in te loggen, om het te kunnen gebruiken."
|
||||
msgid "Create an account"
|
||||
msgstr "Maak een account aan"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "E-mailadres"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Excuses, maar registraties zijn gesloten voor deze server. Je kunt wel een andere vinden."
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Ga naar je inbox!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Gebruikersnaam"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Wachtwoord"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Wachtwoordbevestiging"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Media uploaden"
|
||||
@@ -423,27 +468,6 @@ msgstr "Abonnees"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Abonnementen"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Maak je account aan"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Maak een account aan"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Gebruikersnaam"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "E-mailadres"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Wachtwoord"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Wachtwoordbevestiging"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Excuses, maar registraties zijn gesloten voor deze server. Je kunt wel een andere vinden."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "{0}'s abonnementen"
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr "Bevestiging"
|
||||
msgid "Update password"
|
||||
msgstr "Wachtwoord bijwerken"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Ga naar je inbox!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "We hebben een e-mail gestuurd naar het adres dat je hebt opgegeven, met een link om je wachtwoord te resetten."
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian\n"
|
||||
"Language: no_NO\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} har kommentert artikkelen din."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} har abbonert på deg."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} likte artikkelen din."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} nevnte deg."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} har fremhevet artikkelen din."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "Din tidslinje"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Lokal tidslinje"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Føderert tidslinje"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "{0}s avatar"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Valgfritt"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "Du må være logget inn for å lage en ny blogg"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Det eksisterer allerede en blogg med dette navnet."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "Bloggen ble opprettet!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Bloggen din er nå slettet."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Du har ikke rettigheter til å slette denne bloggen."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Du har ikke rettigheter til å endre denne bloggen."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "Du kan ikke bruke dette bildet som bloggikon."
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "Du kan ikke bruke dette bildet som bloggbanner."
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Informasjon om bloggen er oppdatert."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "Kommentaren din er lagt til."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Kommentaren din er slettet."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Registrering er lukket på denne instansen."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Kontoen din er opprettet. Du må logge inn for å bruke den."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "Innstillingene for instansen er lagret."
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "Du må være innlogget for å like ett innlegg"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Mediet er slettet."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "Du har ikke rettigheter til å slette dette mediet."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Avataren din er oppdatert."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "Du har ikke rettigheter til å bruke dette mediet."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "Du har ikke rettigheter til å bruke dette mediet."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Du må være innlogget for se varsler"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Dette innlegget er ikke publisert enda."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "Du må være innlogget for å skrive ett nytt innlegg"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Du er ikke forfatter av denne bloggen."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Nytt innlegg"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Rediger {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "Du har ikke rettigheter til å publisere på denne bloggen."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Artikkelen er oppdatert."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Artikkelen er lagret."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Ny artikkel"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Du har ikke rettigheter til å slette denne artikkelen."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Artikkelen er slettet."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr "Det ser ut som arikkelen du prøvde allerede er slettet; Kanskje den allerede er fjernet?"
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr "Klarte ikke å hente informasjon om kontoen din. Vennligst sjekk at brukernavnet er korrekt."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Her denne pekeren for å gjenopprette passordet ditt: {0}"
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "Passordet ditt er gjenopprettet."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "Du må være innlogget for å se skrivebordet"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Du følger ikke lenger {}."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Du følger nå {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "Du må være innlogget for å følge noen"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "Du må være innlogget for å endre profilen din"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Profilen din er oppdatert."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Kontoen din er slettet."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "Du kan ikke slette andres kontoer."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Registrering er lukket på denne instansen."
|
||||
msgid "Create your account"
|
||||
msgstr "Opprett kontoen din"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Kontoen din er opprettet. Du må logge inn for å bruke den."
|
||||
msgid "Create an account"
|
||||
msgstr "Opprett en konto"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "E-post"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Beklager, nyregistreringer er lukket på denne instansen. Du kan istedet finne en annen instans."
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Brukernavn"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Passord"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Last opp medie"
|
||||
@@ -423,27 +468,6 @@ msgstr "Abonnenter"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Abonnenter"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Opprett kontoen din"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Opprett en konto"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Brukernavn"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "E-post"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Passord"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Beklager, nyregistreringer er lukket på denne instansen. Du kan istedet finne en annen instans."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"Language: pl_PL\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} skomentował(a) Twój artykuł."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} jest subskrybentem do ciebie."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} polubił(a) Twój artykuł."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} wspomniał(a) o Tobie."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} podbił(a) Twój artykuł."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "Twój strumień"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Lokalna"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Strumień federacji"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "Awatar {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "Poprzednia strona"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "Następna strona"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Nieobowiązkowe"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "Aby utworzyć nowy blog, musisz być zalogowany"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Blog o tej samej nazwie już istnieje."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "Twój blog został pomyślnie utworzony!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Twój blog został usunięty."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Nie masz uprawnień do usunięcia tego bloga."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Nie masz uprawnień edytować tego bloga."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
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:297
|
||||
# src/routes/blogs.rs:298
|
||||
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:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Twoje informacje o blogu zostały zaktualizowane."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "Twój komentarz został opublikowany."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Twój komentarz został usunięty."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Rejestracje są zamknięte w tej instancji."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Twoje konto zostało utworzone. Zanim będziesz mógł(-ogła) z niego korzystać, musisz się zalogować."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "Zapisano ustawienia instancji."
|
||||
@@ -149,19 +169,19 @@ msgstr "Gotowe."
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "Aby polubić post, musisz być zalogowany"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Twoje media zostały usunięte."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "Nie można usunąć tego medium."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Twój awatar został zaktualizowany."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "Nie możesz użyć tego medium."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "Nie możesz użyć tego medium."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Aby zobaczyć powiadomienia, musisz być zalogowany"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Ten wpis nie został jeszcze opublikowany."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "Aby napisać nowy artykuł, musisz być zalogowany"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Nie jesteś autorem tego bloga."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Nowy wpis"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Edytuj {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "Nie możesz publikować na tym blogu."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Twój artykuł został zaktualizowany."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Twój artykuł został zapisany."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Nowy artykuł"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Nie można usunąć tego artykułu."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Twój artykuł został usunięty."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
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:672
|
||||
# src/routes/posts.rs:673
|
||||
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."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Tutaj jest link do zresetowania hasła: {0}"
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "Twoje hasło zostało pomyślnie zresetowane."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "Aby uzyskać dostęp do panelu, musisz być zalogowany"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Już nie obserwujesz użytkownika {}."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Obserwujesz teraz użytkownika {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "Aby subskrybować do kogoś, musisz być zalogowany"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "Aby edytować swój profil, musisz być zalogowany"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Twój profil został zaktualizowany."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Twoje konto zostało usunięte."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "Nie możesz usunąć konta innej osoby."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Rejestracje są zamknięte w tej instancji."
|
||||
msgid "Create your account"
|
||||
msgstr "Utwórz konto"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Twoje konto zostało utworzone. Zanim będziesz mógł(-ogła) z niego korzystać, musisz się zalogować."
|
||||
msgid "Create an account"
|
||||
msgstr "Utwórz nowe konto"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Adres e-mail"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
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 "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Sprawdź do swoją skrzynki odbiorczej!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nazwa użytkownika"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Hasło"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Potwierdzenie hasła"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Wysyłanie zawartości multimedialnej"
|
||||
@@ -423,27 +468,6 @@ msgstr "Subskrybenci"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Subskrypcje"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Utwórz konto"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Utwórz nowe konto"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nazwa użytkownika"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Adres e-mail"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Hasło"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Potwierdzenie hasła"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Przepraszamy, rejestracja jest zamknięta na tej instancji. Spróbuj znaleźć inną."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "Subskrypcje {0}"
|
||||
|
||||
@@ -845,9 +869,6 @@ msgstr "Potwierdzenie"
|
||||
msgid "Update password"
|
||||
msgstr "Zaktualizuj hasło"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Sprawdź do swoją skrzynki odbiorczej!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "Wysłaliśmy maila na adres, który nam podałeś, z linkiem do zresetowania hasła."
|
||||
|
||||
|
||||
+93
-72
@@ -13,86 +13,90 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:106
|
||||
msgid "{0} is subscribed to you."
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} liked your article."
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} mentioned you."
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -104,6 +108,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -164,55 +184,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -240,44 +260,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -418,27 +463,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -834,9 +858,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-12-11 15:00\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"Language: pt_BR\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} comentou o seu artigo."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} se inscreveu."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} curtiu o seu artigo."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} te mencionou."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} compartilhou seu artigo."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "Seu feed"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Feed local"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Feed global"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "Imagem de perfil de {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "Página anterior"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "Próxima página"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Opcional"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "Para criar um novo blog, você precisa entrar"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Um blog com o mesmo nome já existe."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "Seu blog foi criado com sucesso!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Seu blog foi excluído."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Você não tem permissão para excluir este blog."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Você não tem permissão para editar este blog."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "Você não pode usar esta mídia como ícone do blog."
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "Você não pode usar esta mídia como capa do blog."
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Os dados do seu blog foram atualizados."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "Seu comentário foi publicado."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Seu comentário foi excluído."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Os registros estão fechados nesta instância."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Sua conta foi criada. Agora você só precisa entrar para poder usá-la."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "As configurações da instância foram salvas."
|
||||
@@ -149,19 +169,19 @@ msgstr "Feito."
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "Para curtir um artigo, você precisa entrar"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Sua mídia foi excluída."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "Você não tem permissão para excluir esta mídia."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Sua imagem de perfil foi atualizada."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "Você não tem permissão para usar esta mídia."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "Você não tem permissão para usar esta mídia."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Para ver suas notificações, você precisa entrar"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Este artigo ainda não foi publicado."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "Para escrever um novo artigo, você precisa entrar"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Você não é um autor deste blog."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Nova postagem"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Editar {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "Você não tem permissão para postar neste blog."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Seu artigo foi atualizado."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Seu artigo foi salvo."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Novo artigo"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Você não tem permissão para excluir este artigo."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Seu artigo foi excluído."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr "Parece que o artigo que você tentou excluir não existe. Talvez ele já tenha sido excluído?"
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr "Não foi possível obter informações sobre sua conta. Por favor, certifique-se de que seu nome de usuário completo está certo."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Aqui está o link para redefinir sua senha: {0}"
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "Sua senha foi redefinida com sucesso."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "Para acessar seu painel, você precisa entrar"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Você deixou de seguir {}."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Você seguiu {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "Para se inscrever, você precisa entrar"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "Para editar seu perfil, você precisa entrar"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Seu perfil foi atualizado."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Sua conta foi excluída."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "Você não pode excluir a conta de outra pessoa."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Os registros estão fechados nesta instância."
|
||||
msgid "Create your account"
|
||||
msgstr "Criar sua conta"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Sua conta foi criada. Agora você só precisa entrar para poder usá-la."
|
||||
msgid "Create an account"
|
||||
msgstr "Criar uma conta"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Desculpe, mas os registros estão fechados nesta instância. Você pode, no entanto, procurar outra."
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Verifique sua caixa de entrada!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nome de usuário"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Confirmação de senha"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Envio de mídia"
|
||||
@@ -423,27 +468,6 @@ msgstr "Inscritos"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Inscrições"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Criar sua conta"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Criar uma conta"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nome de usuário"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Confirmação de senha"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Desculpe, mas os registros estão fechados nesta instância. Você pode, no entanto, procurar outra."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "Inscrições de {0}"
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr "Confirmação"
|
||||
msgid "Update password"
|
||||
msgstr "Atualizar senha"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Verifique sua caixa de entrada!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "Enviamos para você um e-mail com um link para redefinir sua senha."
|
||||
|
||||
|
||||
+95
-74
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Romanian\n"
|
||||
"Language: ro_RO\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} a comentat pe articolul tău."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} este abonat la tine."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} i-a plăcut articolul tău."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} te-a menționat."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} impulsionat articolul tău."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "Avatarul lui {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Opţional"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
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:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Nu aveți permisiunea de a șterge acest blog."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Acest post nu a fost publicată încă."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
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:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Postare nouă"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Editare {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "Parola dumneavoastră a fost resetată cu succes."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nume utilizator"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Parolă"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr "Abonaţi"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Abonamente"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nume utilizator"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Parolă"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -843,9 +867,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"Language: ru_RU\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} commented on your article."
|
||||
msgstr "{0} прокомментировал(а) Вашу статью."
|
||||
|
||||
# src/template_utils.rs:106
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr "{0} подписан на вас."
|
||||
|
||||
# src/template_utils.rs:107
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr "{0} понравилась ваша статья."
|
||||
|
||||
# src/template_utils.rs:108
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr "{0} упомянул вас."
|
||||
|
||||
# src/template_utils.rs:109
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr "{0} продвинули вашу статью."
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "Ваша лента"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "Локальная лента"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "Объединенная лента"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "Аватар {0}"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "Предыдущая страница"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "Следующая страница"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "Не обязательно"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr "Для создания нового блога необходимо войти в систему"
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr "Блог с таким именем уже существует."
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr "Ваш блог был успешно создан!"
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr "Ваш блог был удален."
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr "Вы не можете удалить этот блог."
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr "Вы не можете редактировать этот блог."
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr "Вы не можете использовать этот объект в качестве иконки блога."
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr "Вы не можете использовать этот объект как баннер блога."
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr "Информация о вашем блоге обновлена."
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr "Ваш комментарий опубликован."
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr "Ваш комментарий был удалён."
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Регистрации на данном экземпляре закрыты."
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Ваша учетная запись была создана. Теперь вам нужно авторизоваться, прежде чем вы сможете ее использовать."
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr "Настройки экземпляра сохранены."
|
||||
@@ -149,19 +169,19 @@ msgstr "Выполнено."
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr "Чтобы лайкнуть сообщением, вы должны войти в систему"
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr "Ваш файл был удалён."
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr "У вас нет прав на удаление этого файла."
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr "Ваш аватар был обновлен."
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr "Вы не можете использовать этот файл."
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr "Вы не можете использовать этот файл."
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr "Чтобы увидеть ваши уведомления, вы должны войти в систему"
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr "Этот пост ещё не опубликован."
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr "Чтобы написать новое сообщение, необходимо войти в систему"
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr "Вы не являетесь автором этого блога."
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "Новый пост"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "Редактировать {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr "Вы не имеете прав на публикацию в этом блоге."
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr "Ваша статья была обновлена."
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr "Ваша статья сохранена."
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "Новая статья"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr "Вы не можете удалить эту статью."
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr "Ваша статья была удалена."
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr "Похоже, статья, которую вы пытаетесь удалить, не существует. Возможно она уже исчезла?"
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr "Не удалось получить достаточную информацию о вашей учетной записи. Пожалуйста, убедитесь, что ваше имя пользователя правильно."
|
||||
|
||||
@@ -245,45 +265,70 @@ msgstr "Перейдите по ссылке для сброса вашего п
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr "Ваш пароль был успешно сброшен."
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr "Для доступа к панели инструментов необходимо войти в систему"
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr "Вы больше не отслеживаете {}."
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr "Теперь вы отслеживаете {}."
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr "Чтобы подписаться на кого-то, необходимо войти в систему"
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr "Для редактирования профиля необходимо войти в систему"
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr "Ваш профиль был изменен."
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr "Ваша учетная запись удалена."
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr "Вы не можете удалить чужую учетную запись."
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr "Регистрации на данном экземпляре закрыты."
|
||||
msgid "Create your account"
|
||||
msgstr "Создать аккаунт"
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr "Ваша учетная запись была создана. Теперь вам нужно авторизоваться, прежде чем вы сможете ее использовать."
|
||||
msgid "Create an account"
|
||||
msgstr "Создать новый аккаунт"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Электронная почта"
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Приносим извинения, но регистрация на данном узле закрыта. Однако, вы можете найти другой."
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Проверьте ваш почтовый ящик!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Имя пользователя"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Подтверждение пароля"
|
||||
|
||||
msgid "Media upload"
|
||||
msgstr "Загрузка медиафайлов"
|
||||
@@ -423,27 +468,6 @@ msgstr "Подписчики"
|
||||
msgid "Subscriptions"
|
||||
msgstr "Подписки"
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr "Создать аккаунт"
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr "Создать новый аккаунт"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Имя пользователя"
|
||||
|
||||
msgid "Email"
|
||||
msgstr "Электронная почта"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr "Подтверждение пароля"
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr "Приносим извинения, но регистрация на данном узле закрыта. Однако, вы можете найти другой."
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr "{0} подписок"
|
||||
|
||||
@@ -845,9 +869,6 @@ msgstr "Подтверждение"
|
||||
msgid "Update password"
|
||||
msgstr "Сменить пароль"
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr "Проверьте ваш почтовый ящик!"
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr "Мы отправили письмо на адрес, который вы нам дали, со ссылкой для сброса пароля."
|
||||
|
||||
|
||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Santali\n"
|
||||
"Language: sat_IN\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:106
|
||||
msgid "{0} is subscribed to you."
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} liked your article."
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} mentioned you."
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr "ᱟᱢᱟᱜ ᱯᱷᱤᱤᱰ"
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr "ᱞᱚᱠᱟᱞ ᱯᱷᱤᱤᱰ"
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr "ᱯᱷᱮᱰᱟᱹᱨᱮᱮᱴᱰ ᱯᱷᱤᱤᱰ"
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr "{0} ᱟᱹᱣᱛᱟᱨ ᱠᱚ"
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr "ᱢᱟᱲᱟᱝ ᱥᱟᱦᱴᱟ"
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "ᱤᱱᱟᱹ ᱛᱟᱭᱚᱢ ᱥᱟᱦᱴᱟ"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr "ᱚᱯᱥᱚᱱᱟᱞ"
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr "ᱦᱩᱭᱮᱱᱟ ᱾"
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr "ᱱᱟᱣᱟ ᱯᱚᱥᱴ"
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr "ᱥᱟᱯᱲᱟᱣ {0}"
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr "ᱱᱟᱶᱟ ᱚᱱᱚᱞ"
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: plume\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
|
||||
"PO-Revision-Date: 2021-05-05 18:31\n"
|
||||
"PO-Revision-Date: 2022-01-12 01:28\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Sinhala\n"
|
||||
"Language: si_LK\n"
|
||||
@@ -18,86 +18,90 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 8\n"
|
||||
|
||||
# src/template_utils.rs:105
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:106
|
||||
msgid "{0} is subscribed to you."
|
||||
msgid "Someone"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:107
|
||||
msgid "{0} liked your article."
|
||||
msgid "{0} commented on your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:108
|
||||
msgid "{0} mentioned you."
|
||||
msgid "{0} is subscribed to you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:109
|
||||
msgid "{0} liked your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:110
|
||||
msgid "{0} mentioned you."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:111
|
||||
msgid "{0} boosted your article."
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:116
|
||||
# src/template_utils.rs:118
|
||||
msgid "Your feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:117
|
||||
# src/template_utils.rs:119
|
||||
msgid "Local feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:118
|
||||
# src/template_utils.rs:120
|
||||
msgid "Federated feed"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:154
|
||||
# src/template_utils.rs:156
|
||||
msgid "{0}'s avatar"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:198
|
||||
# src/template_utils.rs:200
|
||||
msgid "Previous page"
|
||||
msgstr ""
|
||||
|
||||
# src/template_utils.rs:209
|
||||
# src/template_utils.rs:211
|
||||
msgid "Next page"
|
||||
msgstr "ඊළඟ පිටුව"
|
||||
|
||||
# src/template_utils.rs:363
|
||||
# src/template_utils.rs:365
|
||||
msgid "Optional"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:67
|
||||
# src/routes/blogs.rs:68
|
||||
msgid "To create a new blog, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:109
|
||||
# src/routes/blogs.rs:110
|
||||
msgid "A blog with the same name already exists."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:147
|
||||
# src/routes/blogs.rs:148
|
||||
msgid "Your blog was successfully created!"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:165
|
||||
# src/routes/blogs.rs:166
|
||||
msgid "Your blog was deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:173
|
||||
# src/routes/blogs.rs:174
|
||||
msgid "You are not allowed to delete this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:223
|
||||
# src/routes/blogs.rs:224
|
||||
msgid "You are not allowed to edit this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:279
|
||||
# src/routes/blogs.rs:280
|
||||
msgid "You can't use this media as a blog icon."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:297
|
||||
# src/routes/blogs.rs:298
|
||||
msgid "You can't use this media as a blog banner."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/blogs.rs:331
|
||||
# src/routes/blogs.rs:332
|
||||
msgid "Your blog information have been updated."
|
||||
msgstr ""
|
||||
|
||||
@@ -109,6 +113,22 @@ msgstr ""
|
||||
msgid "Your comment has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:82
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:119
|
||||
msgid "User registration"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:120
|
||||
msgid "Here is the link for registration: {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/email_signups.rs:219
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/instance.rs:117
|
||||
msgid "Instance settings have been saved."
|
||||
msgstr ""
|
||||
@@ -149,19 +169,19 @@ msgstr ""
|
||||
msgid "To like a post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:158
|
||||
# src/routes/medias.rs:153
|
||||
msgid "Your media have been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:163
|
||||
# src/routes/medias.rs:158
|
||||
msgid "You are not allowed to delete this media."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:180
|
||||
# src/routes/medias.rs:175
|
||||
msgid "Your avatar has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/medias.rs:185
|
||||
# src/routes/medias.rs:180
|
||||
msgid "You are not allowed to use this media."
|
||||
msgstr ""
|
||||
|
||||
@@ -169,55 +189,55 @@ msgstr ""
|
||||
msgid "To see your notifications, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:55
|
||||
# src/routes/posts.rs:56
|
||||
msgid "This post isn't published yet."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:125
|
||||
# src/routes/posts.rs:126
|
||||
msgid "To write a new post, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:146
|
||||
# src/routes/posts.rs:147
|
||||
msgid "You are not an author of this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:153
|
||||
# src/routes/posts.rs:154
|
||||
msgid "New post"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:198
|
||||
# src/routes/posts.rs:199
|
||||
msgid "Edit {0}"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:267
|
||||
# src/routes/posts.rs:268
|
||||
msgid "You are not allowed to publish on this blog."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:367
|
||||
# src/routes/posts.rs:368
|
||||
msgid "Your article has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:556
|
||||
# src/routes/posts.rs:557
|
||||
msgid "Your article has been saved."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:563
|
||||
# src/routes/posts.rs:564
|
||||
msgid "New article"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:601
|
||||
# src/routes/posts.rs:602
|
||||
msgid "You are not allowed to delete this article."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:625
|
||||
# src/routes/posts.rs:626
|
||||
msgid "Your article has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:630
|
||||
# src/routes/posts.rs:631
|
||||
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/posts.rs:672
|
||||
# src/routes/posts.rs:673
|
||||
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||
msgstr ""
|
||||
|
||||
@@ -245,44 +265,69 @@ msgstr ""
|
||||
msgid "Your password was successfully reset."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:74
|
||||
# src/routes/user.rs:87
|
||||
msgid "To access your dashboard, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:96
|
||||
# src/routes/user.rs:109
|
||||
msgid "You are no longer following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:113
|
||||
# src/routes/user.rs:126
|
||||
msgid "You are now following {}."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:190
|
||||
# src/routes/user.rs:203
|
||||
msgid "To subscribe to someone, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:299
|
||||
# src/routes/user.rs:323
|
||||
msgid "To edit your profile, you need to be logged in"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:345
|
||||
# src/routes/user.rs:369
|
||||
msgid "Your profile has been updated."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:373
|
||||
# src/routes/user.rs:397
|
||||
msgid "Your account has been deleted."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:379
|
||||
# src/routes/user.rs:403
|
||||
msgid "You can't delete someone else's account."
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:463
|
||||
msgid "Registrations are closed on this instance."
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
# src/routes/user.rs:486
|
||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Email confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link for registration."
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "පරිශීලක නාමය"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "මුර පදය"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Media upload"
|
||||
@@ -423,27 +468,6 @@ msgstr ""
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create your account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "පරිශීලක නාමය"
|
||||
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr "මුර පදය"
|
||||
|
||||
msgid "Password confirmation"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||
msgstr ""
|
||||
|
||||
msgid "{0}'s subscriptions"
|
||||
msgstr ""
|
||||
|
||||
@@ -841,9 +865,6 @@ msgstr ""
|
||||
msgid "Update password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check your inbox!"
|
||||
msgstr ""
|
||||
|
||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||
msgstr ""
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user