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
|
## [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
|
## [[0.7.0]] - 2022-01-02
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@@ -218,7 +236,8 @@
|
|||||||
- Ability to create multiple blogs
|
- Ability to create multiple blogs
|
||||||
|
|
||||||
<!-- next-url -->
|
<!-- 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.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.6.0]]: https://github.com/Plume-org/Plume/compare/0.5.0...0.6.0
|
||||||
[0.5.0]: https://github.com/Plume-org/Plume/compare/0.4.0-alpha-4...0.5.0
|
[0.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]
|
[package]
|
||||||
authors = ["Plume contributors"]
|
authors = ["Plume contributors"]
|
||||||
name = "plume"
|
name = "plume"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
repository = "https://github.com/Plume-org/Plume"
|
repository = "https://github.com/Plume-org/Plume"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
activitypub = "0.1.3"
|
activitypub = "0.1.3"
|
||||||
askama_escape = "0.1"
|
|
||||||
atom_syndication = "0.6"
|
atom_syndication = "0.6"
|
||||||
clap = "2.33"
|
clap = "2.33"
|
||||||
dotenv = "0.15.0"
|
dotenv = "0.15.0"
|
||||||
gettext = { git = "https://github.com/Plume-org/gettext/", rev = "294c54d74c699fbc66502b480a37cc66c1daa7f3" }
|
gettext = { git = "https://github.com/Plume-org/gettext/", rev = "294c54d74c699fbc66502b480a37cc66c1daa7f3" }
|
||||||
gettext-macros = { git = "https://github.com/Plume-org/gettext-macros/", rev = "a7c605f7edd6bfbfbfe7778026bfefd88d82db10" }
|
gettext-macros = { git = "https://github.com/Plume-org/gettext-macros/", rev = "a7c605f7edd6bfbfbfe7778026bfefd88d82db10" }
|
||||||
gettext-utils = { 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"
|
guid-create = "0.2"
|
||||||
lettre = "0.9.2"
|
|
||||||
lettre_email = "0.9.2"
|
lettre_email = "0.9.2"
|
||||||
num_cpus = "1.10"
|
num_cpus = "1.10"
|
||||||
rocket = "0.4.6"
|
rocket = "0.4.6"
|
||||||
rocket_contrib = { version = "0.4.5", features = ["json"] }
|
rocket_contrib = { version = "0.4.5", features = ["json"] }
|
||||||
rocket_i18n = { git = "https://github.com/Plume-org/rocket_i18n", rev = "e922afa7c366038b3433278c03b1456b346074f2" }
|
rocket_i18n = { git = "https://github.com/Plume-org/rocket_i18n", rev = "e922afa7c366038b3433278c03b1456b346074f2" }
|
||||||
rpassword = "4.0"
|
|
||||||
scheduled-thread-pool = "0.2.2"
|
scheduled-thread-pool = "0.2.2"
|
||||||
serde = "1.0"
|
serde = "1.0"
|
||||||
serde_json = "1.0.70"
|
serde_json = "1.0.70"
|
||||||
shrinkwraprs = "0.2.1"
|
shrinkwraprs = "0.3.0"
|
||||||
validator = "0.8"
|
validator = { version = "0.14", features = ["derive"] }
|
||||||
validator_derive = "0.8"
|
|
||||||
webfinger = "0.4.1"
|
webfinger = "0.4.1"
|
||||||
tracing = "0.1.22"
|
tracing = "0.1.22"
|
||||||
tracing-subscriber = "0.2.15"
|
tracing-subscriber = "0.3.5"
|
||||||
riker = "0.4.2"
|
riker = "0.4.2"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
@@ -52,7 +48,7 @@ version = "1.4.5"
|
|||||||
[dependencies.multipart]
|
[dependencies.multipart]
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["server"]
|
features = ["server"]
|
||||||
version = "0.16"
|
version = "0.18"
|
||||||
|
|
||||||
[dependencies.plume-api]
|
[dependencies.plume-api]
|
||||||
path = "plume-api"
|
path = "plume-api"
|
||||||
@@ -69,7 +65,7 @@ rev = "29910f2829e7e590a540da3804336577b48c7b31"
|
|||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
ructe = "0.13.0"
|
ructe = "0.13.0"
|
||||||
rsass = "0.9"
|
rsass = "0.23"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["postgres"]
|
default = ["postgres"]
|
||||||
|
|||||||
@@ -516,4 +516,11 @@ input:checked ~ .cw-container > .cw-text {
|
|||||||
main .article-meta > *, main .article-meta .comments, main .article-meta > .banner > * {
|
main .article-meta > *, main .article-meta .comments, main .article-meta > .banner > * {
|
||||||
margin: 0 5%;
|
margin: 0 5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bottom-bar {
|
||||||
|
align-items: center;
|
||||||
|
& > div:nth-child(2) {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -219,15 +219,19 @@ p.error {
|
|||||||
margin: 20px;
|
margin: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cover-link {
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.cover {
|
.cover {
|
||||||
min-height: 10em;
|
min-height: 10em;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
|
||||||
&:hover {
|
|
||||||
opacity: 0.9;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
@@ -245,6 +249,9 @@ p.error {
|
|||||||
position: relative;
|
position: relative;
|
||||||
a {
|
a {
|
||||||
display: block;
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
padding-block-start: 0.5em;
|
||||||
transition: color 0.1s ease-in;
|
transition: color 0.1s ease-in;
|
||||||
color: $text-color;
|
color: $text-color;
|
||||||
|
|
||||||
@@ -569,14 +576,6 @@ figure {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-bar {
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
& > div {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
main .article-meta .comments .comment {
|
main .article-meta .comments .comment {
|
||||||
header {
|
header {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|||||||
@@ -120,8 +120,14 @@ fn compile_theme(path: &Path, out_dir: &Path) -> std::io::Result<()> {
|
|||||||
// compile the .scss/.sass file
|
// compile the .scss/.sass file
|
||||||
let mut out = File::create(out.join("theme.css"))?;
|
let mut out = File::create(out.join("theme.css"))?;
|
||||||
out.write_all(
|
out.write_all(
|
||||||
&rsass::compile_scss_file(path, rsass::OutputStyle::Compressed)
|
&rsass::compile_scss_path(
|
||||||
.expect("SCSS compilation error"),
|
path,
|
||||||
|
rsass::output::Format {
|
||||||
|
style: rsass::output::Style::Compressed,
|
||||||
|
..rsass::output::Format::default()
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.expect("SCSS compilation error"),
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
Ok(())
|
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]
|
[package]
|
||||||
name = "plume-api"
|
name = "plume-api"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Plume contributors"]
|
authors = ["Plume contributors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "plume-cli"
|
name = "plume-cli"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Plume contributors"]
|
authors = ["Plume contributors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
@@ -10,7 +10,7 @@ path = "src/main.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = "2.33"
|
clap = "2.33"
|
||||||
dotenv = "0.14"
|
dotenv = "0.15"
|
||||||
rpassword = "5.0.0"
|
rpassword = "5.0.0"
|
||||||
|
|
||||||
[dependencies.diesel]
|
[dependencies.diesel]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "plume-common"
|
name = "plume-common"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Plume contributors"]
|
authors = ["Plume contributors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
@@ -9,10 +9,9 @@ activitypub = "0.1.1"
|
|||||||
activitystreams-derive = "0.1.1"
|
activitystreams-derive = "0.1.1"
|
||||||
activitystreams-traits = "0.1.0"
|
activitystreams-traits = "0.1.0"
|
||||||
array_tool = "1.0"
|
array_tool = "1.0"
|
||||||
base64 = "0.10"
|
base64 = "0.13"
|
||||||
heck = "0.3.0"
|
heck = "0.4.0"
|
||||||
hex = "0.3"
|
hex = "0.4"
|
||||||
hyper = "0.12.33"
|
|
||||||
openssl = "0.10.22"
|
openssl = "0.10.22"
|
||||||
rocket = "0.4.6"
|
rocket = "0.4.6"
|
||||||
reqwest = { version = "0.9", features = ["socks"] }
|
reqwest = { version = "0.9", features = ["socks"] }
|
||||||
@@ -24,6 +23,7 @@ syntect = "4.5.0"
|
|||||||
tokio = "0.1.22"
|
tokio = "0.1.22"
|
||||||
regex-syntax = { version = "0.6.17", default-features = false, features = ["unicode-perl"] }
|
regex-syntax = { version = "0.6.17", default-features = false, features = ["unicode-perl"] }
|
||||||
tracing = "0.1.22"
|
tracing = "0.1.22"
|
||||||
|
askama_escape = "0.10.2"
|
||||||
|
|
||||||
[dependencies.chrono]
|
[dependencies.chrono]
|
||||||
features = ["serde"]
|
features = ["serde"]
|
||||||
@@ -36,3 +36,5 @@ branch = "bidi-plume"
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
once_cell = "1.5.2"
|
once_cell = "1.5.2"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
|||||||
@@ -1,11 +1,8 @@
|
|||||||
use heck::CamelCase;
|
use heck::ToUpperCamelCase;
|
||||||
use openssl::rand::rand_bytes;
|
use openssl::rand::rand_bytes;
|
||||||
use pulldown_cmark::{html, CodeBlockKind, CowStr, Event, LinkType, Options, Parser, Tag};
|
use pulldown_cmark::{html, CodeBlockKind, CowStr, Event, LinkType, Options, Parser, Tag};
|
||||||
use regex_syntax::is_word_character;
|
use regex_syntax::is_word_character;
|
||||||
use rocket::{
|
use rocket::http::uri::Uri;
|
||||||
http::uri::Uri,
|
|
||||||
response::{Flash, Redirect},
|
|
||||||
};
|
|
||||||
use std::collections::HashSet;
|
use std::collections::HashSet;
|
||||||
use syntect::html::{ClassStyle, ClassedHTMLGenerator};
|
use syntect::html::{ClassStyle, ClassedHTMLGenerator};
|
||||||
use syntect::parsing::SyntaxSet;
|
use syntect::parsing::SyntaxSet;
|
||||||
@@ -21,7 +18,7 @@ pub fn random_hex() -> String {
|
|||||||
|
|
||||||
/// Remove non alphanumeric characters and CamelCase a string
|
/// Remove non alphanumeric characters and CamelCase a string
|
||||||
pub fn make_actor_id(name: &str) -> String {
|
pub fn make_actor_id(name: &str) -> String {
|
||||||
name.to_camel_case()
|
name.to_upper_camel_case()
|
||||||
.chars()
|
.chars()
|
||||||
.filter(|c| c.is_alphanumeric())
|
.filter(|c| c.is_alphanumeric())
|
||||||
.collect()
|
.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)]
|
#[derive(Debug)]
|
||||||
enum State {
|
enum State {
|
||||||
Mention,
|
Mention,
|
||||||
@@ -466,6 +450,10 @@ pub fn md_to_html<'a>(
|
|||||||
(buf, mentions.collect(), hashtags.collect())
|
(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)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "plume-front"
|
name = "plume-front"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Plume contributors"]
|
authors = ["Plume contributors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "plume-macro"
|
name = "plume-macro"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Trinity Pointard <trinity.pointard@insa-rennes.fr>"]
|
authors = ["Trinity Pointard <trinity.pointard@insa-rennes.fr>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Plume procedural macros"
|
description = "Plume procedural macros"
|
||||||
|
|||||||
@@ -1,18 +1,17 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "plume-models"
|
name = "plume-models"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Plume contributors"]
|
authors = ["Plume contributors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
activitypub = "0.1.1"
|
activitypub = "0.1.1"
|
||||||
ammonia = "2.1.1"
|
ammonia = "3.1.2"
|
||||||
askama_escape = "0.1"
|
|
||||||
bcrypt = "0.10.1"
|
bcrypt = "0.10.1"
|
||||||
guid-create = "0.1"
|
guid-create = "0.2"
|
||||||
itertools = "0.8.0"
|
itertools = "0.10.3"
|
||||||
lazy_static = "1.0"
|
lazy_static = "1.0"
|
||||||
ldap3 = "0.7.1"
|
ldap3 = "0.9.3"
|
||||||
migrations_internals= "1.4.0"
|
migrations_internals= "1.4.0"
|
||||||
openssl = "0.10.22"
|
openssl = "0.10.22"
|
||||||
rocket = "0.4.6"
|
rocket = "0.4.6"
|
||||||
@@ -26,14 +25,16 @@ tantivy = "0.13.3"
|
|||||||
url = "2.1"
|
url = "2.1"
|
||||||
walkdir = "2.2"
|
walkdir = "2.2"
|
||||||
webfinger = "0.4.1"
|
webfinger = "0.4.1"
|
||||||
whatlang = "0.11.1"
|
whatlang = "0.13.0"
|
||||||
shrinkwraprs = "0.2.1"
|
shrinkwraprs = "0.3.0"
|
||||||
diesel-derive-newtype = "0.1.2"
|
diesel-derive-newtype = "0.1.2"
|
||||||
glob = "0.3.0"
|
glob = "0.3.0"
|
||||||
lindera-tantivy = { version = "0.7.1", optional = true }
|
lindera-tantivy = { version = "0.7.1", optional = true }
|
||||||
tracing = "0.1.22"
|
tracing = "0.1.22"
|
||||||
riker = "0.4.2"
|
riker = "0.4.2"
|
||||||
once_cell = "1.5.2"
|
once_cell = "1.5.2"
|
||||||
|
lettre = "0.9.6"
|
||||||
|
native-tls = "0.2.8"
|
||||||
|
|
||||||
[dependencies.chrono]
|
[dependencies.chrono]
|
||||||
features = ["serde"]
|
features = ["serde"]
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
use crate::search::TokenizerKind as SearchTokenizer;
|
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::Limits;
|
||||||
use rocket::Config as RocketConfig;
|
use rocket::Config as RocketConfig;
|
||||||
use std::collections::HashSet;
|
use std::collections::HashSet;
|
||||||
@@ -15,12 +17,14 @@ pub struct Config {
|
|||||||
pub db_name: &'static str,
|
pub db_name: &'static str,
|
||||||
pub db_max_size: Option<u32>,
|
pub db_max_size: Option<u32>,
|
||||||
pub db_min_idle: Option<u32>,
|
pub db_min_idle: Option<u32>,
|
||||||
|
pub signup: SignupStrategy,
|
||||||
pub search_index: String,
|
pub search_index: String,
|
||||||
pub search_tokenizers: SearchTokenizerConfig,
|
pub search_tokenizers: SearchTokenizerConfig,
|
||||||
pub rocket: Result<RocketConfig, InvalidRocketConfig>,
|
pub rocket: Result<RocketConfig, InvalidRocketConfig>,
|
||||||
pub logo: LogoConfig,
|
pub logo: LogoConfig,
|
||||||
pub default_theme: String,
|
pub default_theme: String,
|
||||||
pub media_directory: String,
|
pub media_directory: String,
|
||||||
|
pub mail: Option<MailConfig>,
|
||||||
pub ldap: Option<LdapConfig>,
|
pub ldap: Option<LdapConfig>,
|
||||||
pub proxy: Option<ProxyConfig>,
|
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 struct LdapConfig {
|
||||||
pub addr: String,
|
pub addr: String,
|
||||||
pub base_dn: String,
|
pub base_dn: String,
|
||||||
@@ -335,6 +364,7 @@ lazy_static! {
|
|||||||
s.parse::<u32>()
|
s.parse::<u32>()
|
||||||
.expect("Couldn't parse DB_MIN_IDLE into u32")
|
.expect("Couldn't parse DB_MIN_IDLE into u32")
|
||||||
)),
|
)),
|
||||||
|
signup: var("SIGNUP").map_or(SignupStrategy::default(), |s| s.parse().unwrap()),
|
||||||
#[cfg(feature = "postgres")]
|
#[cfg(feature = "postgres")]
|
||||||
database_url: var("DATABASE_URL")
|
database_url: var("DATABASE_URL")
|
||||||
.unwrap_or_else(|_| format!("postgres://plume:plume@localhost/{}", DB_NAME)),
|
.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()),
|
default_theme: var("DEFAULT_THEME").unwrap_or_else(|_| "default-light".to_owned()),
|
||||||
media_directory: var("MEDIA_UPLOAD_DIRECTORY")
|
media_directory: var("MEDIA_UPLOAD_DIRECTORY")
|
||||||
.unwrap_or_else(|_| "static/media".to_owned()),
|
.unwrap_or_else(|_| "static/media".to_owned()),
|
||||||
|
mail: get_mail_config(),
|
||||||
ldap: get_ldap_config(),
|
ldap: get_ldap_config(),
|
||||||
proxy: get_proxy_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]
|
#[macro_use]
|
||||||
extern crate tantivy;
|
extern crate tantivy;
|
||||||
|
|
||||||
|
pub use lettre;
|
||||||
|
pub use lettre::smtp;
|
||||||
use once_cell::sync::Lazy;
|
use once_cell::sync::Lazy;
|
||||||
use plume_common::activity_pub::{inbox::InboxError, request, sign};
|
use plume_common::activity_pub::{inbox::InboxError, request, sign};
|
||||||
use posts::PostEvent;
|
use posts::PostEvent;
|
||||||
@@ -65,6 +67,7 @@ pub enum Error {
|
|||||||
Url,
|
Url,
|
||||||
Webfinger,
|
Webfinger,
|
||||||
Expired,
|
Expired,
|
||||||
|
UserAlreadyExists,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<bcrypt::BcryptError> for Error {
|
impl From<bcrypt::BcryptError> for Error {
|
||||||
@@ -300,6 +303,33 @@ pub fn ap_url(url: &str) -> String {
|
|||||||
format!("https://{}", url)
|
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)]
|
#[cfg(test)]
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
mod tests {
|
mod tests {
|
||||||
@@ -347,6 +377,7 @@ pub mod blogs;
|
|||||||
pub mod comment_seers;
|
pub mod comment_seers;
|
||||||
pub mod comments;
|
pub mod comments;
|
||||||
pub mod db_conn;
|
pub mod db_conn;
|
||||||
|
pub mod email_signups;
|
||||||
pub mod follows;
|
pub mod follows;
|
||||||
pub mod headers;
|
pub mod headers;
|
||||||
pub mod inbox;
|
pub mod inbox;
|
||||||
@@ -367,6 +398,7 @@ pub mod safe_string;
|
|||||||
#[allow(unused_imports)]
|
#[allow(unused_imports)]
|
||||||
pub mod schema;
|
pub mod schema;
|
||||||
pub mod search;
|
pub mod search;
|
||||||
|
pub mod signups;
|
||||||
pub mod tags;
|
pub mod tags;
|
||||||
pub mod timeline;
|
pub mod timeline;
|
||||||
pub mod users;
|
pub mod users;
|
||||||
|
|||||||
@@ -3,12 +3,11 @@ use crate::{
|
|||||||
users::User, Connection, Error, Result, CONFIG,
|
users::User, Connection, Error, Result, CONFIG,
|
||||||
};
|
};
|
||||||
use activitypub::object::Image;
|
use activitypub::object::Image;
|
||||||
use askama_escape::escape;
|
|
||||||
use diesel::{self, ExpressionMethods, QueryDsl, RunQueryDsl};
|
use diesel::{self, ExpressionMethods, QueryDsl, RunQueryDsl};
|
||||||
use guid_create::GUID;
|
use guid_create::GUID;
|
||||||
use plume_common::{
|
use plume_common::{
|
||||||
activity_pub::{inbox::FromId, request, Id},
|
activity_pub::{inbox::FromId, request, Id},
|
||||||
utils::MediaProcessor,
|
utils::{escape, MediaProcessor},
|
||||||
};
|
};
|
||||||
use std::{
|
use std::{
|
||||||
fs::{self, DirBuilder},
|
fs::{self, DirBuilder},
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ use activitypub::{
|
|||||||
CustomObject,
|
CustomObject,
|
||||||
};
|
};
|
||||||
use chrono::{NaiveDateTime, TimeZone, Utc};
|
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 once_cell::sync::Lazy;
|
||||||
use plume_common::{
|
use plume_common::{
|
||||||
activity_pub::{
|
activity_pub::{
|
||||||
@@ -67,15 +67,15 @@ impl Post {
|
|||||||
find_by!(posts, find_by_ap_url, ap_url as &str);
|
find_by!(posts, find_by_ap_url, ap_url as &str);
|
||||||
|
|
||||||
last!(posts);
|
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)
|
diesel::insert_into(posts::table)
|
||||||
.values(new)
|
.values(new)
|
||||||
.execute(conn)?;
|
.execute(conn)?;
|
||||||
let mut post = Self::last(conn)?;
|
let 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)?;
|
|
||||||
}
|
|
||||||
|
|
||||||
if post.published {
|
if post.published {
|
||||||
post.publish_published();
|
post.publish_published();
|
||||||
|
|||||||
@@ -73,6 +73,7 @@ table! {
|
|||||||
user_id -> Int4,
|
user_id -> Int4,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
table! {
|
table! {
|
||||||
email_blocklist(id){
|
email_blocklist(id){
|
||||||
id -> Int4,
|
id -> Int4,
|
||||||
@@ -83,6 +84,15 @@ table! {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table! {
|
||||||
|
email_signups (id) {
|
||||||
|
id -> Int4,
|
||||||
|
email -> Varchar,
|
||||||
|
token -> Varchar,
|
||||||
|
expiration_date -> Timestamp,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
table! {
|
table! {
|
||||||
follows (id) {
|
follows (id) {
|
||||||
id -> Int4,
|
id -> Int4,
|
||||||
@@ -306,6 +316,7 @@ allow_tables_to_appear_in_same_query!(
|
|||||||
blogs,
|
blogs,
|
||||||
comments,
|
comments,
|
||||||
comment_seers,
|
comment_seers,
|
||||||
|
email_signups,
|
||||||
follows,
|
follows,
|
||||||
instances,
|
instances,
|
||||||
likes,
|
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> {
|
fn fetch_from_webfinger(conn: &DbConn, acct: &str) -> Result<User> {
|
||||||
let link = resolve(acct.to_owned(), true)?
|
let link = resolve(acct.to_owned(), true)?
|
||||||
.links
|
.links
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Afrikaans\n"
|
"Language-Team: Afrikaans\n"
|
||||||
"Language: af_ZA\n"
|
"Language: af_ZA\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Arabic\n"
|
"Language-Team: Arabic\n"
|
||||||
"Language: ar_SA\n"
|
"Language: ar_SA\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "فتح محرر النصوص الغني"
|
msgstr "فتح محرر النصوص الغني"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "العنوان"
|
msgstr "العنوان"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "العنوان الثانوي أو الملخص"
|
msgstr "العنوان الثانوي أو الملخص"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "اكتب مقالك هنا. ماركداون مُدَعَّم."
|
msgstr "اكتب مقالك هنا. ماركداون مُدَعَّم."
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr "يتبقا {} حرفا تقريبا"
|
msgstr "يتبقا {} حرفا تقريبا"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "الوسوم"
|
msgstr "الوسوم"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "الرخصة"
|
msgstr "الرخصة"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "الغلاف"
|
msgstr "الغلاف"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "هذه مسودة"
|
msgstr "هذه مسودة"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "نشر كتابا"
|
msgstr "نشر كتابا"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bulgarian\n"
|
"Language-Team: Bulgarian\n"
|
||||||
"Language: bg_BG\n"
|
"Language: bg_BG\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr "Искате ли да активирате локално автоматично запаметяване, последно редактирано в {}?"
|
msgstr "Искате ли да активирате локално автоматично запаметяване, последно редактирано в {}?"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Отворете редактора с богат текст"
|
msgstr "Отворете редактора с богат текст"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Заглавие"
|
msgstr "Заглавие"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Подзаглавие или резюме"
|
msgstr "Подзаглавие или резюме"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Напишете статията си тук. Поддържа се Markdown."
|
msgstr "Напишете статията си тук. Поддържа се Markdown."
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr "Остават {} знака вляво"
|
msgstr "Остават {} знака вляво"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Етикети"
|
msgstr "Етикети"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Лиценз"
|
msgstr "Лиценз"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Основно изображение"
|
msgstr "Основно изображение"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Това е проект"
|
msgstr "Това е проект"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Публикувай"
|
msgstr "Публикувай"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Catalan\n"
|
"Language-Team: Catalan\n"
|
||||||
"Language: ca_ES\n"
|
"Language: ca_ES\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Obre l’editor de text enriquit"
|
msgstr "Obre l’editor de text enriquit"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Títol"
|
msgstr "Títol"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Subtítol o resum"
|
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."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Escriviu el vostre article ací. Podeu fer servir el Markdown."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "Queden uns {} caràcters"
|
msgstr "Queden uns {} caràcters"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Etiquetes"
|
msgstr "Etiquetes"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Llicència"
|
msgstr "Llicència"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Coberta"
|
msgstr "Coberta"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Açò és un esborrany"
|
msgstr "Açò és un esborrany"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Publica"
|
msgstr "Publica"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Czech\n"
|
"Language-Team: Czech\n"
|
||||||
"Language: cs_CZ\n"
|
"Language: cs_CZ\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Otevřít editor formátovaného textu"
|
msgstr "Otevřít editor formátovaného textu"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Nadpis"
|
msgstr "Nadpis"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Podnadpis, nebo shrnutí"
|
msgstr "Podnadpis, nebo shrnutí"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Sem napište svůj článek. Markdown je podporován."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "Zbývá kolem {} znaků"
|
msgstr "Zbývá kolem {} znaků"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Tagy"
|
msgstr "Tagy"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licence"
|
msgstr "Licence"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Titulka"
|
msgstr "Titulka"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Tohle je koncept"
|
msgstr "Tohle je koncept"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Zveřejnit"
|
msgstr "Zveřejnit"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Danish\n"
|
"Language-Team: Danish\n"
|
||||||
"Language: da_DK\n"
|
"Language: da_DK\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"Language: de_DE\n"
|
"Language: de_DE\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
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?"
|
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"
|
msgid "Open the rich text editor"
|
||||||
msgstr " Rich Text Editor (RTE) öffnen"
|
msgstr " Rich Text Editor (RTE) öffnen"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Untertitel oder Zusammenfassung"
|
msgstr "Untertitel oder Zusammenfassung"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Schreiben deinen Artikel hier. Markdown wird unterstützt."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "Ungefähr {} Zeichen übrig"
|
msgstr "Ungefähr {} Zeichen übrig"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Schlagwörter"
|
msgstr "Schlagwörter"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Lizenz"
|
msgstr "Lizenz"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Einband"
|
msgstr "Einband"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Dies ist ein Entwurf"
|
msgstr "Dies ist ein Entwurf"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Veröffentlichen"
|
msgstr "Veröffentlichen"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Greek\n"
|
"Language-Team: Greek\n"
|
||||||
"Language: el_GR\n"
|
"Language: el_GR\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: English\n"
|
"Language-Team: English\n"
|
||||||
"Language: en_US\n"
|
"Language: en_US\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Esperanto\n"
|
"Language-Team: Esperanto\n"
|
||||||
"Language: eo_UY\n"
|
"Language: eo_UY\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Malfermi la riĉan redaktilon"
|
msgstr "Malfermi la riĉan redaktilon"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titolo"
|
msgstr "Titolo"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Verku vian artikolon ĉi tie. Markdown estas subtenita."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "Proksimume {} signoj restantaj"
|
msgstr "Proksimume {} signoj restantaj"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Etikedoj"
|
msgstr "Etikedoj"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Permesilo"
|
msgstr "Permesilo"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Kovro"
|
msgstr "Kovro"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Malfinias"
|
msgstr "Malfinias"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Eldoni"
|
msgstr "Eldoni"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"Language: es_ES\n"
|
"Language: es_ES\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
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 {}?"
|
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"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Abrir el editor de texto enriquecido"
|
msgstr "Abrir el editor de texto enriquecido"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Subtítulo, o resumen"
|
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."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Escriba su artículo aquí. Puede utilizar Markdown."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "Quedan unos {} caracteres"
|
msgstr "Quedan unos {} caracteres"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Etiquetas"
|
msgstr "Etiquetas"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licencia"
|
msgstr "Licencia"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Cubierta"
|
msgstr "Cubierta"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Esto es un borrador"
|
msgstr "Esto es un borrador"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Publicar"
|
msgstr "Publicar"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Persian\n"
|
"Language-Team: Persian\n"
|
||||||
"Language: fa_IR\n"
|
"Language: fa_IR\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr "آیا میخواهید نسخهٔ ذخیره شدهٔ خودکار محلّی از آخرین ویرایش در {} را بار کنید؟"
|
msgstr "آیا میخواهید نسخهٔ ذخیره شدهٔ خودکار محلّی از آخرین ویرایش در {} را بار کنید؟"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "باز کردن ویرایشگر غنی"
|
msgstr "باز کردن ویرایشگر غنی"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "عنوان"
|
msgstr "عنوان"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "زیرعنوان، یا چکیده"
|
msgstr "زیرعنوان، یا چکیده"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "مقالهتان را اینجا بنویسید. از مارکداون پشتیبانی میشود."
|
msgstr "مقالهتان را اینجا بنویسید. از مارکداون پشتیبانی میشود."
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr "نزدیک به {} حرف باقی مانده است"
|
msgstr "نزدیک به {} حرف باقی مانده است"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "برچسبها"
|
msgstr "برچسبها"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "پروانه"
|
msgstr "پروانه"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "جلد"
|
msgstr "جلد"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "این، یک پیشنویس است"
|
msgstr "این، یک پیشنویس است"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "انتشار"
|
msgstr "انتشار"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Finnish\n"
|
"Language-Team: Finnish\n"
|
||||||
"Language: fi_FI\n"
|
"Language: fi_FI\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Avaa edistynyt tekstieditori"
|
msgstr "Avaa edistynyt tekstieditori"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Otsikko"
|
msgstr "Otsikko"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Alaotsikko tai tiivistelmä"
|
msgstr "Alaotsikko tai tiivistelmä"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Kirjoita artikkelisi tähän. Markdown -kuvauskieli on tuettu."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "%{count} merkkiä jäljellä"
|
msgstr "%{count} merkkiä jäljellä"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Tagit"
|
msgstr "Tagit"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Lisenssi"
|
msgstr "Lisenssi"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Kansi"
|
msgstr "Kansi"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Tämä on luonnos"
|
msgstr "Tämä on luonnos"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Julkaise"
|
msgstr "Julkaise"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"Language: fr_FR\n"
|
"Language: fr_FR\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
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 à {}?"
|
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"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Ouvrir l'éditeur de texte avancé"
|
msgstr "Ouvrir l'éditeur de texte avancé"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titre"
|
msgstr "Titre"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Sous-titre ou résumé"
|
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."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Écrivez votre article ici. Vous pouvez utiliser du Markdown."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "Environ {} caractères restant"
|
msgstr "Environ {} caractères restant"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Étiquettes"
|
msgstr "Étiquettes"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licence"
|
msgstr "Licence"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Illustration"
|
msgstr "Illustration"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Ceci est un brouillon"
|
msgstr "Ceci est un brouillon"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Publier"
|
msgstr "Publier"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Galician\n"
|
"Language-Team: Galician\n"
|
||||||
"Language: gl_ES\n"
|
"Language: gl_ES\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr "Queres cargar a última copia gardada editada o {}?"
|
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"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Abre o editor de texto enriquecido"
|
msgstr "Abre o editor de texto enriquecido"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Subtítulo, ou resumo"
|
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."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Escribe aquí o teu artigo: podes utilizar Markdown."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "Dispós de {} caracteres"
|
msgstr "Dispós de {} caracteres"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Etiquetas"
|
msgstr "Etiquetas"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licenza"
|
msgstr "Licenza"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Portada"
|
msgstr "Portada"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Este é un borrador"
|
msgstr "Este é un borrador"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Publicar"
|
msgstr "Publicar"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hebrew\n"
|
"Language-Team: Hebrew\n"
|
||||||
"Language: he_IL\n"
|
"Language: he_IL\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hindi\n"
|
"Language-Team: Hindi\n"
|
||||||
"Language: hi_IN\n"
|
"Language: hi_IN\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "शीर्षक"
|
msgstr "शीर्षक"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "अपना आर्टिकल या लेख यहाँ लिखें. Markdown उपलब्ध है."
|
msgstr "अपना आर्टिकल या लेख यहाँ लिखें. Markdown उपलब्ध है."
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr "लगभग {} अक्षर बाकी हैं"
|
msgstr "लगभग {} अक्षर बाकी हैं"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "टैग्स"
|
msgstr "टैग्स"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "लाइसेंस"
|
msgstr "लाइसेंस"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "पब्लिश करें"
|
msgstr "पब्लिश करें"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Croatian\n"
|
"Language-Team: Croatian\n"
|
||||||
"Language: hr_HR\n"
|
"Language: hr_HR\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Naslov"
|
msgstr "Naslov"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Tagovi"
|
msgstr "Tagovi"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licenca"
|
msgstr "Licenca"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Objavi"
|
msgstr "Objavi"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hungarian\n"
|
"Language-Team: Hungarian\n"
|
||||||
"Language: hu_HU\n"
|
"Language: hu_HU\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Italian\n"
|
"Language-Team: Italian\n"
|
||||||
"Language: it_IT\n"
|
"Language: it_IT\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Apri il compositore di testo avanzato"
|
msgstr "Apri il compositore di testo avanzato"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titolo"
|
msgstr "Titolo"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Sottotitolo, o sommario"
|
msgstr "Sottotitolo, o sommario"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Scrivi qui il tuo articolo. È supportato il Markdown."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "Circa {} caratteri rimasti"
|
msgstr "Circa {} caratteri rimasti"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Etichette"
|
msgstr "Etichette"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licenza"
|
msgstr "Licenza"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Copertina"
|
msgstr "Copertina"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Questa è una bozza"
|
msgstr "Questa è una bozza"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Pubblica"
|
msgstr "Pubblica"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Japanese\n"
|
"Language-Team: Japanese\n"
|
||||||
"Language: ja_JP\n"
|
"Language: ja_JP\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "リッチテキストエディターを開く"
|
msgstr "リッチテキストエディターを開く"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "タイトル"
|
msgstr "タイトル"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "サブタイトル、または概要"
|
msgstr "サブタイトル、または概要"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "投稿をここに書きます。Markdown がサポートされています。"
|
msgstr "投稿をここに書きます。Markdown がサポートされています。"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr "残り約 {} 文字"
|
msgstr "残り約 {} 文字"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "タグ"
|
msgstr "タグ"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "ライセンス"
|
msgstr "ライセンス"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "カバー"
|
msgstr "カバー"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "これは下書きです"
|
msgstr "これは下書きです"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "公開"
|
msgstr "公開"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Korean\n"
|
"Language-Team: Korean\n"
|
||||||
"Language: ko_KR\n"
|
"Language: ko_KR\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Dutch\n"
|
"Language-Team: Dutch\n"
|
||||||
"Language: nl_NL\n"
|
"Language: nl_NL\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr "Wilt u de lokale auto-opslaan laden? Laatst bewerkt om: {}"
|
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"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Open de rich-text editor"
|
msgstr "Open de rich-text editor"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Ondertitel of samenvatting"
|
msgstr "Ondertitel of samenvatting"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Schrijf hier je artikel. Markdown wordt ondersteund."
|
msgstr "Schrijf hier je artikel. Markdown wordt ondersteund."
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr "Ongeveer {} tekens over"
|
msgstr "Ongeveer {} tekens over"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Tags"
|
msgstr "Tags"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licentie"
|
msgstr "Licentie"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Hoofdafbeelding"
|
msgstr "Hoofdafbeelding"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Dit is een concept"
|
msgstr "Dit is een concept"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Publiceren"
|
msgstr "Publiceren"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Norwegian\n"
|
"Language-Team: Norwegian\n"
|
||||||
"Language: no_NO\n"
|
"Language: no_NO\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Lisens"
|
msgstr "Lisens"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Publiser"
|
msgstr "Publiser"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Polish\n"
|
"Language-Team: Polish\n"
|
||||||
"Language: pl_PL\n"
|
"Language: pl_PL\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Otwórz edytor tekstu sformatowanego"
|
msgstr "Otwórz edytor tekstu sformatowanego"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Tytuł"
|
msgstr "Tytuł"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Podtytuł, lub podsumowanie"
|
msgstr "Podtytuł, lub podsumowanie"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Napisz swój artykuł tutaj. Markdown jest obsługiwany."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "Pozostało w okolicy {} znaków"
|
msgstr "Pozostało w okolicy {} znaków"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Tagi"
|
msgstr "Tagi"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licencja"
|
msgstr "Licencja"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Okładka"
|
msgstr "Okładka"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "To jest szkic"
|
msgstr "To jest szkic"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Publikuj"
|
msgstr "Publikuj"
|
||||||
|
|
||||||
|
|||||||
@@ -12,46 +12,46 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:331
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:388
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:392
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:399
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:410
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:519
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:520
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:526
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:560
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:571
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese, Brazilian\n"
|
"Language-Team: Portuguese, Brazilian\n"
|
||||||
"Language: pt_BR\n"
|
"Language: pt_BR\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr "Você quer carregar o último conteúdo salvo localmente editado em {}?"
|
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"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Abrir o editor de rich text"
|
msgstr "Abrir o editor de rich text"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Subtítulo ou resumo"
|
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."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Escreva seu artigo aqui. Markdown é suportado."
|
msgstr "Escreva seu artigo aqui. Markdown é suportado."
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr "Cerca de {} caracteres restantes"
|
msgstr "Cerca de {} caracteres restantes"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Tags"
|
msgstr "Tags"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licença"
|
msgstr "Licença"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Capa"
|
msgstr "Capa"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Isso é um rascunho"
|
msgstr "Isso é um rascunho"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Publicar"
|
msgstr "Publicar"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Romanian\n"
|
"Language-Team: Romanian\n"
|
||||||
"Language: ro_RO\n"
|
"Language: ro_RO\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Deschide editorul de text"
|
msgstr "Deschide editorul de text"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titlu"
|
msgstr "Titlu"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Scrie articolul tău aici. Markdown este acceptat."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "În apropiere de {} caractere rămase"
|
msgstr "În apropiere de {} caractere rămase"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Etichete"
|
msgstr "Etichete"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licenţă"
|
msgstr "Licenţă"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Coperta"
|
msgstr "Coperta"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Aceasta este o ciornă"
|
msgstr "Aceasta este o ciornă"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Publică"
|
msgstr "Publică"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Russian\n"
|
"Language-Team: Russian\n"
|
||||||
"Language: ru_RU\n"
|
"Language: ru_RU\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr "Хотите ли вы загрузить локальное автосохранение, сделанное в {}?"
|
msgstr "Хотите ли вы загрузить локальное автосохранение, сделанное в {}?"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Открыть в визуальном редакторе"
|
msgstr "Открыть в визуальном редакторе"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Заголовок"
|
msgstr "Заголовок"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Подзаголовок или резюме"
|
msgstr "Подзаголовок или резюме"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Пишите свою статью здесь. Markdown поддерживается."
|
msgstr "Пишите свою статью здесь. Markdown поддерживается."
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr "Осталось около {} символов"
|
msgstr "Осталось около {} символов"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Теги"
|
msgstr "Теги"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Лицензия"
|
msgstr "Лицензия"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Обложка"
|
msgstr "Обложка"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Это черновик"
|
msgstr "Это черновик"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Опубликовать"
|
msgstr "Опубликовать"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Santali\n"
|
"Language-Team: Santali\n"
|
||||||
"Language: sat_IN\n"
|
"Language: sat_IN\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr "ᱟᱢ ᱪᱮᱫ ᱢᱟᱲᱟᱝ {} ᱨᱮ ᱥᱟᱯᱲᱟᱣ ᱟᱠᱟᱱ ᱞᱚᱠᱟᱞ ᱚᱴᱚᱥᱮᱣ ᱞᱟᱫᱮ ᱥᱟᱱᱟᱢ ᱠᱟᱱᱟ ᱥᱮ?"
|
msgstr "ᱟᱢ ᱪᱮᱫ ᱢᱟᱲᱟᱝ {} ᱨᱮ ᱥᱟᱯᱲᱟᱣ ᱟᱠᱟᱱ ᱞᱚᱠᱟᱞ ᱚᱴᱚᱥᱮᱣ ᱞᱟᱫᱮ ᱥᱟᱱᱟᱢ ᱠᱟᱱᱟ ᱥᱮ?"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "ᱨᱤᱪ ᱚᱞ ᱥᱟᱯᱟᱣᱤᱡ ᱠᱷᱩᱞᱟᱹᱭ ᱢᱮ"
|
msgstr "ᱨᱤᱪ ᱚᱞ ᱥᱟᱯᱟᱣᱤᱡ ᱠᱷᱩᱞᱟᱹᱭ ᱢᱮ"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "ᱴᱭᱴᱚᱞ"
|
msgstr "ᱴᱭᱴᱚᱞ"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "ᱥᱟᱹᱵᱴᱟᱭᱴᱟᱹᱞ, ᱟᱨ ᱵᱟᱝ ᱥᱟᱹᱢᱢᱟᱨᱭ"
|
msgstr "ᱥᱟᱹᱵᱴᱟᱭᱴᱟᱹᱞ, ᱟᱨ ᱵᱟᱝ ᱥᱟᱹᱢᱢᱟᱨᱭ"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "ᱟᱢᱟᱜ ᱚᱱᱚᱞ ᱱᱚᱰᱮ ᱚᱞ ᱛᱟᱢ ᱾ ᱪᱤᱱᱦᱟᱹ ᱥᱟᱯᱚᱴ ᱜᱮᱭᱟ ᱾"
|
msgstr "ᱟᱢᱟᱜ ᱚᱱᱚᱞ ᱱᱚᱰᱮ ᱚᱞ ᱛᱟᱢ ᱾ ᱪᱤᱱᱦᱟᱹ ᱥᱟᱯᱚᱴ ᱜᱮᱭᱟ ᱾"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr "ᱡᱷᱚᱛᱚ ᱨᱮ {} ᱡᱤᱱᱤᱥ ᱵᱟᱧᱪᱟᱣᱠᱟᱱᱟ"
|
msgstr "ᱡᱷᱚᱛᱚ ᱨᱮ {} ᱡᱤᱱᱤᱥ ᱵᱟᱧᱪᱟᱣᱠᱟᱱᱟ"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "ᱴᱮᱜᱽᱥ"
|
msgstr "ᱴᱮᱜᱽᱥ"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "ᱞᱚᱭᱥᱮᱱᱥ"
|
msgstr "ᱞᱚᱭᱥᱮᱱᱥ"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "ᱢᱚᱭᱞᱟᱹᱴ"
|
msgstr "ᱢᱚᱭᱞᱟᱹᱴ"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "ᱱᱚᱶᱟ ᱫᱚ ᱰᱨᱟᱯᱷᱼᱴ ᱠᱟᱱᱟ"
|
msgstr "ᱱᱚᱶᱟ ᱫᱚ ᱰᱨᱟᱯᱷᱼᱴ ᱠᱟᱱᱟ"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "ᱯᱟᱨᱥᱟᱞ"
|
msgstr "ᱯᱟᱨᱥᱟᱞ"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Sinhala\n"
|
"Language-Team: Sinhala\n"
|
||||||
"Language: si_LK\n"
|
"Language: si_LK\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "මාතෘකාව"
|
msgstr "මාතෘකාව"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "බලපත්රය"
|
msgstr "බලපත්රය"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Slovak\n"
|
"Language-Team: Slovak\n"
|
||||||
"Language: sk_SK\n"
|
"Language: sk_SK\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr "Chceš načítať automaticky uloženú zálohu, s poslednou úpravou {}?"
|
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"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Otvor editor formátovaného textu"
|
msgstr "Otvor editor formátovaného textu"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Nadpis"
|
msgstr "Nadpis"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Zhrnutie, alebo podnadpis"
|
msgstr "Zhrnutie, alebo podnadpis"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Tu napíš svoj článok. Markdown je podporovaný."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "Zostáva asi {} znakov"
|
msgstr "Zostáva asi {} znakov"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Štítky"
|
msgstr "Štítky"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licencia"
|
msgstr "Licencia"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Obálka"
|
msgstr "Obálka"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Toto je koncept"
|
msgstr "Toto je koncept"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Zverejniť"
|
msgstr "Zverejniť"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Slovenian\n"
|
"Language-Team: Slovenian\n"
|
||||||
"Language: sl_SI\n"
|
"Language: sl_SI\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Naslov"
|
msgstr "Naslov"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Oznake"
|
msgstr "Oznake"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licenca"
|
msgstr "Licenca"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "To je osnutek"
|
msgstr "To je osnutek"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Objavi"
|
msgstr "Objavi"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Serbian (Latin)\n"
|
"Language-Team: Serbian (Latin)\n"
|
||||||
"Language: sr_CS\n"
|
"Language: sr_CS\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Otvori uređivač sa stilizacijom"
|
msgstr "Otvori uređivač sa stilizacijom"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Naslov"
|
msgstr "Naslov"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Podnaslov, ili sažetak"
|
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."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Napišite vaš članak ovde. Na raspolaganju vam je Markdown."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "Preostalo oko {} znakova"
|
msgstr "Preostalo oko {} znakova"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Markeri"
|
msgstr "Markeri"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licenca"
|
msgstr "Licenca"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Naslovna strana"
|
msgstr "Naslovna strana"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Ovo je nacrt"
|
msgstr "Ovo je nacrt"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Objavi"
|
msgstr "Objavi"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Swedish\n"
|
"Language-Team: Swedish\n"
|
||||||
"Language: sv_SE\n"
|
"Language: sv_SE\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Skriv din artikel här. Markdown stöds."
|
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"
|
msgid "Around {} characters left"
|
||||||
msgstr "Ungefär {} karaktärer kvar"
|
msgstr "Ungefär {} karaktärer kvar"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Taggar"
|
msgstr "Taggar"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Licens"
|
msgstr "Licens"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Omslag"
|
msgstr "Omslag"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Publicera"
|
msgstr "Publicera"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Turkish\n"
|
"Language-Team: Turkish\n"
|
||||||
"Language: tr_TR\n"
|
"Language: tr_TR\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Zengin metin editörünü (RTE) aç"
|
msgstr "Zengin metin editörünü (RTE) aç"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Başlık"
|
msgstr "Başlık"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "Alt başlık, veya açıklama"
|
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."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "Makaleni buraya yaz. Markdown kullanabilirsin."
|
msgstr "Makaleni buraya yaz. Markdown kullanabilirsin."
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr "Yaklaşık {} karakter kaldı"
|
msgstr "Yaklaşık {} karakter kaldı"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Etiketler"
|
msgstr "Etiketler"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "Lisans"
|
msgstr "Lisans"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Kapak"
|
msgstr "Kapak"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "Bu bir taslaktır"
|
msgstr "Bu bir taslaktır"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "Yayınla"
|
msgstr "Yayınla"
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Ukrainian\n"
|
"Language-Team: Ukrainian\n"
|
||||||
"Language: uk_UA\n"
|
"Language: uk_UA\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Urdu (Pakistan)\n"
|
"Language-Team: Urdu (Pakistan)\n"
|
||||||
"Language: ur_PK\n"
|
"Language: ur_PK\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Vietnamese\n"
|
"Language-Team: Vietnamese\n"
|
||||||
"Language: vi_VN\n"
|
"Language: vi_VN\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "Văn bản của tôi"
|
msgstr "Văn bản của tôi"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Tiêu Châu"
|
msgstr "Tiêu Châu"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+12
-12
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Traditional\n"
|
"Language-Team: Chinese Traditional\n"
|
||||||
"Language: zh_TW\n"
|
"Language: zh_TW\n"
|
||||||
@@ -17,47 +17,47 @@ msgstr ""
|
|||||||
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
"X-Crowdin-File: /master/po/plume-front/plume-front.pot\n"
|
||||||
"X-Crowdin-File-ID: 12\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 {}?"
|
msgid "Do you want to load the local autosave last edited at {}?"
|
||||||
msgstr "你想要載入上次在 {} 编辑的本地自動保存嗎?"
|
msgstr "你想要載入上次在 {} 编辑的本地自動保存嗎?"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:281
|
# plume-front/src/editor.rs:326
|
||||||
msgid "Open the rich text editor"
|
msgid "Open the rich text editor"
|
||||||
msgstr "開啟 RTF 編輯器"
|
msgstr "開啟 RTF 編輯器"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:314
|
# plume-front/src/editor.rs:385
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "標題"
|
msgstr "標題"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:318
|
# plume-front/src/editor.rs:389
|
||||||
msgid "Subtitle, or summary"
|
msgid "Subtitle, or summary"
|
||||||
msgstr "副標題,或摘要"
|
msgstr "副標題,或摘要"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:325
|
# plume-front/src/editor.rs:396
|
||||||
msgid "Write your article here. Markdown is supported."
|
msgid "Write your article here. Markdown is supported."
|
||||||
msgstr "在這裡寫下您的文章。支援 Markdown 語法。"
|
msgstr "在這裡寫下您的文章。支援 Markdown 語法。"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:336
|
# plume-front/src/editor.rs:407
|
||||||
msgid "Around {} characters left"
|
msgid "Around {} characters left"
|
||||||
msgstr "大約還可輸入 {} 字符"
|
msgstr "大約還可輸入 {} 字符"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:413
|
# plume-front/src/editor.rs:517
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "標籤"
|
msgstr "標籤"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:414
|
# plume-front/src/editor.rs:518
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "授權條款"
|
msgstr "授權條款"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:417
|
# plume-front/src/editor.rs:524
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "封面"
|
msgstr "封面"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:437
|
# plume-front/src/editor.rs:564
|
||||||
msgid "This is a draft"
|
msgid "This is a draft"
|
||||||
msgstr "這是草稿"
|
msgstr "這是草稿"
|
||||||
|
|
||||||
# plume-front/src/editor.rs:444
|
# plume-front/src/editor.rs:575
|
||||||
msgid "Publish"
|
msgid "Publish"
|
||||||
msgstr "發布"
|
msgstr "發布"
|
||||||
|
|
||||||
|
|||||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Afrikaans\n"
|
"Language-Team: Afrikaans\n"
|
||||||
"Language: af_ZA\n"
|
"Language: af_ZA\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
msgid "{0} commented on your article."
|
msgid "Someone"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
|
||||||
msgid "{0} is subscribed to you."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:107
|
||||||
msgid "{0} liked your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:108
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# 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."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -245,44 +265,69 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Arabic\n"
|
"Language-Team: Arabic\n"
|
||||||
"Language: ar_SA\n"
|
"Language: ar_SA\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "علّق {0} على مقالك."
|
msgstr "علّق {0} على مقالك."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} مشترك لك."
|
msgstr "{0} مشترك لك."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} أعجبهم مقالك."
|
msgstr "{0} أعجبهم مقالك."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "أشار إليك {0}."
|
msgstr "أشار إليك {0}."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} دعمو مقالك."
|
msgstr "{0} دعمو مقالك."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "خيطك"
|
msgstr "خيطك"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "الخيط المحلي"
|
msgstr "الخيط المحلي"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "الخيط الموحد"
|
msgstr "الخيط الموحد"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "الصورة الرمزية لـ {0}"
|
msgstr "الصورة الرمزية لـ {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "الصفحة السابقة"
|
msgstr "الصفحة السابقة"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "الصفحة التالية"
|
msgstr "الصفحة التالية"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "اختياري"
|
msgstr "اختياري"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "لإنشاء مدونة جديدة، تحتاج إلى تسجيل الدخول"
|
msgstr "لإنشاء مدونة جديدة، تحتاج إلى تسجيل الدخول"
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "توجد مدونة تحمل نفس العنوان."
|
msgstr "توجد مدونة تحمل نفس العنوان."
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "تم إنشاء مدونتك بنجاح!"
|
msgstr "تم إنشاء مدونتك بنجاح!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "تم حذف مدونتك."
|
msgstr "تم حذف مدونتك."
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "لا يسمح لك بحذف هذه المدونة."
|
msgstr "لا يسمح لك بحذف هذه المدونة."
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "لا يسمح لك بتعديل هذه المدونة."
|
msgstr "لا يسمح لك بتعديل هذه المدونة."
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "لا يمكنك استخدام هذه الوسائط كأيقونة للمدونة."
|
msgstr "لا يمكنك استخدام هذه الوسائط كأيقونة للمدونة."
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "لا يمكنك استخدام هذه الوسائط كشعار للمدونة."
|
msgstr "لا يمكنك استخدام هذه الوسائط كشعار للمدونة."
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "تم تحديث معلومات مُدوّنتك."
|
msgstr "تم تحديث معلومات مُدوّنتك."
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr "تم نشر تعليقك."
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "تم حذف تعليقك."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "تم حفظ إعدادات المثيل."
|
msgstr "تم حفظ إعدادات المثيل."
|
||||||
@@ -149,19 +169,19 @@ msgstr "تم."
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "يجب عليك تسجيل الدخول أولا للإعجاب بهذا المقال"
|
msgstr "يجب عليك تسجيل الدخول أولا للإعجاب بهذا المقال"
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr "لقد تم حذف وسائطك."
|
msgstr "لقد تم حذف وسائطك."
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "لا يسمح لك بحذف هذه الوسائط."
|
msgstr "لا يسمح لك بحذف هذه الوسائط."
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "تم تحديث صورتك الشخصية."
|
msgstr "تم تحديث صورتك الشخصية."
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "لا يسمح لك باستعمال هذه الوسائط."
|
msgstr "لا يسمح لك باستعمال هذه الوسائط."
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr "لا يسمح لك باستعمال هذه الوسائط."
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "يجب عليك تسجيل الدخول أولا لعرض الإشعارات"
|
msgstr "يجب عليك تسجيل الدخول أولا لعرض الإشعارات"
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr "هذا المقال ليس منشورا بعد."
|
msgstr "هذا المقال ليس منشورا بعد."
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "يجب عليك تسجيل الدخول أولا لكتابة مقال جديد"
|
msgstr "يجب عليك تسجيل الدخول أولا لكتابة مقال جديد"
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "لست مِن محرري هذه المدونة."
|
msgstr "لست مِن محرري هذه المدونة."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "منشور جديد"
|
msgstr "منشور جديد"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "تعديل {0}"
|
msgstr "تعديل {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "لا يسمح لك بالنشر على هذه المدونة."
|
msgstr "لا يسمح لك بالنشر على هذه المدونة."
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr "تم تحديث مقالك."
|
msgstr "تم تحديث مقالك."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "تم حفظ مقالك."
|
msgstr "تم حفظ مقالك."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "مقال جديد"
|
msgstr "مقال جديد"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "لا يسمح لك بحذف هذا المقال."
|
msgstr "لا يسمح لك بحذف هذا المقال."
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr "تم حذف مقالك."
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr "لم يتم العثور على المقال الذي تحاول حذفه. ربما سبق حذفه؟"
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr "تعذر العثور عن معلومات حسابك. المرجو التحقق من صحة إسم المستخدم."
|
msgstr "تعذر العثور عن معلومات حسابك. المرجو التحقق من صحة إسم المستخدم."
|
||||||
|
|
||||||
@@ -245,45 +265,70 @@ msgstr "ها هو رابط إعادة تعيين كلمتك السرية: {0}"
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "تمت إعادة تعيين كلمتك السرية بنجاح."
|
msgstr "تمت إعادة تعيين كلمتك السرية بنجاح."
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "يجب عليك تسجيل الدخول أولاللنفاذ إلى لوح المراقبة"
|
msgstr "يجب عليك تسجيل الدخول أولاللنفاذ إلى لوح المراقبة"
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "أنت لم تعد تتابع {}."
|
msgstr "أنت لم تعد تتابع {}."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "أنت الآن تتابع {}."
|
msgstr "أنت الآن تتابع {}."
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "للإشتراك بأحد ما، يجب تسجيل الدخول أولا"
|
msgstr "للإشتراك بأحد ما، يجب تسجيل الدخول أولا"
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "لتعديل الحساب، يجب تسجيل الدخول أولا"
|
msgstr "لتعديل الحساب، يجب تسجيل الدخول أولا"
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr "تم تحديث ملفك الشخصي."
|
msgstr "تم تحديث ملفك الشخصي."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "تم حذف حسابك."
|
msgstr "تم حذف حسابك."
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "لا يمكنك حذف حساب شخص آخر."
|
msgstr "لا يمكنك حذف حساب شخص آخر."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "انشئ حسابك"
|
||||||
msgstr "التسجيلات مُغلقة على مثيل الخادم هذ."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "انشئ حسابا"
|
||||||
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"
|
msgid "Media upload"
|
||||||
msgstr "إرسال الوسائط"
|
msgstr "إرسال الوسائط"
|
||||||
@@ -423,27 +468,6 @@ msgstr "المشترِكون"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "الاشتراكات"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "{0} اشتراكات"
|
msgstr "{0} اشتراكات"
|
||||||
|
|
||||||
@@ -849,9 +873,6 @@ msgstr "تأكيد"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "تحديث الكلمة السرية"
|
msgstr "تحديث الكلمة السرية"
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr "تحقق من علبة الوارد الخاصة بك!"
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr "لقد أرسلنا رسالة للعنوان الذي توصلنا به من طرفك تضمنرابط لإعادت تحديد كلمة المرور."
|
msgstr "لقد أرسلنا رسالة للعنوان الذي توصلنا به من طرفك تضمنرابط لإعادت تحديد كلمة المرور."
|
||||||
|
|
||||||
|
|||||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bulgarian\n"
|
"Language-Team: Bulgarian\n"
|
||||||
"Language: bg_BG\n"
|
"Language: bg_BG\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} коментира(ха) твоя статия."
|
msgstr "{0} коментира(ха) твоя статия."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} абониран(и) за вас."
|
msgstr "{0} абониран(и) за вас."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} хареса(ха) вашата статия."
|
msgstr "{0} хареса(ха) вашата статия."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} ви спомена(ха)."
|
msgstr "{0} ви спомена(ха)."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} подсили(ха) вашата статия."
|
msgstr "{0} подсили(ха) вашата статия."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "Вашата емисия"
|
msgstr "Вашата емисия"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Местна емисия"
|
msgstr "Местна емисия"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Федерална емисия"
|
msgstr "Федерална емисия"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "Аватар {0}"
|
msgstr "Аватар {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Предишна страница"
|
msgstr "Предишна страница"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Следваща страница"
|
msgstr "Следваща страница"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "По избор"
|
msgstr "По избор"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "За да създадете нов блог, трябва да влезете"
|
msgstr "За да създадете нов блог, трябва да влезете"
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Вече съществува блог със същото име."
|
msgstr "Вече съществува блог със същото име."
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "Блогът Ви бе успешно създаден!"
|
msgstr "Блогът Ви бе успешно създаден!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Блогът ви бе изтрит."
|
msgstr "Блогът ви бе изтрит."
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Нямате права за да изтриете този блог."
|
msgstr "Нямате права за да изтриете този блог."
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Нямате права за да редактирате този блог."
|
msgstr "Нямате права за да редактирате този блог."
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "Не можете да използвате тази медия като икона на блога."
|
msgstr "Не можете да използвате тази медия като икона на блога."
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "Не можете да използвате тази медия като банер на блога."
|
msgstr "Не можете да използвате тази медия като банер на блога."
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Информацията в блога ви бе актуализирана."
|
msgstr "Информацията в блога ви бе актуализирана."
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr "Коментарът е публикуван."
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Коментарът бе изтрит."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "Настройките на инстанциите са запазени."
|
msgstr "Настройките на инстанциите са запазени."
|
||||||
@@ -149,19 +169,19 @@ msgstr "Свършен."
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "За да харесате публикация, трябва да сте влезли в профила си"
|
msgstr "За да харесате публикация, трябва да сте влезли в профила си"
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Медията ви е изтрита."
|
msgstr "Медията ви е изтрита."
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "Вие нямате права да изтриете тази медия."
|
msgstr "Вие нямате права да изтриете тази медия."
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Вашият аватар е актуализиран."
|
msgstr "Вашият аватар е актуализиран."
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "Нямате права да използвате тази медия."
|
msgstr "Нямате права да използвате тази медия."
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr "Нямате права да използвате тази медия."
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "За да видите известията си, трябва да сте влезли в профила си"
|
msgstr "За да видите известията си, трябва да сте влезли в профила си"
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Тази публикация все още не е публикувана."
|
msgstr "Тази публикация все още не е публикувана."
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "За да напишете нова публикация, трябва да влезете"
|
msgstr "За да напишете нова публикация, трябва да влезете"
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Вие не сте автор на този блог."
|
msgstr "Вие не сте автор на този блог."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Нова публикация"
|
msgstr "Нова публикация"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Редактирано от {0}"
|
msgstr "Редактирано от {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "Нямате права за публикуване в този блог."
|
msgstr "Нямате права за публикуване в този блог."
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr "Статията ви е актуализирана."
|
msgstr "Статията ви е актуализирана."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Вашата статия е запазена."
|
msgstr "Вашата статия е запазена."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Нова статия"
|
msgstr "Нова статия"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Нямате права за изтриване на тази статия."
|
msgstr "Нямате права за изтриване на тази статия."
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Статията е изтрита."
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr "Изглежда, че статията, която се опитвате да изтриете не съществува. Може би вече я няма?"
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr "Не можа да се получи достатъчно информация за профила ви. Моля, уверете се, че потребителското ви име е правилно."
|
msgstr "Не можа да се получи достатъчно информация за профила ви. Моля, уверете се, че потребителското ви име е правилно."
|
||||||
|
|
||||||
@@ -245,45 +265,70 @@ msgstr "Ето и връзка, на която да зададете нова
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "Вашата парола бе успешно възстановена."
|
msgstr "Вашата парола бе успешно възстановена."
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "За да получите достъп до таблото си за управление, трябва да сте влезли в профила си"
|
msgstr "За да получите достъп до таблото си за управление, трябва да сте влезли в профила си"
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Вече не следвате {}."
|
msgstr "Вече не следвате {}."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Вече следите {}."
|
msgstr "Вече следите {}."
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "За да се абонирате за някого, трябва да сте влезли в системата"
|
msgstr "За да се абонирате за някого, трябва да сте влезли в системата"
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "За да редактирате профила си, трябва да влезете"
|
msgstr "За да редактирате профила си, трябва да влезете"
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Вашият профил е актуализиран."
|
msgstr "Вашият профил е актуализиран."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Вашият акаунт е изтрит."
|
msgstr "Вашият акаунт е изтрит."
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "Не можете да изтриете профила на някой друг."
|
msgstr "Не можете да изтриете профила на някой друг."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Създай профил"
|
||||||
msgstr "Регистрациите са затворени в тази инстанция."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Създай профил"
|
||||||
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"
|
msgid "Media upload"
|
||||||
msgstr "Качи медия"
|
msgstr "Качи медия"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Абонати"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Абонаменти"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "{0} абонаменти"
|
msgstr "{0} абонаменти"
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr "Потвърждение"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Обнови паролата"
|
msgstr "Обнови паролата"
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr "Проверете си пощата!"
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr "Изпратихме емайл с връзка за възстановяване на паролата ви, на адреса който ни дадохте."
|
msgstr "Изпратихме емайл с връзка за възстановяване на паролата ви, на адреса който ни дадохте."
|
||||||
|
|
||||||
|
|||||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Catalan\n"
|
"Language-Team: Catalan\n"
|
||||||
"Language: ca_ES\n"
|
"Language: ca_ES\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} han comentat el teu article."
|
msgstr "{0} han comentat el teu article."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} s'ha subscrit."
|
msgstr "{0} s'ha subscrit."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "A {0} li ha agradat el vostre article."
|
msgstr "A {0} li ha agradat el vostre article."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} us ha esmentat."
|
msgstr "{0} us ha esmentat."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} ha impulsat el teu article."
|
msgstr "{0} ha impulsat el teu article."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "El teu feed"
|
msgstr "El teu feed"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Feed local"
|
msgstr "Feed local"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Feed federat"
|
msgstr "Feed federat"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "avatar de {0}"
|
msgstr "avatar de {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Pàgina anterior"
|
msgstr "Pàgina anterior"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Pàgina següent"
|
msgstr "Pàgina següent"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Opcional"
|
msgstr "Opcional"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Per a crear un blog nou, heu d’iniciar una sessió"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Ja existeix un blog amb el mateix nom."
|
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!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "S’ha creat el vostre blog correctament."
|
msgstr "S’ha creat el vostre blog correctament."
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "S’ha suprimit el vostre blog."
|
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."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "No tens permís per a esborrar aquest 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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "No tens permís per a editar aquest 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."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "No pots usar aquest Mèdia com a icona del blog."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "No pots usar aquest Mèdia com a capçalera del blog."
|
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."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "S’ha actualitzat la informació del vostre blog."
|
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."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "S’ha suprimit el vostre comentari."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "S'han desat les configuracions de l'instància."
|
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"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Per a agradar-te una publicació necessites iniciar sessió"
|
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."
|
msgid "Your media have been deleted."
|
||||||
msgstr "S'ha esborrat el teu Mèdia."
|
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."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "No tens permís per a esborrar aquest Mèdia."
|
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."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "S'ha actualitzat el teu avatar."
|
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."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "No tens permís per a usar aquest Mèdia."
|
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"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Per a veure les teves notificacions necessites iniciar sessió"
|
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."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Aquesta entrada encara no està publicada."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Per a escriure una nova entrada cal iniciar sessió"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "No ets un autor d'aquest blog."
|
msgstr "No ets un autor d'aquest blog."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Apunt nou"
|
msgstr "Apunt nou"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Edita {0}"
|
msgstr "Edita {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "No tens permís per a publicar en aquest 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."
|
msgid "Your article has been updated."
|
||||||
msgstr "S’ha actualitzat el vostre article."
|
msgstr "S’ha actualitzat el vostre article."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "S’ha desat el vostre article."
|
msgstr "S’ha desat el vostre article."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Article nou"
|
msgstr "Article nou"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "No tens permís per a esborrar aquest 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."
|
msgid "Your article has been deleted."
|
||||||
msgstr "S’ha suprimit el vostre article."
|
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?"
|
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?"
|
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."
|
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."
|
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."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "S’ha reinicialitzat la vostra contrasenya correctament."
|
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"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "Per a accedir al teu panell cal iniciar sessió"
|
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 {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Ja no segueixes a {}."
|
msgstr "Ja no segueixes a {}."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Ara estàs seguint a {}."
|
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"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "Per a subscriure't a algú cal iniciar sessió"
|
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"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "Per a editar el teu perfil cal iniciar sessió"
|
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."
|
msgid "Your profile has been updated."
|
||||||
msgstr "El teu perfil s'ha actualitzat."
|
msgstr "El teu perfil s'ha actualitzat."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "El teu compte s'ha esborrat."
|
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."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "No pots esborrar el compte d'algú altre."
|
msgstr "No pots esborrar el compte d'algú altre."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Crea el teu compte"
|
||||||
msgstr "El registre d'aquesta instància és tancat."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Crear un compte"
|
||||||
msgstr "S'ha creat el teu compte. Ara cal iniciar sessió per a començar a usar-lo."
|
|
||||||
|
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"
|
msgid "Media upload"
|
||||||
msgstr "Carregar Mèdia"
|
msgstr "Carregar Mèdia"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Subscriptors"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Subscripcions"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "Subscripcions de {0}"
|
msgstr "Subscripcions de {0}"
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr "Confirmació"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Actualitza la contrasenya"
|
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."
|
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."
|
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"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Czech\n"
|
"Language-Team: Czech\n"
|
||||||
"Language: cs_CZ\n"
|
"Language: cs_CZ\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} komentoval/a váš článek."
|
msgstr "{0} komentoval/a váš článek."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} vás odebírá."
|
msgstr "{0} vás odebírá."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} si oblíbil/a váš článek."
|
msgstr "{0} si oblíbil/a váš článek."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} vás zmínil/a."
|
msgstr "{0} vás zmínil/a."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} povýšil/a váš článek."
|
msgstr "{0} povýšil/a váš článek."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "Vaše zdroje"
|
msgstr "Vaše zdroje"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Místní zdroje"
|
msgstr "Místní zdroje"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Federované zdroje"
|
msgstr "Federované zdroje"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "Avatar uživatele {0}"
|
msgstr "Avatar uživatele {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Předchozí stránka"
|
msgstr "Předchozí stránka"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Následující strana"
|
msgstr "Následující strana"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Volitelné"
|
msgstr "Volitelné"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
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"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Blog s rovnakým názvem již existuje."
|
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!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "Váš blog byl úspěšně vytvořen!"
|
msgstr "Váš blog byl úspěšně vytvořen!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Váš blog byl smazán."
|
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."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Nemáte oprávnění zmazat tento 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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Nemáte oprávnění upravovat tento 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."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "Toto médium nelze použít jako ikonu blogu."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "Toto médium nelze použít jako banner blogu."
|
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."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Údaje o vašem blogu byly aktualizovány."
|
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."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Váš komentář byl odstraněn."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "Nastavení instance bylo uloženo."
|
msgstr "Nastavení instance bylo uloženo."
|
||||||
@@ -149,19 +169,19 @@ msgstr "Hotovo."
|
|||||||
msgid "To like a post, you need to be logged in"
|
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"
|
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."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Vaše média byla smazána."
|
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."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "Nemáte oprávnění k smazání tohoto média."
|
msgstr "Nemáte oprávnění k smazání tohoto média."
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Váš avatar byl aktualizován."
|
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."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "Nemáte oprávnění k použití tohoto média."
|
msgstr "Nemáte oprávnění 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"
|
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"
|
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."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Tento příspěvek ještě není zveřejněn."
|
msgstr "Tento příspěvek ještě není 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"
|
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"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Nejste autorem tohto blogu."
|
msgstr "Nejste autorem tohto blogu."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Nový příspěvek"
|
msgstr "Nový příspěvek"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Upravit {0}"
|
msgstr "Upravit {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "Nemáte oprávnění zveřejňovat na tomto blogu."
|
msgstr "Nemáte oprávnění zveřejňovat na tomto blogu."
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr "Váš článek byl upraven."
|
msgstr "Váš článek byl upraven."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Váš článek byl uložen."
|
msgstr "Váš článek byl uložen."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Nový článek"
|
msgstr "Nový článek"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Nemáte oprávnění zmazat tento článek."
|
msgstr "Nemáte oprávnění zmazat tento článek."
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Váš článek byl smazán."
|
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?"
|
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č?"
|
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."
|
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á."
|
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."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "Vaše heslo bylo úspěšně obnoveno."
|
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"
|
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"
|
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 {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Již nenásledujete {}."
|
msgstr "Již nenásledujete {}."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Teď již nenásledujete {}."
|
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"
|
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"
|
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"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "Pro úpravu vášho profilu musíte být přihlášeni"
|
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."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Váš profil byl upraven."
|
msgstr "Váš profil byl upraven."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Váš účet byl odstraněn."
|
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."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "Nemůžete smazat účet někoho jiného."
|
msgstr "Nemůžete smazat účet někoho jiného."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Vytvořit váš účet"
|
||||||
msgstr "Registrace jsou na téhle instanci uzavřeny."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Vytvořit účet"
|
||||||
msgstr "Váš účet byl vytvořen. Nyní se stačí jenom přihlásit, než ho budete moci používat."
|
|
||||||
|
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"
|
msgid "Media upload"
|
||||||
msgstr "Nahrávaní médií"
|
msgstr "Nahrávaní médií"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Odběratelé"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Odběry"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "Odběry uživatele {0}"
|
msgstr "Odběry uživatele {0}"
|
||||||
|
|
||||||
@@ -845,9 +869,6 @@ msgstr "Potvrzení"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Aktualizovat heslo"
|
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."
|
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."
|
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-Language: cy\n"
|
||||||
"X-Crowdin-File: /master/po/plume/plume.pot\n"
|
"X-Crowdin-File: /master/po/plume/plume.pot\n"
|
||||||
|
|
||||||
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:68
|
# src/template_utils.rs:68
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -106,6 +110,24 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:120
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -277,14 +299,44 @@ msgstr ""
|
|||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:526
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Create an account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:217
|
||||||
|
msgid "Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Email confirmation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:549
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your account has been created. Now you just need to log in, before you can "
|
"Apologies, but registrations are closed on this particular instance. You "
|
||||||
"use it."
|
"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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -426,33 +478,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -890,9 +915,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We sent a mail to the address you gave us, with a link to reset your "
|
"We sent a mail to the address you gave us, with a link to reset your "
|
||||||
"password."
|
"password."
|
||||||
|
|||||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Danish\n"
|
"Language-Team: Danish\n"
|
||||||
"Language: da_DK\n"
|
"Language: da_DK\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
msgid "{0} commented on your article."
|
msgid "Someone"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
|
||||||
msgid "{0} is subscribed to you."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:107
|
||||||
msgid "{0} liked your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:108
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# 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."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -245,44 +265,69 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"Language: de_DE\n"
|
"Language: de_DE\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} hat deinen Artikel kommentiert."
|
msgstr "{0} hat deinen Artikel kommentiert."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} hat dich abonniert."
|
msgstr "{0} hat dich abonniert."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} gefällt Ihr Artikel."
|
msgstr "{0} gefällt Ihr Artikel."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} hat dich erwähnt."
|
msgstr "{0} hat dich erwähnt."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} hat deinen Artikel geboosted."
|
msgstr "{0} hat deinen Artikel geboosted."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "Dein Feed"
|
msgstr "Dein Feed"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Lokaler Feed"
|
msgstr "Lokaler Feed"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Föderierter Feed"
|
msgstr "Föderierter Feed"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "{0}'s Profilbild"
|
msgstr "{0}'s Profilbild"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Vorherige Seite"
|
msgstr "Vorherige Seite"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Nächste Seite"
|
msgstr "Nächste Seite"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "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"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Du musst angemeldet sein, um einen Blog zu erstellen"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Es existiert bereits ein Blog mit diesem Namen."
|
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!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "Dein Blog wurde erfolgreich erstellt!"
|
msgstr "Dein Blog wurde erfolgreich erstellt!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Dein Blog wurde gelöscht."
|
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."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Du bist nicht berechtigt, diesen Blog zu löschen."
|
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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Du bist nicht berechtigt, diesen Blog zu bearbeiten."
|
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."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "Du kannst dieses Medium nicht als Blog-Symbol verwenden."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "Du kannst diese Datei nicht als Blog-Banner verwenden."
|
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."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Informationen des Blog wurden aktualisiert."
|
msgstr "Informationen des Blog wurden aktualisiert."
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr "Dein Kommentar wurde veröffentlicht."
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Dein Kommentar wurde gelöscht."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "Die Instanzeinstellungen wurden gespeichert."
|
msgstr "Die Instanzeinstellungen wurden gespeichert."
|
||||||
@@ -149,19 +169,19 @@ msgstr "Fertig"
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Um einen Beitrag zu liken, musst du angemeldet sein"
|
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."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Deine Datei wurde gelöscht."
|
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."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "Dir fehlt die Berechtigung, diese Datei zu löschen."
|
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."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Dein Benutzerbild wurde aktualisiert."
|
msgstr "Dein Benutzerbild wurde aktualisiert."
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "Dir fehlt die Berechtigung, um diese Datei zu nutzen."
|
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"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Um deine Benachrichtigungen zu sehen, musst du angemeldet sein"
|
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."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Dieser Beitrag wurde noch nicht veröffentlicht."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Um einen neuen Beitrag zu schreiben, musst du angemeldet sein"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Du bist kein Autor dieses Blogs."
|
msgstr "Du bist kein Autor dieses Blogs."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Neuer Beitrag"
|
msgstr "Neuer Beitrag"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "{0} bearbeiten"
|
msgstr "{0} bearbeiten"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "Dir fehlt die Berechtigung, in diesem Blog zu veröffentlichen."
|
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."
|
msgid "Your article has been updated."
|
||||||
msgstr "Dein Artikel wurde aktualisiert."
|
msgstr "Dein Artikel wurde aktualisiert."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Dein Artikel wurde gespeichert."
|
msgstr "Dein Artikel wurde gespeichert."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Neuer Artikel"
|
msgstr "Neuer Artikel"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Dir fehlt die Berechtigung, diesen Artikel zu löschen."
|
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."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Dein Artikel wurde gelöscht."
|
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?"
|
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?"
|
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."
|
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."
|
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."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "Dein Passwort wurde erfolgreich zurückgesetzt."
|
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"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "Um auf dein Dashboard zuzugreifen, musst du angemeldet sein"
|
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 {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Du folgst {} nun nicht mehr."
|
msgstr "Du folgst {} nun nicht mehr."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Du folgst nun {}."
|
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"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "Um jemanden zu abonnieren, musst du angemeldet sein"
|
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"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "Um dein Profil zu bearbeiten, musst du angemeldet sein"
|
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."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Dein Profil wurde aktualisiert."
|
msgstr "Dein Profil wurde aktualisiert."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Dein Benutzerkonto wurde gelöscht."
|
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."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "Dir fehlt die Berechtigung, das Konto eines anderen zu löschen."
|
msgstr "Dir fehlt die Berechtigung, das Konto eines anderen zu löschen."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Eigenen Account erstellen"
|
||||||
msgstr "Anmeldungen sind auf dieser Instanz aktuell nicht möglich."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Konto erstellen"
|
||||||
msgstr "Dein Konto wurde erstellt. Jetzt musst du dich nur noch anmelden, um es nutzen zu können."
|
|
||||||
|
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"
|
msgid "Media upload"
|
||||||
msgstr "Hochladen von Mediendateien"
|
msgstr "Hochladen von Mediendateien"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Abonnenten"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Abonnement"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "{0}'s Abonnements"
|
msgstr "{0}'s Abonnements"
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr "Bestätigung"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Passwort aktualisieren"
|
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."
|
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."
|
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"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Greek\n"
|
"Language-Team: Greek\n"
|
||||||
"Language: el_GR\n"
|
"Language: el_GR\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
msgid "{0} commented on your article."
|
msgid "Someone"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
|
||||||
msgid "{0} is subscribed to you."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:107
|
||||||
msgid "{0} liked your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:108
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# 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."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -245,44 +265,69 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: English\n"
|
"Language-Team: English\n"
|
||||||
"Language: en_US\n"
|
"Language: en_US\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
msgid "{0} commented on your article."
|
msgid "Someone"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
|
||||||
msgid "{0} is subscribed to you."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:107
|
||||||
msgid "{0} liked your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:108
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# 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."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -245,44 +265,69 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+95
-74
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Esperanto\n"
|
"Language-Team: Esperanto\n"
|
||||||
"Language: eo_UY\n"
|
"Language: eo_UY\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} komentis pri vian afiŝon."
|
msgstr "{0} komentis pri vian afiŝon."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} abonis pri vian."
|
msgstr "{0} abonis pri vian."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} ŝatis vian artikolon."
|
msgstr "{0} ŝatis vian artikolon."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} menciis vin."
|
msgstr "{0} menciis vin."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "Profilbildo de {0}"
|
msgstr "Profilbildo de {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Por krei novan blogon, vi devas ensaluti"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Blogon kun la sama nomo jam ekzistas."
|
msgstr "Blogon kun la sama nomo jam ekzistas."
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "Sukcesas krei vian blogon!"
|
msgstr "Sukcesas krei vian blogon!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Via blogo estis forigita."
|
msgstr "Via blogo estis forigita."
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Vi ne rajtas forigi ĉi tiun blogon."
|
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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Vi ne estas permesita redakti ĉi tiun blogon."
|
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."
|
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."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Viaj blogaj informaĵoj estis ĝisdatigita."
|
msgstr "Viaj blogaj informaĵoj estis ĝisdatigita."
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Via komento estis forigita."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Via aŭdovidaĵo estis forigita."
|
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."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "Vi ne rajtas forigi ĉi tiun aŭdovidaĵon."
|
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."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Via profilbildo estis gîstatiga."
|
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."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Ĉi tiu skribaĵo ankoraŭ ne estas eldonita."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Skribi novan skribaĵo, vi bezonas ensaluti vin"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Vi ne estas la verkisto de ĉi tiu blogo."
|
msgstr "Vi ne estas la verkisto de ĉi tiu blogo."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Nova skribaĵo"
|
msgstr "Nova skribaĵo"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Ŝanĝo {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."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr "Via artikolo estis ĝisdatigita."
|
msgstr "Via artikolo estis ĝisdatigita."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Via artikolo estis konservita."
|
msgstr "Via artikolo estis konservita."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Nova artikolo"
|
msgstr "Nova artikolo"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Vi ne rajtas forigi ĉi tiun artikolon."
|
msgstr "Vi ne rajtas forigi ĉi tiun artikolon."
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Via artikolo estis forigita."
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -245,46 +265,71 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Via profilo estis ĝisdatigita."
|
msgstr "Via profilo estis ĝisdatigita."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Via konto estis forigita."
|
msgstr "Via konto estis forigita."
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "Vi ne povas forigi konton de aliulo."
|
msgstr "Vi ne povas forigi konton de aliulo."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Krei vian konton"
|
||||||
|
|
||||||
|
msgid "Create an account"
|
||||||
|
msgstr "Krei konton"
|
||||||
|
|
||||||
|
msgid "Email"
|
||||||
|
msgstr "Retpoŝtadreso"
|
||||||
|
|
||||||
|
msgid "Email confirmation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Apologies, but registrations are closed on this particular instance. You can, however, find a different one."
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
|
||||||
msgstr ""
|
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"
|
msgid "Media upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr "Konfirmo"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Ĝisdatigi pasvorton"
|
msgstr "Ĝisdatigi pasvorton"
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"Language: es_ES\n"
|
"Language: es_ES\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} ha comentado tu artículo."
|
msgstr "{0} ha comentado tu artículo."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} esta suscrito a tí."
|
msgstr "{0} esta suscrito a tí."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "A {0} le gustó tu artículo."
|
msgstr "A {0} le gustó tu artículo."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} te ha mencionado."
|
msgstr "{0} te ha mencionado."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} compartió su artículo."
|
msgstr "{0} compartió su artículo."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "Tu Feed"
|
msgstr "Tu Feed"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Feed local"
|
msgstr "Feed local"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Feed federada"
|
msgstr "Feed federada"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "Avatar de {0}"
|
msgstr "Avatar de {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Página anterior"
|
msgstr "Página anterior"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Página siguiente"
|
msgstr "Página siguiente"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Opcional"
|
msgstr "Opcional"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Para crear un nuevo blog, necesitas estar conectado"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Ya existe un blog con el mismo nombre."
|
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!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "¡Tu blog se ha creado satisfactoriamente!"
|
msgstr "¡Tu blog se ha creado satisfactoriamente!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Tu blog fue eliminado."
|
msgstr "Tu blog fue eliminado."
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "No está autorizado a eliminar este registro."
|
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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "No tiene permiso para editar este 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."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "No puede usar este medio como icono del blog."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "No puede usar este medio como bandera del blog."
|
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."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "La información de tu blog ha sido actualizada."
|
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."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Se ha eliminado el comentario."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "Se han guardado los ajustes de la instancia."
|
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"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Para darle un Me Gusta a un artículo, necesita estar conectado"
|
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."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Tus medios han sido eliminados."
|
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."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "No tienes permisos para eliminar este medio."
|
msgstr "No tienes permisos para eliminar este medio."
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Tu avatar ha sido actualizado."
|
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."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "No tienes permisos para usar este medio."
|
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"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Para ver tus notificaciones, necesitas estar conectado"
|
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."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Esta publicación aún no está publicada."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Para escribir un nuevo artículo, necesitas estar conectado"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "No eres un autor de este blog."
|
msgstr "No eres un autor de este blog."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Nueva publicación"
|
msgstr "Nueva publicación"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Editar {0}"
|
msgstr "Editar {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "No tienes permiso para publicar en este 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."
|
msgid "Your article has been updated."
|
||||||
msgstr "Se ha actualizado el artículo."
|
msgstr "Se ha actualizado el artículo."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Se ha guardado el artículo."
|
msgstr "Se ha guardado el artículo."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Nueva publicación"
|
msgstr "Nueva publicación"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "No tienes permiso para eliminar este artículo."
|
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."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Se ha eliminado el artículo."
|
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?"
|
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?"
|
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."
|
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."
|
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."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "Su contraseña se ha restablecido correctamente."
|
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"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "Para acceder a su panel de control, necesita estar conectado"
|
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 {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Ya no estás siguiendo a {}."
|
msgstr "Ya no estás siguiendo a {}."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Ahora estás siguiendo a {}."
|
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"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "Para suscribirse a alguien, necesita estar conectado"
|
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"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "Para editar su perfil, necesita estar conectado"
|
msgstr "Para editar su perfil, necesita estar conectado"
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Tu perfil ha sido actualizado."
|
msgstr "Tu perfil ha sido actualizado."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Tu cuenta ha sido eliminada."
|
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."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "No puedes eliminar la cuenta de otra persona."
|
msgstr "No puedes eliminar la cuenta de otra persona."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Crea tu cuenta"
|
||||||
msgstr "Los registros están cerrados en esta instancia."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Crear una cuenta"
|
||||||
msgstr "Tu cuenta ha sido creada. Ahora solo necesitas iniciar sesión, antes de poder usarla."
|
|
||||||
|
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"
|
msgid "Media upload"
|
||||||
msgstr "Subir medios"
|
msgstr "Subir medios"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Suscriptores"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Suscripciones"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "Suscripciones de {0}"
|
msgstr "Suscripciones de {0}"
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr "Confirmación"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Actualizar contraseña"
|
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."
|
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."
|
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"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Persian\n"
|
"Language-Team: Persian\n"
|
||||||
"Language: fa_IR\n"
|
"Language: fa_IR\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} روی مقالهٔ شما نظر داد."
|
msgstr "{0} روی مقالهٔ شما نظر داد."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} شما را دنبال میکند."
|
msgstr "{0} شما را دنبال میکند."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} مقالهٔ شما را پسندید."
|
msgstr "{0} مقالهٔ شما را پسندید."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} به شما اشاره کرد."
|
msgstr "{0} به شما اشاره کرد."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} مقالهٔ شما را تقویت کرد."
|
msgstr "{0} مقالهٔ شما را تقویت کرد."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "خوراک شما"
|
msgstr "خوراک شما"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "خوراک محلی"
|
msgstr "خوراک محلی"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "خوراک سراسری"
|
msgstr "خوراک سراسری"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "چهرک {0}"
|
msgstr "چهرک {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "برگ پیشین"
|
msgstr "برگ پیشین"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "برگ پسین"
|
msgstr "برگ پسین"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "اختیاری"
|
msgstr "اختیاری"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "برای ساخت یک بلاگ بایستی وارد شوید"
|
msgstr "برای ساخت یک بلاگ بایستی وارد شوید"
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "بلاگی با همین نام از قبل وجود دارد."
|
msgstr "بلاگی با همین نام از قبل وجود دارد."
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "بلاگ شما با موفقیت ساخته شد!"
|
msgstr "بلاگ شما با موفقیت ساخته شد!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "بلاگ شما پاک شد."
|
msgstr "بلاگ شما پاک شد."
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "شما مجاز به پاک کردن این بلاگ نیستید."
|
msgstr "شما مجاز به پاک کردن این بلاگ نیستید."
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "شما مجاز به ویرایش این بلاگ نیستید."
|
msgstr "شما مجاز به ویرایش این بلاگ نیستید."
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "شما نمیتوانید این رسانه را به عنوان تصویر بلاگ استفاده کنید."
|
msgstr "شما نمیتوانید این رسانه را به عنوان تصویر بلاگ استفاده کنید."
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "شما نمیتوانید از این رسانه به عنوان تصویر سردر بلاگ استفاده کنید."
|
msgstr "شما نمیتوانید از این رسانه به عنوان تصویر سردر بلاگ استفاده کنید."
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "اطلاعات بلاگ شما بهروز شده است."
|
msgstr "اطلاعات بلاگ شما بهروز شده است."
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr "نظر شما فرستاده شده است."
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "نظر شما پاک شده است."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "تنظیمات نمونه ذخیره شده است."
|
msgstr "تنظیمات نمونه ذخیره شده است."
|
||||||
@@ -149,19 +169,19 @@ msgstr "انجام شد."
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "برای پسندیدن یک فرسته، بایستی وارد شده باشید"
|
msgstr "برای پسندیدن یک فرسته، بایستی وارد شده باشید"
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr "رسانه شما پاک شده است."
|
msgstr "رسانه شما پاک شده است."
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "شما مجاز به پاک کردن این رسانه نیستید."
|
msgstr "شما مجاز به پاک کردن این رسانه نیستید."
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "چهرک شما بهروز شده است."
|
msgstr "چهرک شما بهروز شده است."
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "شما مجاز به استفاده از این رسانه نیستید."
|
msgstr "شما مجاز به استفاده از این رسانه نیستید."
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr "شما مجاز به استفاده از این رسانه نیستید.
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "برای دیدن اعلانات خود بایستی وارد شده باشید"
|
msgstr "برای دیدن اعلانات خود بایستی وارد شده باشید"
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr "این فرسته هنوز منتشر نشده است."
|
msgstr "این فرسته هنوز منتشر نشده است."
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "برای نوشتن یک فرستهٔ جدید، بایستی وارد شده باشید"
|
msgstr "برای نوشتن یک فرستهٔ جدید، بایستی وارد شده باشید"
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "شما نویسندهٔ این بلاگ نیستید."
|
msgstr "شما نویسندهٔ این بلاگ نیستید."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "فرستهٔ جدید"
|
msgstr "فرستهٔ جدید"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "ویرایش {0}"
|
msgstr "ویرایش {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "شما مجاز به انتشار روی این بلاگ نیستید."
|
msgstr "شما مجاز به انتشار روی این بلاگ نیستید."
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr "مقالهٔ شما بهروز شده است."
|
msgstr "مقالهٔ شما بهروز شده است."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "مقالهٔ شما ذخیره شده است."
|
msgstr "مقالهٔ شما ذخیره شده است."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "مقالهٔ جدید"
|
msgstr "مقالهٔ جدید"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "شما مجاز به حذف این مقاله نیستید."
|
msgstr "شما مجاز به حذف این مقاله نیستید."
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr "مقالهٔ شما پاک شده است."
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr "به نظر میرسد مقالهای را که میخواهید پاک کنید، وجود ندارد. قبلا پاک نشده است؟"
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr "نتوانستیم اطّلاعات کافی دربارهٔ حساب شما دریافت کنیم. لطفاً مطمئن شوید که نام کاربری درست است."
|
msgstr "نتوانستیم اطّلاعات کافی دربارهٔ حساب شما دریافت کنیم. لطفاً مطمئن شوید که نام کاربری درست است."
|
||||||
|
|
||||||
@@ -245,45 +265,70 @@ msgstr "اینجا، پیوندی برای بازنشانی گذرواژهٔ ش
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "گذرواژه شما با موفقیت بازنشانی شد."
|
msgstr "گذرواژه شما با موفقیت بازنشانی شد."
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "برای دسترسی به پیشخوان بایستی وارد شده باشید"
|
msgstr "برای دسترسی به پیشخوان بایستی وارد شده باشید"
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "دیگر {} را دنبال نمیکنید."
|
msgstr "دیگر {} را دنبال نمیکنید."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "اکنون {} را دنبال میکنید."
|
msgstr "اکنون {} را دنبال میکنید."
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "برای دنبال کردن یک نفر، باید وارد شوید"
|
msgstr "برای دنبال کردن یک نفر، باید وارد شوید"
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "برای ویرایش نمایهٔ خود، باید وارد شوید"
|
msgstr "برای ویرایش نمایهٔ خود، باید وارد شوید"
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr "نمایهٔ شما بهروز شده است."
|
msgstr "نمایهٔ شما بهروز شده است."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "حساب شما پاک شده است."
|
msgstr "حساب شما پاک شده است."
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "نمیتوانید حساب شخص دیگری را پاک کنید."
|
msgstr "نمیتوانید حساب شخص دیگری را پاک کنید."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "حسابی برای خود بسازید"
|
||||||
msgstr "ثبتنام روی این نمونه بسته شده است."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "حسابی بسازید"
|
||||||
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"
|
msgid "Media upload"
|
||||||
msgstr "بارگذاری رسانه"
|
msgstr "بارگذاری رسانه"
|
||||||
@@ -423,27 +468,6 @@ msgstr "دنبالکنندگان"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "دنبالشوندگان"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "دنبالشوندگان {0}"
|
msgstr "دنبالشوندگان {0}"
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr "تایید"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "بهروزرسانی گذرواژه"
|
msgstr "بهروزرسانی گذرواژه"
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr "صندوق پستی خود را بررسی کنید!"
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr "ما، یک رایانامه به نشانیای که به ما دادید فرستادهایم. با پیوندی که در آن است میتوانید گذرواژه خود را تغییر دهید."
|
msgstr "ما، یک رایانامه به نشانیای که به ما دادید فرستادهایم. با پیوندی که در آن است میتوانید گذرواژه خود را تغییر دهید."
|
||||||
|
|
||||||
|
|||||||
+95
-74
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Finnish\n"
|
"Language-Team: Finnish\n"
|
||||||
"Language: fi_FI\n"
|
"Language: fi_FI\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} kommentoi mediaasi."
|
msgstr "{0} kommentoi mediaasi."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "Sinulla on {0} tilaajaa."
|
msgstr "Sinulla on {0} tilaajaa."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} tykkää artikkeleistasi."
|
msgstr "{0} tykkää artikkeleistasi."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} on maininnut sinut."
|
msgstr "{0} on maininnut sinut."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "Artikkelivirtasi"
|
msgstr "Artikkelivirtasi"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Paikallinen artikkelivirta"
|
msgstr "Paikallinen artikkelivirta"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Yhdistetty artikkelivirta"
|
msgstr "Yhdistetty artikkelivirta"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "{0}n avatar"
|
msgstr "{0}n avatar"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Valinnainen"
|
msgstr "Valinnainen"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Luodaksesi blogin sinun tulee olla sisäänkirjautuneena"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Saman niminen blogi on jo olemassa."
|
msgstr "Saman niminen blogi on jo olemassa."
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "Blogisi luotiin onnistuneesti!"
|
msgstr "Blogisi luotiin onnistuneesti!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Blogisi poistettiin."
|
msgstr "Blogisi poistettiin."
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Sinulla ei ole oikeutta poistaa tätä blogia."
|
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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Sinulla ei ole oikeutta muokata tätä blogia."
|
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."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "Et voi käyttää tätä mediaa blogin ikonina."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "Et voi käyttää tätä mediaa blogin bannerina."
|
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."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Blogisi tiedot on päivitetty."
|
msgstr "Blogisi tiedot on päivitetty."
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr "Kommentisi lähetettiin."
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Sisältösi poistettiin."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "Instanssin asetukset on tallennettu."
|
msgstr "Instanssin asetukset on tallennettu."
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Tykätäksesi postauksesta sinun tulee olla sisäänkirjautuneena"
|
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."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Mediasi on poistettu."
|
msgstr "Mediasi on poistettu."
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "Sinulla ei ole oikeutta poistaa tätä mediaa."
|
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."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Avatarisi on päivitetty."
|
msgstr "Avatarisi on päivitetty."
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "Sinulla ei ole oikeutta käyttää tätä mediaa."
|
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"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Nähdäksesi ilmoituksesi sinun tulee olla sisäänkirjautuneena"
|
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."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Tätä postausta ei ole vielä julkaistu."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Kirjoittaaksesi uuden postauksen sinun tulee olla sisäänkirjautuneena"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Et ole tämän blogin kirjoittaja."
|
msgstr "Et ole tämän blogin kirjoittaja."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Uusi postaus"
|
msgstr "Uusi postaus"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Muokkaa {0}"
|
msgstr "Muokkaa {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "Sinulla ei ole oikeutta julkaista tällä blogilla."
|
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."
|
msgid "Your article has been updated."
|
||||||
msgstr "Artikkeli päivitetty."
|
msgstr "Artikkeli päivitetty."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Artikkeli on tallennettu."
|
msgstr "Artikkeli on tallennettu."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Uusi artikkeli"
|
msgstr "Uusi artikkeli"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Sinulla ei ole oikeutta poistaa tätä artikkelia."
|
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."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Artikkelisi on poistettu."
|
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?"
|
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?"
|
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."
|
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."
|
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."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"Language: fr_FR\n"
|
"Language: fr_FR\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} a commenté votre article."
|
msgstr "{0} a commenté votre article."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} vous suit."
|
msgstr "{0} vous suit."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} a aimé votre article."
|
msgstr "{0} a aimé votre article."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} vous a mentionné."
|
msgstr "{0} vous a mentionné."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} a boosté votre article."
|
msgstr "{0} a boosté votre article."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "Votre flux"
|
msgstr "Votre flux"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Flux local"
|
msgstr "Flux local"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Flux fédéré"
|
msgstr "Flux fédéré"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "Avatar de {0}"
|
msgstr "Avatar de {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Page précédente"
|
msgstr "Page précédente"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Page suivante"
|
msgstr "Page suivante"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Optionnel"
|
msgstr "Optionnel"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Vous devez vous connecter pour créer un nouveau blog"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Un blog avec le même nom existe déjà."
|
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!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "Votre blog a été créé avec succès !"
|
msgstr "Votre blog a été créé avec succès !"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Votre blog a été supprimé."
|
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."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Vous n'êtes pas autorisé⋅e à supprimer ce 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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Vous n'êtes pas autorisé à éditer ce 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."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "Vous ne pouvez pas utiliser ce media comme icône de blog."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "Vous ne pouvez pas utiliser ce media comme illustration de blog."
|
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."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Les informations de votre blog ont été mise à jour."
|
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."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Votre commentaire a été supprimé."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "Les paramètres de votre instance ont été enregistrés."
|
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"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Vous devez vous connecter pour aimer un article"
|
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."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Votre média a été supprimé."
|
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."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "Vous n'êtes pas autorisé à supprimer ce média."
|
msgstr "Vous n'êtes pas autorisé à supprimer ce média."
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Votre avatar a été mis à jour."
|
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."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "Vous n'êtes pas autorisé à utiliser ce média."
|
msgstr "Vous n'êtes pas autorisé à 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"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Vous devez vous connecter pour voir vos notifications"
|
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."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Cet article n’est pas encore publié."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Vous devez vous connecter pour écrire un nouvel article"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Vous n'êtes pas auteur⋅rice de ce blog."
|
msgstr "Vous n'êtes pas auteur⋅rice de ce blog."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Nouvel article"
|
msgstr "Nouvel article"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Modifier {0}"
|
msgstr "Modifier {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "Vous n'êtes pas autorisé à publier sur ce blog."
|
msgstr "Vous n'êtes pas autorisé à publier sur ce blog."
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr "Votre article a été mis à jour."
|
msgstr "Votre article a été mis à jour."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Votre article a été enregistré."
|
msgstr "Votre article a été enregistré."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Nouvel article"
|
msgstr "Nouvel article"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Vous n'êtes pas autorisé à supprimer cet 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."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Votre article a été supprimé."
|
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?"
|
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é ?"
|
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."
|
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."
|
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."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "Votre mot de passe a été réinitialisé avec succès."
|
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"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "Vous devez vous connecter pour accéder à votre tableau de bord"
|
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 {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Vous ne suivez plus {}."
|
msgstr "Vous ne suivez plus {}."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Vous suivez maintenant {}."
|
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"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "Vous devez vous connecter pour vous abonner à quelqu'un"
|
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"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "Vous devez vous connecter pour modifier votre profil"
|
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."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Votre profil a été mis à jour."
|
msgstr "Votre profil a été mis à jour."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Votre compte a été supprimé."
|
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."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "Vous ne pouvez pas supprimer le compte d'une autre personne."
|
msgstr "Vous ne pouvez pas supprimer le compte d'une autre personne."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Créer votre compte"
|
||||||
msgstr "Les inscriptions sont fermées sur cette instance."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Créer un compte"
|
||||||
msgstr "Votre compte a été créé. Vous avez juste à vous connecter, avant de pouvoir l'utiliser."
|
|
||||||
|
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"
|
msgid "Media upload"
|
||||||
msgstr "Téléversement de média"
|
msgstr "Téléversement de média"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Abonnés"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Abonnements"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "Abonnements de {0}"
|
msgstr "Abonnements de {0}"
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr "Confirmation"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Mettre à jour le mot de passe"
|
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."
|
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."
|
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"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Galician\n"
|
"Language-Team: Galician\n"
|
||||||
"Language: gl_ES\n"
|
"Language: gl_ES\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} comentou o teu artigo."
|
msgstr "{0} comentou o teu artigo."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} está suscrita aos teus artigos."
|
msgstr "{0} está suscrita aos teus artigos."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "a {0} gustoulle o teu artigo."
|
msgstr "a {0} gustoulle o teu artigo."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} mencionoute."
|
msgstr "{0} mencionoute."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} promoveu o teu artigo."
|
msgstr "{0} promoveu o teu artigo."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "O seu contido"
|
msgstr "O seu contido"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Contido local"
|
msgstr "Contido local"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Contido federado"
|
msgstr "Contido federado"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "Avatar de {0}"
|
msgstr "Avatar de {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Páxina anterior"
|
msgstr "Páxina anterior"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Páxina seguinte"
|
msgstr "Páxina seguinte"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Opcional"
|
msgstr "Opcional"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Para crear un novo blog debes estar conectada"
|
msgstr "Para crear un novo blog debes estar conectada"
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Xa existe un blog co mesmo nome."
|
msgstr "Xa existe un blog co mesmo nome."
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "O teu blog creouse correctamente!"
|
msgstr "O teu blog creouse correctamente!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Eliminaches o blog."
|
msgstr "Eliminaches o blog."
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Non tes permiso para eliminar este 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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Non podes editar este 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."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "Non podes utilizar este medio como icona do blog."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "Non podes utilizar este medio como cabeceira do blog."
|
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."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Actualizouse a información sobre o blog."
|
msgstr "Actualizouse a información sobre o blog."
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr "O teu comentario foi publicado."
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Eliminouse o comentario."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "Gardáronse os axustes das instancia."
|
msgstr "Gardáronse os axustes das instancia."
|
||||||
@@ -149,19 +169,19 @@ msgstr "Feito."
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Para darlle a gústame, debes estar conectada"
|
msgstr "Para darlle a gústame, debes estar conectada"
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Eliminouse o ficheiro de medios."
|
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."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "Non tes permiso para eliminar este ficheiro."
|
msgstr "Non tes permiso para eliminar este ficheiro."
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Actualizouse o avatar."
|
msgstr "Actualizouse o avatar."
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "Non tes permiso para usar este ficheiro de medios."
|
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"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Para ver as túas notificacións, debes estar conectada"
|
msgstr "Para ver as túas notificacións, debes estar conectada"
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Esto é un borrador, non publicar por agora."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Para escribir un novo artigo, debes estar conectada"
|
msgstr "Para escribir un novo artigo, debes estar conectada"
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Non es autora de este blog."
|
msgstr "Non es autora de este blog."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Novo artigo"
|
msgstr "Novo artigo"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Editar {0}"
|
msgstr "Editar {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "Non tes permiso para publicar en este 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."
|
msgid "Your article has been updated."
|
||||||
msgstr "Actualizouse o artigo."
|
msgstr "Actualizouse o artigo."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Gardouse o artigo."
|
msgstr "Gardouse o artigo."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Novo artigo"
|
msgstr "Novo artigo"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Non tes permiso para eliminar este artigo."
|
msgstr "Non tes permiso para eliminar este artigo."
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Eliminouse o artigo."
|
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?"
|
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?"
|
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."
|
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."
|
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."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "O contrasinal restableceuse correctamente."
|
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"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "Para acceder ao taboleiro, debes estar conectada"
|
msgstr "Para acceder ao taboleiro, debes estar conectada"
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Xa non está a seguir a {}."
|
msgstr "Xa non está a seguir a {}."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Está a seguir a {}."
|
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"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "Para suscribirse a un blog, debe estar conectada"
|
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"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "Para editar o seu perfil, debe estar conectada"
|
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."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Actualizouse o perfil."
|
msgstr "Actualizouse o perfil."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Eliminouse a túa conta."
|
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."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "Non pode eliminar a conta de outra persoa."
|
msgstr "Non pode eliminar a conta de outra persoa."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Cree a súa conta"
|
||||||
msgstr "O rexistro está pechado en esta instancia."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Crear unha conta"
|
||||||
msgstr "Creouse a túa conta. Agora só tes que conectarte para poder utilizala."
|
|
||||||
|
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"
|
msgid "Media upload"
|
||||||
msgstr "Subir medios"
|
msgstr "Subir medios"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Subscritoras"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Subscricións"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "Suscricións de {0}"
|
msgstr "Suscricións de {0}"
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr "Confirmación"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Actualizar contrasinal"
|
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."
|
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."
|
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"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hebrew\n"
|
"Language-Team: Hebrew\n"
|
||||||
"Language: he_IL\n"
|
"Language: he_IL\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
msgid "{0} commented on your article."
|
msgid "Someone"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
|
||||||
msgid "{0} is subscribed to you."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:107
|
||||||
msgid "{0} liked your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:108
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# 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."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -245,44 +265,69 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -845,9 +869,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+95
-74
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hindi\n"
|
"Language-Team: Hindi\n"
|
||||||
"Language: hi_IN\n"
|
"Language: hi_IN\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} ने आपके लेख पे कॉमेंट किया है"
|
msgstr "{0} ने आपके लेख पे कॉमेंट किया है"
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} ने आपको सब्सक्राइब किया है"
|
msgstr "{0} ने आपको सब्सक्राइब किया है"
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} ने आपके लेख को लाइक किया"
|
msgstr "{0} ने आपके लेख को लाइक किया"
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} ने आपको मेंशन किया"
|
msgstr "{0} ने आपको मेंशन किया"
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} ने आपके आर्टिकल को बूस्ट किया"
|
msgstr "{0} ने आपके आर्टिकल को बूस्ट किया"
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "आपकी फीड"
|
msgstr "आपकी फीड"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "लोकल फीड"
|
msgstr "लोकल फीड"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "फ़ेडरेटेड फीड"
|
msgstr "फ़ेडरेटेड फीड"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "{0} का avtar"
|
msgstr "{0} का avtar"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "वैकल्पिक"
|
msgstr "वैकल्पिक"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "नया ब्लॉग बनाने के लिए आपको लोग इन करना होगा"
|
msgstr "नया ब्लॉग बनाने के लिए आपको लोग इन करना होगा"
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "ये नाम से पहले ही एक ब्लॉग है"
|
msgstr "ये नाम से पहले ही एक ब्लॉग है"
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "आपको ये ब्लॉग डिलीट करने की अनुमति नहीं है"
|
msgstr "आपको ये ब्लॉग डिलीट करने की अनुमति नहीं है"
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "आपको ये ब्लॉग में बदलाव करने की अनुमति नहीं है"
|
msgstr "आपको ये ब्लॉग में बदलाव करने की अनुमति नहीं है"
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "इस फोटो को ब्लॉग आइकॉन के लिए इस्तेमाल नहीं कर सकते"
|
msgstr "इस फोटो को ब्लॉग आइकॉन के लिए इस्तेमाल नहीं कर सकते"
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "इस media को blog banner के लिए इस्तेमाल नहीं कर सकते"
|
msgstr "इस media को blog banner के लिए इस्तेमाल नहीं कर सकते"
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Post को like करने के लिए आपको log in करना होगा"
|
msgstr "Post को like करने के लिए आपको log in करना होगा"
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Notifications देखने के लिए आपको log in करना होगा"
|
msgstr "Notifications देखने के लिए आपको log in करना होगा"
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr "इस post को publish नहीं किया गया है"
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "नया post लिखने के लिए आपको log in करना होगा"
|
msgstr "नया post लिखने के लिए आपको log in करना होगा"
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "आप इस blog के लेखक नहीं हैं"
|
msgstr "आप इस blog के लेखक नहीं हैं"
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "नया post"
|
msgstr "नया post"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "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."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "नया लेख"
|
msgstr "नया लेख"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr "आपके अकाउंट के बारे में पर्याप्त जानकारी नहीं मिल पायी. कृपया जांच करें की आपका यूजरनाम सही है."
|
msgstr "आपके अकाउंट के बारे में पर्याप्त जानकारी नहीं मिल पायी. कृपया जांच करें की आपका यूजरनाम सही है."
|
||||||
|
|
||||||
@@ -245,44 +265,69 @@ msgstr "आपका पासवर्ड रिसेट करने का
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "आपका पासवर्ड रिसेट कर दिया गया है"
|
msgstr "आपका पासवर्ड रिसेट कर दिया गया है"
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "डैशबोर्ड पर जाने के लिए, लोग इन करें"
|
msgstr "डैशबोर्ड पर जाने के लिए, लोग इन करें"
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "सब्सक्राइब करने के लिए, लोग इन करें"
|
msgstr "सब्सक्राइब करने के लिए, लोग इन करें"
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "प्रोफाइल में बदलाव करने के लिए, लोग इन करें"
|
msgstr "प्रोफाइल में बदलाव करने के लिए, लोग इन करें"
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "अपना अकाउंट बनाएं"
|
||||||
|
|
||||||
|
msgid "Create an account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Email"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr "पुष्टीकरण"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "पासवर्ड अपडेट करें"
|
msgstr "पासवर्ड अपडेट करें"
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr "आपका इनबॉक्स चेक करें"
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr "हमने आपके दिए गए इ-मेल पे पासवर्ड रिसेट लिंक भेज दिया है."
|
msgstr "हमने आपके दिए गए इ-मेल पे पासवर्ड रिसेट लिंक भेज दिया है."
|
||||||
|
|
||||||
|
|||||||
+99
-78
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Croatian\n"
|
"Language-Team: Croatian\n"
|
||||||
"Language: hr_HR\n"
|
"Language: hr_HR\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
msgid "{0} commented on your article."
|
msgid "Someone"
|
||||||
msgstr "{0} komentira na vaš članak."
|
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
|
||||||
msgid "{0} is subscribed to you."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:107
|
||||||
msgid "{0} liked your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} se svidio vaš članak."
|
msgstr "{0} komentira na vaš članak."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:108
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# 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."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Lokalnog kanala"
|
msgstr "Lokalnog kanala"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Federalni kanala"
|
msgstr "Federalni kanala"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Ovaj post još nije objavljen."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Ti ne autor ovog bloga."
|
msgstr "Ti ne autor ovog bloga."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Novi članak"
|
msgstr "Novi članak"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Uredi {0}"
|
msgstr "Uredi {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -245,44 +265,69 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -843,9 +867,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hungarian\n"
|
"Language-Team: Hungarian\n"
|
||||||
"Language: hu_HU\n"
|
"Language: hu_HU\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
msgid "{0} commented on your article."
|
msgid "Someone"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
|
||||||
msgid "{0} is subscribed to you."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:107
|
||||||
msgid "{0} liked your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:108
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# 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."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -245,44 +265,69 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Italian\n"
|
"Language-Team: Italian\n"
|
||||||
"Language: it_IT\n"
|
"Language: it_IT\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} ha commentato il tuo articolo."
|
msgstr "{0} ha commentato il tuo articolo."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} si è iscritto a te."
|
msgstr "{0} si è iscritto a te."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} ha apprezzato il tuo articolo."
|
msgstr "{0} ha apprezzato il tuo articolo."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} ti ha menzionato."
|
msgstr "{0} ti ha menzionato."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} ha boostato il tuo articolo."
|
msgstr "{0} ha boostato il tuo articolo."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "Il tuo flusso"
|
msgstr "Il tuo flusso"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Flusso locale"
|
msgstr "Flusso locale"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Flusso federato"
|
msgstr "Flusso federato"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "Avatar di {0}"
|
msgstr "Avatar di {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Pagina precedente"
|
msgstr "Pagina precedente"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Pagina successiva"
|
msgstr "Pagina successiva"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Opzionale"
|
msgstr "Opzionale"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Per creare un nuovo blog, devi avere effettuato l'accesso"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Un blog con lo stesso nome esiste già."
|
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!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "Il tuo blog è stato creato con successo!"
|
msgstr "Il tuo blog è stato creato con successo!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Il tuo blog è stato eliminato."
|
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."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Non ti è consentito di eliminare questo 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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Non ti è consentito modificare questo 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."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "Non puoi utilizzare questo media come icona del blog."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "Non puoi utilizzare questo media come copertina del blog."
|
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."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Le informazioni del tuo blog sono state aggiornate."
|
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."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Il tuo commento è stato eliminato."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "Le impostazioni dell'istanza sono state salvate."
|
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"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Per mettere mi piace ad un post, devi avere effettuato l'accesso"
|
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."
|
msgid "Your media have been deleted."
|
||||||
msgstr "I tuoi media sono stati eliminati."
|
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."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "Non ti è consentito rimuovere questo media."
|
msgstr "Non ti è consentito rimuovere questo media."
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "La tua immagine di profilo è stata aggiornata."
|
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."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "Non ti è consentito utilizzare questo 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"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Per vedere le tue notifiche, devi avere effettuato l'accesso"
|
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."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Questo post non è ancora stato pubblicato."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Per scrivere un nuovo post, devi avere effettuato l'accesso"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Non sei un autore di questo blog."
|
msgstr "Non sei un autore di questo blog."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Nuovo post"
|
msgstr "Nuovo post"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Modifica {0}"
|
msgstr "Modifica {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "Non ti è consentito pubblicare su questo 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."
|
msgid "Your article has been updated."
|
||||||
msgstr "Il tuo articolo è stato aggiornato."
|
msgstr "Il tuo articolo è stato aggiornato."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Il tuo articolo è stato salvato."
|
msgstr "Il tuo articolo è stato salvato."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Nuovo articolo"
|
msgstr "Nuovo articolo"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Non è consentito eliminare questo articolo."
|
msgstr "Non è consentito eliminare questo articolo."
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Il tuo articolo è stato eliminato."
|
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?"
|
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?"
|
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."
|
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."
|
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."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "La tua password è stata reimpostata con successo."
|
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"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "Per accedere al tuo pannello, devi avere effettuato l'accesso"
|
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 {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Non stai più seguendo {}."
|
msgstr "Non stai più seguendo {}."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Ora stai seguendo {}."
|
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"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "Per iscriverti a qualcuno, devi avere effettuato l'accesso"
|
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"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "Per modificare il tuo profilo, devi avere effettuato l'accesso"
|
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."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Il tuo profilo è stato aggiornato."
|
msgstr "Il tuo profilo è stato aggiornato."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Il tuo account è stato eliminato."
|
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."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "Non puoi eliminare l'account di qualcun altro."
|
msgstr "Non puoi eliminare l'account di qualcun altro."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Crea il tuo account"
|
||||||
msgstr "Le registrazioni sono chiuse su questa istanza."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Crea un account"
|
||||||
msgstr "Il tuo account è stato creato. Ora devi solo effettuare l'accesso prima di poterlo utilizzare."
|
|
||||||
|
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"
|
msgid "Media upload"
|
||||||
msgstr "Caricamento di un media"
|
msgstr "Caricamento di un media"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Iscritti"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Sottoscrizioni"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "Iscrizioni di {0}"
|
msgstr "Iscrizioni di {0}"
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr "Conferma"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Aggiorna 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."
|
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."
|
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"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Japanese\n"
|
"Language-Team: Japanese\n"
|
||||||
"Language: ja_JP\n"
|
"Language: ja_JP\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} さんがあなたの投稿にコメントしました。"
|
msgstr "{0} さんがあなたの投稿にコメントしました。"
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} さんがあなたをフォローしました。"
|
msgstr "{0} さんがあなたをフォローしました。"
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} さんがあなたの投稿にいいねしました。"
|
msgstr "{0} さんがあなたの投稿にいいねしました。"
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} さんがあなたをメンションしました。"
|
msgstr "{0} さんがあなたをメンションしました。"
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} さんがあなたの投稿をブーストしました。"
|
msgstr "{0} さんがあなたの投稿をブーストしました。"
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "自分のフィード"
|
msgstr "自分のフィード"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "このインスタンスのフィード"
|
msgstr "このインスタンスのフィード"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "全インスタンスのフィード"
|
msgstr "全インスタンスのフィード"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "{0} さんのアバター"
|
msgstr "{0} さんのアバター"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "前のページ"
|
msgstr "前のページ"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "次のページ"
|
msgstr "次のページ"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "省略可"
|
msgstr "省略可"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "新しいブログを作成するにはログインが必要です"
|
msgstr "新しいブログを作成するにはログインが必要です"
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "同じ名前のブログがすでに存在しています。"
|
msgstr "同じ名前のブログがすでに存在しています。"
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "ブログは正常に作成されました。"
|
msgstr "ブログは正常に作成されました。"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "ブログを削除しました。"
|
msgstr "ブログを削除しました。"
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "このブログを削除する権限がありません。"
|
msgstr "このブログを削除する権限がありません。"
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "このブログを編集する権限がありません。"
|
msgstr "このブログを編集する権限がありません。"
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "このメディアはブログアイコンに使用できません。"
|
msgstr "このメディアはブログアイコンに使用できません。"
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "このメディアはブログバナーに使用できません。"
|
msgstr "このメディアはブログバナーに使用できません。"
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "ブログ情報を更新しました。"
|
msgstr "ブログ情報を更新しました。"
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr "コメントを投稿しました。"
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "コメントを削除しました。"
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "インスタンスの設定を保存しました。"
|
msgstr "インスタンスの設定を保存しました。"
|
||||||
@@ -127,7 +147,7 @@ msgstr "ブロックリストから削除しました"
|
|||||||
|
|
||||||
# src/routes/instance.rs:219
|
# src/routes/instance.rs:219
|
||||||
msgid "Email already blocked"
|
msgid "Email already blocked"
|
||||||
msgstr ""
|
msgstr "メールは既にブロックされています"
|
||||||
|
|
||||||
# src/routes/instance.rs:224
|
# src/routes/instance.rs:224
|
||||||
msgid "Email Blocked"
|
msgid "Email Blocked"
|
||||||
@@ -149,19 +169,19 @@ msgstr "完了しました。"
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "投稿をいいねするにはログインが必要です"
|
msgstr "投稿をいいねするにはログインが必要です"
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr "メディアを削除しました。"
|
msgstr "メディアを削除しました。"
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "このメディアを削除する権限がありません。"
|
msgstr "このメディアを削除する権限がありません。"
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "アバターを更新しました。"
|
msgstr "アバターを更新しました。"
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "このメディアを使用する権限がありません。"
|
msgstr "このメディアを使用する権限がありません。"
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr "このメディアを使用する権限がありません。"
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "通知を表示するにはログインが必要です"
|
msgstr "通知を表示するにはログインが必要です"
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr "この投稿はまだ公開されていません。"
|
msgstr "この投稿はまだ公開されていません。"
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "新しい投稿を書くにはログインが必要です"
|
msgstr "新しい投稿を書くにはログインが必要です"
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "あなたはこのブログの投稿者ではありません。"
|
msgstr "あなたはこのブログの投稿者ではありません。"
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "新しい投稿"
|
msgstr "新しい投稿"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "{0} を編集"
|
msgstr "{0} を編集"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "このブログで投稿を公開する権限がありません。"
|
msgstr "このブログで投稿を公開する権限がありません。"
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr "投稿を更新しました。"
|
msgstr "投稿を更新しました。"
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "投稿を保存しました。"
|
msgstr "投稿を保存しました。"
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "新しい投稿"
|
msgstr "新しい投稿"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "この投稿を削除する権限がありません。"
|
msgstr "この投稿を削除する権限がありません。"
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr "投稿を削除しました。"
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr "削除しようとしている投稿は存在しないようです。すでに削除していませんか?"
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr "お使いのアカウントに関する十分な情報を取得できませんでした。ご自身のユーザー名が正しいことを確認してください。"
|
msgstr "お使いのアカウントに関する十分な情報を取得できませんでした。ご自身のユーザー名が正しいことを確認してください。"
|
||||||
|
|
||||||
@@ -245,45 +265,70 @@ msgstr "こちらのリンクから、パスワードをリセットできます
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "パスワードが正常にリセットされました。"
|
msgstr "パスワードが正常にリセットされました。"
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "ダッシュボードにアクセスするにはログインが必要です"
|
msgstr "ダッシュボードにアクセスするにはログインが必要です"
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "{} のフォローを解除しました。"
|
msgstr "{} のフォローを解除しました。"
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "{} をフォローしました。"
|
msgstr "{} をフォローしました。"
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "誰かをフォローするにはログインが必要です"
|
msgstr "誰かをフォローするにはログインが必要です"
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "プロフィールを編集するにはログインが必要です"
|
msgstr "プロフィールを編集するにはログインが必要です"
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr "プロフィールを更新しました。"
|
msgstr "プロフィールを更新しました。"
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "アカウントを削除しました。"
|
msgstr "アカウントを削除しました。"
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "他人のアカウントは削除できません。"
|
msgstr "他人のアカウントは削除できません。"
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "アカウントを作成"
|
||||||
msgstr "登録はこのインスタンス内に限定されています。"
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "アカウントを作成"
|
||||||
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"
|
msgid "Media upload"
|
||||||
msgstr "メディアのアップロード"
|
msgstr "メディアのアップロード"
|
||||||
@@ -423,27 +468,6 @@ msgstr "フォロワー"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "フォロー"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "{0} がフォロー中のユーザー"
|
msgstr "{0} がフォロー中のユーザー"
|
||||||
|
|
||||||
@@ -839,9 +863,6 @@ msgstr "確認"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "パスワードを更新"
|
msgstr "パスワードを更新"
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr "受信トレイを確認してください!"
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr "指定された宛先に、パスワードをリセットするためのリンクを記載したメールを送信しました。"
|
msgstr "指定された宛先に、パスワードをリセットするためのリンクを記載したメールを送信しました。"
|
||||||
|
|
||||||
|
|||||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Korean\n"
|
"Language-Team: Korean\n"
|
||||||
"Language: ko_KR\n"
|
"Language: ko_KR\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
msgid "{0} commented on your article."
|
msgid "Someone"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
|
||||||
msgid "{0} is subscribed to you."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:107
|
||||||
msgid "{0} liked your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:108
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# 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."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -245,44 +265,69 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -839,9 +863,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+56
-32
@@ -14,6 +14,10 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 3.2.2\n"
|
"X-Generator: Weblate 3.2.2\n"
|
||||||
|
|
||||||
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} la inn en kommentar til artikkelen din"
|
msgstr "{0} la inn en kommentar til artikkelen din"
|
||||||
@@ -105,6 +109,24 @@ msgstr "Ingen innlegg å vise enda."
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Ingen innlegg å vise enda."
|
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
|
# src/routes/instance.rs:145
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -275,16 +297,44 @@ msgstr "Ingen innlegg å vise enda."
|
|||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:473
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:527
|
#, fuzzy
|
||||||
msgid ""
|
msgid "Registration"
|
||||||
"Your account has been created. Now you just need to log in, before you can "
|
msgstr "Registrér deg"
|
||||||
"use it."
|
|
||||||
|
msgid "Check your inbox!"
|
||||||
msgstr ""
|
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"
|
msgid "Media upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -438,29 +488,6 @@ msgstr "Lang beskrivelse"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Lang beskrivelse"
|
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
|
#, fuzzy
|
||||||
msgid "{0}'s subscriptions"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "Lang beskrivelse"
|
msgstr "Lang beskrivelse"
|
||||||
@@ -927,9 +954,6 @@ msgstr "Oppsett"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Oppdater konto"
|
msgstr "Oppdater konto"
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We sent a mail to the address you gave us, with a link to reset your "
|
"We sent a mail to the address you gave us, with a link to reset your "
|
||||||
"password."
|
"password."
|
||||||
|
|||||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Dutch\n"
|
"Language-Team: Dutch\n"
|
||||||
"Language: nl_NL\n"
|
"Language: nl_NL\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} reageerde op je bericht."
|
msgstr "{0} reageerde op je bericht."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} is op je geabonneerd."
|
msgstr "{0} is op je geabonneerd."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} vond je artikel leuk."
|
msgstr "{0} vond je artikel leuk."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} vermeldde jou."
|
msgstr "{0} vermeldde jou."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} heeft je artikel geboost."
|
msgstr "{0} heeft je artikel geboost."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "Jouw feed"
|
msgstr "Jouw feed"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Lokale feed"
|
msgstr "Lokale feed"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Gefedereerde feed"
|
msgstr "Gefedereerde feed"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "{0}'s avatar"
|
msgstr "{0}'s avatar"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Vorige pagina"
|
msgstr "Vorige pagina"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Volgende pagina"
|
msgstr "Volgende pagina"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Optioneel"
|
msgstr "Optioneel"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Om een nieuwe blog te maken moet je ingelogd zijn"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Er bestaat al een blog met dezelfde naam."
|
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!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "Je blog is succesvol aangemaakt!"
|
msgstr "Je blog is succesvol aangemaakt!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Je blog is verwijderd."
|
msgstr "Je blog is verwijderd."
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Je mag deze blog niet verwijderen."
|
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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Je mag deze blog niet bewerken."
|
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."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "Je kunt dit object niet als blogpictogram gebruiken."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "Je kunt dit object niet als blog banner gebruiken."
|
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."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Je bloginformatie is bijgewerkt."
|
msgstr "Je bloginformatie is bijgewerkt."
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr "Je reactie is geplaatst."
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Je reactie is verwijderd."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "Serverinstellingen zijn opgeslagen."
|
msgstr "Serverinstellingen zijn opgeslagen."
|
||||||
@@ -149,19 +169,19 @@ msgstr "Klaar."
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Om een bericht leuk te vinden, moet je ingelogd zijn"
|
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."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Je media zijn verwijderd."
|
msgstr "Je media zijn verwijderd."
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "Je mag dit medium niet verwijderen."
|
msgstr "Je mag dit medium niet verwijderen."
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Je avatar is bijgewerkt."
|
msgstr "Je avatar is bijgewerkt."
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "Je mag dit mediabestand niet gebruiken."
|
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"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Om je meldingen te kunnen zien, moet je ingelogd zijn"
|
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."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Dit bericht is nog niet gepubliceerd."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Om een nieuwe bericht te schrijven moet je ingelogd zijn"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Je bent geen schrijver van deze blog."
|
msgstr "Je bent geen schrijver van deze blog."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Nieuw bericht"
|
msgstr "Nieuw bericht"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "{0} bewerken"
|
msgstr "{0} bewerken"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "Je mag niet publiceren op deze 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."
|
msgid "Your article has been updated."
|
||||||
msgstr "Je artikel is bijgewerkt."
|
msgstr "Je artikel is bijgewerkt."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Je artikel is opgeslagen."
|
msgstr "Je artikel is opgeslagen."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Nieuw artikel"
|
msgstr "Nieuw artikel"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Je mag dit artikel niet verwijderen."
|
msgstr "Je mag dit artikel niet verwijderen."
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Je artikel is verwijderd."
|
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?"
|
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?"
|
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."
|
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."
|
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."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "Je wachtwoord is succesvol ingesteld."
|
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"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "Om toegang te krijgen tot je dashboard, moet je ingelogd zijn"
|
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 {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Je volgt {} niet langer."
|
msgstr "Je volgt {} niet langer."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Je volgt nu {}."
|
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"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "Om je te abonneren op iemand, moet je ingelogd zijn"
|
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"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "Om je profiel te bewerken moet je ingelogd zijn"
|
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."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Je profiel is bijgewerkt."
|
msgstr "Je profiel is bijgewerkt."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Je account is verwijderd."
|
msgstr "Je account is verwijderd."
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "Je kunt het account van iemand anders niet verwijderen."
|
msgstr "Je kunt het account van iemand anders niet verwijderen."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Maak je account aan"
|
||||||
msgstr "Registraties zijn gesloten op deze server."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Maak een account aan"
|
||||||
msgstr "Je account is aangemaakt. Nu hoe je alleen maar in te loggen, om het te kunnen gebruiken."
|
|
||||||
|
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"
|
msgid "Media upload"
|
||||||
msgstr "Media uploaden"
|
msgstr "Media uploaden"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Abonnees"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Abonnementen"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "{0}'s abonnementen"
|
msgstr "{0}'s abonnementen"
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr "Bevestiging"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Wachtwoord bijwerken"
|
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."
|
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."
|
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"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Norwegian\n"
|
"Language-Team: Norwegian\n"
|
||||||
"Language: no_NO\n"
|
"Language: no_NO\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} har kommentert artikkelen din."
|
msgstr "{0} har kommentert artikkelen din."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} har abbonert på deg."
|
msgstr "{0} har abbonert på deg."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} likte artikkelen din."
|
msgstr "{0} likte artikkelen din."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} nevnte deg."
|
msgstr "{0} nevnte deg."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} har fremhevet artikkelen din."
|
msgstr "{0} har fremhevet artikkelen din."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "Din tidslinje"
|
msgstr "Din tidslinje"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Lokal tidslinje"
|
msgstr "Lokal tidslinje"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Føderert tidslinje"
|
msgstr "Føderert tidslinje"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "{0}s avatar"
|
msgstr "{0}s avatar"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Valgfritt"
|
msgstr "Valgfritt"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Du må være logget inn for å lage en ny blogg"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Det eksisterer allerede en blogg med dette navnet."
|
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!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "Bloggen ble opprettet!"
|
msgstr "Bloggen ble opprettet!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Bloggen din er nå slettet."
|
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."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Du har ikke rettigheter til å slette denne bloggen."
|
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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Du har ikke rettigheter til å endre denne bloggen."
|
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."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "Du kan ikke bruke dette bildet som bloggikon."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "Du kan ikke bruke dette bildet som bloggbanner."
|
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."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Informasjon om bloggen er oppdatert."
|
msgstr "Informasjon om bloggen er oppdatert."
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr "Kommentaren din er lagt til."
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Kommentaren din er slettet."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "Innstillingene for instansen er lagret."
|
msgstr "Innstillingene for instansen er lagret."
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Du må være innlogget for å like ett innlegg"
|
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."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Mediet er slettet."
|
msgstr "Mediet er slettet."
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "Du har ikke rettigheter til å slette dette mediet."
|
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."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Avataren din er oppdatert."
|
msgstr "Avataren din er oppdatert."
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "Du har ikke rettigheter til å bruke dette mediet."
|
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"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Du må være innlogget for se varsler"
|
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."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Dette innlegget er ikke publisert enda."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Du må være innlogget for å skrive ett nytt innlegg"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Du er ikke forfatter av denne bloggen."
|
msgstr "Du er ikke forfatter av denne bloggen."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Nytt innlegg"
|
msgstr "Nytt innlegg"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Rediger {0}"
|
msgstr "Rediger {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "Du har ikke rettigheter til å publisere på denne bloggen."
|
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."
|
msgid "Your article has been updated."
|
||||||
msgstr "Artikkelen er oppdatert."
|
msgstr "Artikkelen er oppdatert."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Artikkelen er lagret."
|
msgstr "Artikkelen er lagret."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Ny artikkel"
|
msgstr "Ny artikkel"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Du har ikke rettigheter til å slette denne artikkelen."
|
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."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Artikkelen er slettet."
|
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?"
|
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?"
|
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."
|
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."
|
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."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "Passordet ditt er gjenopprettet."
|
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"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "Du må være innlogget for å se skrivebordet"
|
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 {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Du følger ikke lenger {}."
|
msgstr "Du følger ikke lenger {}."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Du følger nå {}."
|
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"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "Du må være innlogget for å følge noen"
|
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"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "Du må være innlogget for å endre profilen din"
|
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."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Profilen din er oppdatert."
|
msgstr "Profilen din er oppdatert."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Kontoen din er slettet."
|
msgstr "Kontoen din er slettet."
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "Du kan ikke slette andres kontoer."
|
msgstr "Du kan ikke slette andres kontoer."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Opprett kontoen din"
|
||||||
msgstr "Registrering er lukket på denne instansen."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Opprett en konto"
|
||||||
msgstr "Kontoen din er opprettet. Du må logge inn for å bruke den."
|
|
||||||
|
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"
|
msgid "Media upload"
|
||||||
msgstr "Last opp medie"
|
msgstr "Last opp medie"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Abonnenter"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Abonnenter"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Polish\n"
|
"Language-Team: Polish\n"
|
||||||
"Language: pl_PL\n"
|
"Language: pl_PL\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} skomentował(a) Twój artykuł."
|
msgstr "{0} skomentował(a) Twój artykuł."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} jest subskrybentem do ciebie."
|
msgstr "{0} jest subskrybentem do ciebie."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} polubił(a) Twój artykuł."
|
msgstr "{0} polubił(a) Twój artykuł."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} wspomniał(a) o Tobie."
|
msgstr "{0} wspomniał(a) o Tobie."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} podbił(a) Twój artykuł."
|
msgstr "{0} podbił(a) Twój artykuł."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "Twój strumień"
|
msgstr "Twój strumień"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Lokalna"
|
msgstr "Lokalna"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Strumień federacji"
|
msgstr "Strumień federacji"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "Awatar {0}"
|
msgstr "Awatar {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Poprzednia strona"
|
msgstr "Poprzednia strona"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Następna strona"
|
msgstr "Następna strona"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Nieobowiązkowe"
|
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"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Aby utworzyć nowy blog, musisz być zalogowany"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Blog o tej samej nazwie już istnieje."
|
msgstr "Blog o tej samej nazwie już istnieje."
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "Twój blog został pomyślnie utworzony!"
|
msgstr "Twój blog został pomyślnie utworzony!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Twój blog został usunięty."
|
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."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Nie masz uprawnień do usunięcia tego bloga."
|
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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Nie masz uprawnień edytować tego bloga."
|
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."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "Nie możesz użyć tego nośnika jako ikony blogu."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "Nie możesz użyć tego nośnika jako banner na blogu."
|
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."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Twoje informacje o blogu zostały zaktualizowane."
|
msgstr "Twoje informacje o blogu zostały zaktualizowane."
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr "Twój komentarz został opublikowany."
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Twój komentarz został usunięty."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "Zapisano ustawienia instancji."
|
msgstr "Zapisano ustawienia instancji."
|
||||||
@@ -149,19 +169,19 @@ msgstr "Gotowe."
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Aby polubić post, musisz być zalogowany"
|
msgstr "Aby polubić post, musisz być zalogowany"
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Twoje media zostały usunięte."
|
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."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "Nie można usunąć tego medium."
|
msgstr "Nie można usunąć tego medium."
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Twój awatar został zaktualizowany."
|
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."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "Nie możesz użyć tego medium."
|
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"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Aby zobaczyć powiadomienia, musisz być zalogowany"
|
msgstr "Aby zobaczyć powiadomienia, musisz być zalogowany"
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Ten wpis nie został jeszcze opublikowany."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Aby napisać nowy artykuł, musisz być zalogowany"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Nie jesteś autorem tego bloga."
|
msgstr "Nie jesteś autorem tego bloga."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Nowy wpis"
|
msgstr "Nowy wpis"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Edytuj {0}"
|
msgstr "Edytuj {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "Nie możesz publikować na tym blogu."
|
msgstr "Nie możesz publikować na tym blogu."
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr "Twój artykuł został zaktualizowany."
|
msgstr "Twój artykuł został zaktualizowany."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Twój artykuł został zapisany."
|
msgstr "Twój artykuł został zapisany."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Nowy artykuł"
|
msgstr "Nowy artykuł"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Nie można usunąć tego artykułu."
|
msgstr "Nie można usunąć tego artykułu."
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Twój artykuł został usunięty."
|
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?"
|
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?"
|
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."
|
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."
|
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."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "Twoje hasło zostało pomyślnie zresetowane."
|
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"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "Aby uzyskać dostęp do panelu, musisz być zalogowany"
|
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 {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Już nie obserwujesz użytkownika {}."
|
msgstr "Już nie obserwujesz użytkownika {}."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Obserwujesz teraz użytkownika {}."
|
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"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "Aby subskrybować do kogoś, musisz być zalogowany"
|
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"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "Aby edytować swój profil, musisz być zalogowany"
|
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."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Twój profil został zaktualizowany."
|
msgstr "Twój profil został zaktualizowany."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Twoje konto zostało usunięte."
|
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."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "Nie możesz usunąć konta innej osoby."
|
msgstr "Nie możesz usunąć konta innej osoby."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Utwórz konto"
|
||||||
msgstr "Rejestracje są zamknięte w tej instancji."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Utwórz nowe konto"
|
||||||
msgstr "Twoje konto zostało utworzone. Zanim będziesz mógł(-ogła) z niego korzystać, musisz się zalogować."
|
|
||||||
|
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"
|
msgid "Media upload"
|
||||||
msgstr "Wysyłanie zawartości multimedialnej"
|
msgstr "Wysyłanie zawartości multimedialnej"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Subskrybenci"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Subskrypcje"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "Subskrypcje {0}"
|
msgstr "Subskrypcje {0}"
|
||||||
|
|
||||||
@@ -845,9 +869,6 @@ msgstr "Potwierdzenie"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Zaktualizuj hasło"
|
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."
|
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."
|
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"
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
msgid "{0} commented on your article."
|
msgid "Someone"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
|
||||||
msgid "{0} is subscribed to you."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:107
|
||||||
msgid "{0} liked your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:108
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# 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."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -104,6 +108,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -164,55 +184,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -240,44 +260,69 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -418,27 +463,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -834,9 +858,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese, Brazilian\n"
|
"Language-Team: Portuguese, Brazilian\n"
|
||||||
"Language: pt_BR\n"
|
"Language: pt_BR\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} comentou o seu artigo."
|
msgstr "{0} comentou o seu artigo."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} se inscreveu."
|
msgstr "{0} se inscreveu."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} curtiu o seu artigo."
|
msgstr "{0} curtiu o seu artigo."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} te mencionou."
|
msgstr "{0} te mencionou."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} compartilhou seu artigo."
|
msgstr "{0} compartilhou seu artigo."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "Seu feed"
|
msgstr "Seu feed"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Feed local"
|
msgstr "Feed local"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Feed global"
|
msgstr "Feed global"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "Imagem de perfil de {0}"
|
msgstr "Imagem de perfil de {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Página anterior"
|
msgstr "Página anterior"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Próxima página"
|
msgstr "Próxima página"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Opcional"
|
msgstr "Opcional"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Para criar um novo blog, você precisa entrar"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Um blog com o mesmo nome já existe."
|
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!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "Seu blog foi criado com sucesso!"
|
msgstr "Seu blog foi criado com sucesso!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Seu blog foi excluído."
|
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."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Você não tem permissão para excluir este 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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Você não tem permissão para editar este 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."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "Você não pode usar esta mídia como ícone do blog."
|
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."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "Você não pode usar esta mídia como capa do blog."
|
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."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Os dados do seu blog foram atualizados."
|
msgstr "Os dados do seu blog foram atualizados."
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr "Seu comentário foi publicado."
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Seu comentário foi excluído."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "As configurações da instância foram salvas."
|
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"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Para curtir um artigo, você precisa entrar"
|
msgstr "Para curtir um artigo, você precisa entrar"
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Sua mídia foi excluída."
|
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."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "Você não tem permissão para excluir esta mídia."
|
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."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Sua imagem de perfil foi atualizada."
|
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."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "Você não tem permissão para usar esta mídia."
|
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"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Para ver suas notificações, você precisa entrar"
|
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."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Este artigo ainda não foi publicado."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Para escrever um novo artigo, você precisa entrar"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Você não é um autor deste blog."
|
msgstr "Você não é um autor deste blog."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Nova postagem"
|
msgstr "Nova postagem"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Editar {0}"
|
msgstr "Editar {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "Você não tem permissão para postar neste 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."
|
msgid "Your article has been updated."
|
||||||
msgstr "Seu artigo foi atualizado."
|
msgstr "Seu artigo foi atualizado."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Seu artigo foi salvo."
|
msgstr "Seu artigo foi salvo."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Novo artigo"
|
msgstr "Novo artigo"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Você não tem permissão para excluir este artigo."
|
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."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Seu artigo foi excluído."
|
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?"
|
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?"
|
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."
|
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."
|
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."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "Sua senha foi redefinida com sucesso."
|
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"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "Para acessar seu painel, você precisa entrar"
|
msgstr "Para acessar seu painel, você precisa entrar"
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Você deixou de seguir {}."
|
msgstr "Você deixou de seguir {}."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Você seguiu {}."
|
msgstr "Você seguiu {}."
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "Para se inscrever, você precisa entrar"
|
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"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "Para editar seu perfil, você precisa entrar"
|
msgstr "Para editar seu perfil, você precisa entrar"
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Seu perfil foi atualizado."
|
msgstr "Seu perfil foi atualizado."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Sua conta foi excluída."
|
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."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "Você não pode excluir a conta de outra pessoa."
|
msgstr "Você não pode excluir a conta de outra pessoa."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Criar sua conta"
|
||||||
msgstr "Os registros estão fechados nesta instância."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Criar uma conta"
|
||||||
msgstr "Sua conta foi criada. Agora você só precisa entrar para poder usá-la."
|
|
||||||
|
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"
|
msgid "Media upload"
|
||||||
msgstr "Envio de mídia"
|
msgstr "Envio de mídia"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Inscritos"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Inscrições"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "Inscrições de {0}"
|
msgstr "Inscrições de {0}"
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr "Confirmação"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Atualizar senha"
|
msgstr "Atualizar senha"
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr "Verifique sua caixa de entrada!"
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr "Enviamos para você um e-mail com um link para redefinir sua senha."
|
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"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Romanian\n"
|
"Language-Team: Romanian\n"
|
||||||
"Language: ro_RO\n"
|
"Language: ro_RO\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} a comentat pe articolul tău."
|
msgstr "{0} a comentat pe articolul tău."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} este abonat la tine."
|
msgstr "{0} este abonat la tine."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} i-a plăcut articolul tău."
|
msgstr "{0} i-a plăcut articolul tău."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} te-a menționat."
|
msgstr "{0} te-a menționat."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} impulsionat articolul tău."
|
msgstr "{0} impulsionat articolul tău."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "Avatarul lui {0}"
|
msgstr "Avatarul lui {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Opţional"
|
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"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Pentru a crea un nou blog, trebuie sa fii logat"
|
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."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Nu aveți permisiunea de a șterge acest 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."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Acest post nu a fost publicată încă."
|
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"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Pentru a scrie un post nou, trebuie să fii logat"
|
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."
|
msgid "You are not an author of this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Postare nouă"
|
msgstr "Postare nouă"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Editare {0}"
|
msgstr "Editare {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -245,44 +265,69 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "Parola dumneavoastră a fost resetată cu succes."
|
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"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Abonaţi"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Abonamente"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -843,9 +867,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+97
-76
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Russian\n"
|
"Language-Team: Russian\n"
|
||||||
"Language: ru_RU\n"
|
"Language: ru_RU\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
|
msgid "Someone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# src/template_utils.rs:107
|
||||||
msgid "{0} commented on your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr "{0} прокомментировал(а) Вашу статью."
|
msgstr "{0} прокомментировал(а) Вашу статью."
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
# src/template_utils.rs:108
|
||||||
msgid "{0} is subscribed to you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr "{0} подписан на вас."
|
msgstr "{0} подписан на вас."
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:109
|
||||||
msgid "{0} liked your article."
|
msgid "{0} liked your article."
|
||||||
msgstr "{0} понравилась ваша статья."
|
msgstr "{0} понравилась ваша статья."
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:110
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} mentioned you."
|
||||||
msgstr "{0} упомянул вас."
|
msgstr "{0} упомянул вас."
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# src/template_utils.rs:111
|
||||||
msgid "{0} boosted your article."
|
msgid "{0} boosted your article."
|
||||||
msgstr "{0} продвинули вашу статью."
|
msgstr "{0} продвинули вашу статью."
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "Ваша лента"
|
msgstr "Ваша лента"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "Локальная лента"
|
msgstr "Локальная лента"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "Объединенная лента"
|
msgstr "Объединенная лента"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "Аватар {0}"
|
msgstr "Аватар {0}"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "Предыдущая страница"
|
msgstr "Предыдущая страница"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "Следующая страница"
|
msgstr "Следующая страница"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "Не обязательно"
|
msgstr "Не обязательно"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr "Для создания нового блога необходимо войти в систему"
|
msgstr "Для создания нового блога необходимо войти в систему"
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr "Блог с таким именем уже существует."
|
msgstr "Блог с таким именем уже существует."
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr "Ваш блог был успешно создан!"
|
msgstr "Ваш блог был успешно создан!"
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr "Ваш блог был удален."
|
msgstr "Ваш блог был удален."
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr "Вы не можете удалить этот блог."
|
msgstr "Вы не можете удалить этот блог."
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr "Вы не можете редактировать этот блог."
|
msgstr "Вы не можете редактировать этот блог."
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr "Вы не можете использовать этот объект в качестве иконки блога."
|
msgstr "Вы не можете использовать этот объект в качестве иконки блога."
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr "Вы не можете использовать этот объект как баннер блога."
|
msgstr "Вы не можете использовать этот объект как баннер блога."
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr "Информация о вашем блоге обновлена."
|
msgstr "Информация о вашем блоге обновлена."
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr "Ваш комментарий опубликован."
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr "Ваш комментарий был удалён."
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr "Настройки экземпляра сохранены."
|
msgstr "Настройки экземпляра сохранены."
|
||||||
@@ -149,19 +169,19 @@ msgstr "Выполнено."
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr "Чтобы лайкнуть сообщением, вы должны войти в систему"
|
msgstr "Чтобы лайкнуть сообщением, вы должны войти в систему"
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr "Ваш файл был удалён."
|
msgstr "Ваш файл был удалён."
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr "У вас нет прав на удаление этого файла."
|
msgstr "У вас нет прав на удаление этого файла."
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr "Ваш аватар был обновлен."
|
msgstr "Ваш аватар был обновлен."
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr "Вы не можете использовать этот файл."
|
msgstr "Вы не можете использовать этот файл."
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr "Вы не можете использовать этот файл."
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr "Чтобы увидеть ваши уведомления, вы должны войти в систему"
|
msgstr "Чтобы увидеть ваши уведомления, вы должны войти в систему"
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr "Этот пост ещё не опубликован."
|
msgstr "Этот пост ещё не опубликован."
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr "Чтобы написать новое сообщение, необходимо войти в систему"
|
msgstr "Чтобы написать новое сообщение, необходимо войти в систему"
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr "Вы не являетесь автором этого блога."
|
msgstr "Вы не являетесь автором этого блога."
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "Новый пост"
|
msgstr "Новый пост"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "Редактировать {0}"
|
msgstr "Редактировать {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr "Вы не имеете прав на публикацию в этом блоге."
|
msgstr "Вы не имеете прав на публикацию в этом блоге."
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr "Ваша статья была обновлена."
|
msgstr "Ваша статья была обновлена."
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr "Ваша статья сохранена."
|
msgstr "Ваша статья сохранена."
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "Новая статья"
|
msgstr "Новая статья"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr "Вы не можете удалить эту статью."
|
msgstr "Вы не можете удалить эту статью."
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr "Ваша статья была удалена."
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr "Похоже, статья, которую вы пытаетесь удалить, не существует. Возможно она уже исчезла?"
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr "Не удалось получить достаточную информацию о вашей учетной записи. Пожалуйста, убедитесь, что ваше имя пользователя правильно."
|
msgstr "Не удалось получить достаточную информацию о вашей учетной записи. Пожалуйста, убедитесь, что ваше имя пользователя правильно."
|
||||||
|
|
||||||
@@ -245,45 +265,70 @@ msgstr "Перейдите по ссылке для сброса вашего п
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr "Ваш пароль был успешно сброшен."
|
msgstr "Ваш пароль был успешно сброшен."
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr "Для доступа к панели инструментов необходимо войти в систему"
|
msgstr "Для доступа к панели инструментов необходимо войти в систему"
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr "Вы больше не отслеживаете {}."
|
msgstr "Вы больше не отслеживаете {}."
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr "Теперь вы отслеживаете {}."
|
msgstr "Теперь вы отслеживаете {}."
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr "Чтобы подписаться на кого-то, необходимо войти в систему"
|
msgstr "Чтобы подписаться на кого-то, необходимо войти в систему"
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr "Для редактирования профиля необходимо войти в систему"
|
msgstr "Для редактирования профиля необходимо войти в систему"
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr "Ваш профиль был изменен."
|
msgstr "Ваш профиль был изменен."
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr "Ваша учетная запись удалена."
|
msgstr "Ваша учетная запись удалена."
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr "Вы не можете удалить чужую учетную запись."
|
msgstr "Вы не можете удалить чужую учетную запись."
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
msgstr "Создать аккаунт"
|
||||||
msgstr "Регистрации на данном экземпляре закрыты."
|
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
msgstr "Создать новый аккаунт"
|
||||||
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"
|
msgid "Media upload"
|
||||||
msgstr "Загрузка медиафайлов"
|
msgstr "Загрузка медиафайлов"
|
||||||
@@ -423,27 +468,6 @@ msgstr "Подписчики"
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr "Подписки"
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr "{0} подписок"
|
msgstr "{0} подписок"
|
||||||
|
|
||||||
@@ -845,9 +869,6 @@ msgstr "Подтверждение"
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr "Сменить пароль"
|
msgstr "Сменить пароль"
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr "Проверьте ваш почтовый ящик!"
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr "Мы отправили письмо на адрес, который вы нам дали, со ссылкой для сброса пароля."
|
msgstr "Мы отправили письмо на адрес, который вы нам дали, со ссылкой для сброса пароля."
|
||||||
|
|
||||||
|
|||||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Santali\n"
|
"Language-Team: Santali\n"
|
||||||
"Language: sat_IN\n"
|
"Language: sat_IN\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
msgid "{0} commented on your article."
|
msgid "Someone"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
|
||||||
msgid "{0} is subscribed to you."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:107
|
||||||
msgid "{0} liked your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:108
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# 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."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr "ᱟᱢᱟᱜ ᱯᱷᱤᱤᱰ"
|
msgstr "ᱟᱢᱟᱜ ᱯᱷᱤᱤᱰ"
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr "ᱞᱚᱠᱟᱞ ᱯᱷᱤᱤᱰ"
|
msgstr "ᱞᱚᱠᱟᱞ ᱯᱷᱤᱤᱰ"
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr "ᱯᱷᱮᱰᱟᱹᱨᱮᱮᱴᱰ ᱯᱷᱤᱤᱰ"
|
msgstr "ᱯᱷᱮᱰᱟᱹᱨᱮᱮᱴᱰ ᱯᱷᱤᱤᱰ"
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr "{0} ᱟᱹᱣᱛᱟᱨ ᱠᱚ"
|
msgstr "{0} ᱟᱹᱣᱛᱟᱨ ᱠᱚ"
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr "ᱢᱟᱲᱟᱝ ᱥᱟᱦᱴᱟ"
|
msgstr "ᱢᱟᱲᱟᱝ ᱥᱟᱦᱴᱟ"
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "ᱤᱱᱟᱹ ᱛᱟᱭᱚᱢ ᱥᱟᱦᱴᱟ"
|
msgstr "ᱤᱱᱟᱹ ᱛᱟᱭᱚᱢ ᱥᱟᱦᱴᱟ"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr "ᱚᱯᱥᱚᱱᱟᱞ"
|
msgstr "ᱚᱯᱥᱚᱱᱟᱞ"
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr "ᱦᱩᱭᱮᱱᱟ ᱾"
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr "ᱱᱟᱣᱟ ᱯᱚᱥᱴ"
|
msgstr "ᱱᱟᱣᱟ ᱯᱚᱥᱴ"
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr "ᱥᱟᱯᱲᱟᱣ {0}"
|
msgstr "ᱥᱟᱯᱲᱟᱣ {0}"
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr "ᱱᱟᱶᱟ ᱚᱱᱚᱞ"
|
msgstr "ᱱᱟᱶᱟ ᱚᱱᱚᱞ"
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -245,44 +265,69 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+98
-77
@@ -3,7 +3,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: plume\n"
|
"Project-Id-Version: plume\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-15 16:33-0700\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"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Sinhala\n"
|
"Language-Team: Sinhala\n"
|
||||||
"Language: si_LK\n"
|
"Language: si_LK\n"
|
||||||
@@ -18,86 +18,90 @@ msgstr ""
|
|||||||
"X-Crowdin-File-ID: 8\n"
|
"X-Crowdin-File-ID: 8\n"
|
||||||
|
|
||||||
# src/template_utils.rs:105
|
# src/template_utils.rs:105
|
||||||
msgid "{0} commented on your article."
|
msgid "Someone"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
# src/template_utils.rs:106
|
|
||||||
msgid "{0} is subscribed to you."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:107
|
# src/template_utils.rs:107
|
||||||
msgid "{0} liked your article."
|
msgid "{0} commented on your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:108
|
# src/template_utils.rs:108
|
||||||
msgid "{0} mentioned you."
|
msgid "{0} is subscribed to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:109
|
# 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."
|
msgid "{0} boosted your article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:116
|
# src/template_utils.rs:118
|
||||||
msgid "Your feed"
|
msgid "Your feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:117
|
# src/template_utils.rs:119
|
||||||
msgid "Local feed"
|
msgid "Local feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:118
|
# src/template_utils.rs:120
|
||||||
msgid "Federated feed"
|
msgid "Federated feed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:154
|
# src/template_utils.rs:156
|
||||||
msgid "{0}'s avatar"
|
msgid "{0}'s avatar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:198
|
# src/template_utils.rs:200
|
||||||
msgid "Previous page"
|
msgid "Previous page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/template_utils.rs:209
|
# src/template_utils.rs:211
|
||||||
msgid "Next page"
|
msgid "Next page"
|
||||||
msgstr "ඊළඟ පිටුව"
|
msgstr "ඊළඟ පිටුව"
|
||||||
|
|
||||||
# src/template_utils.rs:363
|
# src/template_utils.rs:365
|
||||||
msgid "Optional"
|
msgid "Optional"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:67
|
# src/routes/blogs.rs:68
|
||||||
msgid "To create a new blog, you need to be logged in"
|
msgid "To create a new blog, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:109
|
# src/routes/blogs.rs:110
|
||||||
msgid "A blog with the same name already exists."
|
msgid "A blog with the same name already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:147
|
# src/routes/blogs.rs:148
|
||||||
msgid "Your blog was successfully created!"
|
msgid "Your blog was successfully created!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:165
|
# src/routes/blogs.rs:166
|
||||||
msgid "Your blog was deleted."
|
msgid "Your blog was deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:173
|
# src/routes/blogs.rs:174
|
||||||
msgid "You are not allowed to delete this blog."
|
msgid "You are not allowed to delete this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:223
|
# src/routes/blogs.rs:224
|
||||||
msgid "You are not allowed to edit this blog."
|
msgid "You are not allowed to edit this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:279
|
# src/routes/blogs.rs:280
|
||||||
msgid "You can't use this media as a blog icon."
|
msgid "You can't use this media as a blog icon."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:297
|
# src/routes/blogs.rs:298
|
||||||
msgid "You can't use this media as a blog banner."
|
msgid "You can't use this media as a blog banner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/blogs.rs:331
|
# src/routes/blogs.rs:332
|
||||||
msgid "Your blog information have been updated."
|
msgid "Your blog information have been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -109,6 +113,22 @@ msgstr ""
|
|||||||
msgid "Your comment has been deleted."
|
msgid "Your comment has been deleted."
|
||||||
msgstr ""
|
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
|
# src/routes/instance.rs:117
|
||||||
msgid "Instance settings have been saved."
|
msgid "Instance settings have been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -149,19 +169,19 @@ msgstr ""
|
|||||||
msgid "To like a post, you need to be logged in"
|
msgid "To like a post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:158
|
# src/routes/medias.rs:153
|
||||||
msgid "Your media have been deleted."
|
msgid "Your media have been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:163
|
# src/routes/medias.rs:158
|
||||||
msgid "You are not allowed to delete this media."
|
msgid "You are not allowed to delete this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:180
|
# src/routes/medias.rs:175
|
||||||
msgid "Your avatar has been updated."
|
msgid "Your avatar has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/medias.rs:185
|
# src/routes/medias.rs:180
|
||||||
msgid "You are not allowed to use this media."
|
msgid "You are not allowed to use this media."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -169,55 +189,55 @@ msgstr ""
|
|||||||
msgid "To see your notifications, you need to be logged in"
|
msgid "To see your notifications, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:55
|
# src/routes/posts.rs:56
|
||||||
msgid "This post isn't published yet."
|
msgid "This post isn't published yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:125
|
# src/routes/posts.rs:126
|
||||||
msgid "To write a new post, you need to be logged in"
|
msgid "To write a new post, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:146
|
# src/routes/posts.rs:147
|
||||||
msgid "You are not an author of this blog."
|
msgid "You are not an author of this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:153
|
# src/routes/posts.rs:154
|
||||||
msgid "New post"
|
msgid "New post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:198
|
# src/routes/posts.rs:199
|
||||||
msgid "Edit {0}"
|
msgid "Edit {0}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:267
|
# src/routes/posts.rs:268
|
||||||
msgid "You are not allowed to publish on this blog."
|
msgid "You are not allowed to publish on this blog."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:367
|
# src/routes/posts.rs:368
|
||||||
msgid "Your article has been updated."
|
msgid "Your article has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:556
|
# src/routes/posts.rs:557
|
||||||
msgid "Your article has been saved."
|
msgid "Your article has been saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:563
|
# src/routes/posts.rs:564
|
||||||
msgid "New article"
|
msgid "New article"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:601
|
# src/routes/posts.rs:602
|
||||||
msgid "You are not allowed to delete this article."
|
msgid "You are not allowed to delete this article."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/posts.rs:625
|
# src/routes/posts.rs:626
|
||||||
msgid "Your article has been deleted."
|
msgid "Your article has been deleted."
|
||||||
msgstr ""
|
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?"
|
msgid "It looks like the article you tried to delete doesn't exist. Maybe it is already gone?"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't obtain enough information about your account. Please make sure your username is correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -245,44 +265,69 @@ msgstr ""
|
|||||||
msgid "Your password was successfully reset."
|
msgid "Your password was successfully reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:74
|
# src/routes/user.rs:87
|
||||||
msgid "To access your dashboard, you need to be logged in"
|
msgid "To access your dashboard, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:96
|
# src/routes/user.rs:109
|
||||||
msgid "You are no longer following {}."
|
msgid "You are no longer following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:113
|
# src/routes/user.rs:126
|
||||||
msgid "You are now following {}."
|
msgid "You are now following {}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:190
|
# src/routes/user.rs:203
|
||||||
msgid "To subscribe to someone, you need to be logged in"
|
msgid "To subscribe to someone, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:299
|
# src/routes/user.rs:323
|
||||||
msgid "To edit your profile, you need to be logged in"
|
msgid "To edit your profile, you need to be logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:345
|
# src/routes/user.rs:369
|
||||||
msgid "Your profile has been updated."
|
msgid "Your profile has been updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:373
|
# src/routes/user.rs:397
|
||||||
msgid "Your account has been deleted."
|
msgid "Your account has been deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:379
|
# src/routes/user.rs:403
|
||||||
msgid "You can't delete someone else's account."
|
msgid "You can't delete someone else's account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:463
|
msgid "Create your account"
|
||||||
msgid "Registrations are closed on this instance."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# src/routes/user.rs:486
|
msgid "Create an account"
|
||||||
msgid "Your account has been created. Now you just need to log in, before you can use it."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Media upload"
|
msgid "Media upload"
|
||||||
@@ -423,27 +468,6 @@ msgstr ""
|
|||||||
msgid "Subscriptions"
|
msgid "Subscriptions"
|
||||||
msgstr ""
|
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"
|
msgid "{0}'s subscriptions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -841,9 +865,6 @@ msgstr ""
|
|||||||
msgid "Update password"
|
msgid "Update password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check your inbox!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
msgid "We sent a mail to the address you gave us, with a link to reset your password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user