~vpzom/lotide

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
2

[PATCH 0/2] German translation

Details
Message ID
<20201223213706.18079-1-mail@beyermatthias.de>
DKIM signature
missing
Download raw message
Hi,

found this project is missing german translations, so here they are!

Best and merry christmas,
Matthias

Matthias Beyer (2):
  Add german translation
  Include german translation file in LANG_MAP

 res/lang/de.ftl | 36 ++++++++++++++++++++++++++++++++++++
 src/main.rs     |  1 +
 2 files changed, 37 insertions(+)
 create mode 100644 res/lang/de.ftl

-- 
2.29.2

[PATCH 1/2] Add german translation

Details
Message ID
<20201223213706.18079-2-mail@beyermatthias.de>
In-Reply-To
<20201223213706.18079-1-mail@beyermatthias.de> (view parent)
DKIM signature
missing
Download raw message
Patch: +36 -0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
---
 res/lang/de.ftl | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 res/lang/de.ftl

diff --git a/res/lang/de.ftl b/res/lang/de.ftl
new file mode 100644
index 0000000..6511494
--- /dev/null
+++ b/res/lang/de.ftl
@@ -0,0 +1,36 @@
comment_content_conflict = Genau eines von content_markdown oder content_text muss spezifiziert sein
comment_empty = Kommentar darf nicht leer sein
comment_not_yours = Das ist nicht dein Kommentar
community_edit_denied = Du bist nicht authorisiert diese Community zu modifizieren
community_moderators_not_local = Community-Moderatoren können nur für lokale Communities gelistet werden
community_name_disallowed_chars = Unerlaubte Zeichen in Community-Name
email_content_forgot_password = Hi { $username }, wenn du einen Passwort-Reset von lotide angefragt hast, nutze diesen Code: { $key }
email_not_configured = Email ist nicht konfiguriert auf diesem Server
media_upload_not_configured = Upload von Medien ist nicht konfiguriert auf diesem Server
media_upload_not_image = Upload von Medien ist nur für Bilder verfügbar
missing_content_type = Fehlender Content-Type
moderators_only_local = Nur lokale Nutzer können Community-Moderatoren sein
must_be_moderator = Du must ein Community-Moderator sein um diese Aktion auszuführen
name_in_use = Der Name ist bereits vergeben
no_password = Kein passwort für diesen Nutzer gesetzt
no_such_comment = Kommentar nicht verfügbar
no_such_community = Community nicht verfügbar
no_such_forgot_password_key = Passwort-Reset-Key nicht verfügbar oder abgelaufen
no_such_local_user_by_email = Kein lokaler Nutzer für diese Emailadresse gefunden
no_such_local_user_by_name = Kein lokaler Nutzer mit diesem Namen gefunden
no_such_post = Beitrag existiert nicht
no_such_user = User existiert nicht
not_admin = Du bist kein Seitenadministrator
password_incorrect = Password nicht korrekt
post_content_conflict = content_markdown und content_text schließen einander aus
post_href_invalid = URL ist nicht valide
post_needs_content = Beitrag muss entweder eine href, content_text, oder content_markdown beinhalten
post_not_in_community = Dieser Beitrag ist nicht in dieser Community
post_not_yours = Dies ist nicht dein Beitrag
root = lotide läuft. lotide selbst hat kein Frontend, du musst eines seperat starten.
sort_relevant_not_search = Sortierung nach Relevanz ist beim Suchen nicht erlaubtSorting by relevance is only allowed when searching
user_email_invalid = Emailadresse ist nicht valide
user_name_disallowed_chars = Nutzername beinhaltet unerlaubte Zeichen
user_no_avatar = Dieser Nutzer hat keinen Avatar
user_suspended_error = Dieser Account wurde gesperrt

-- 
2.29.2

[PATCH 2/2] Include german translation file in LANG_MAP

Details
Message ID
<20201223213706.18079-3-mail@beyermatthias.de>
In-Reply-To
<20201223213706.18079-1-mail@beyermatthias.de> (view parent)
DKIM signature
missing
Download raw message
Patch: +1 -0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
---
 src/main.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main.rs b/src/main.rs
index b149e19..913104d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -516,6 +516,7 @@ lazy_static::lazy_static! {
    static ref LANG_MAP: HashMap<unic_langid::LanguageIdentifier, fluent::FluentResource> = {
        let mut result = HashMap::new();

        result.insert(unic_langid::langid!("de"), fluent::FluentResource::try_new(include_str!("../res/lang/de.ftl").to_owned()).expect("Failed to parse translation"));
        result.insert(unic_langid::langid!("en"), fluent::FluentResource::try_new(include_str!("../res/lang/en.ftl").to_owned()).expect("Failed to parse translation"));
        result.insert(unic_langid::langid!("eo"), fluent::FluentResource::try_new(include_str!("../res/lang/eo.ftl").to_owned()).expect("Failed to parse translation"));
        result.insert(unic_langid::langid!("fr"), fluent::FluentResource::try_new(include_str!("../res/lang/fr.ftl").to_owned()).expect("Failed to parse translation"));
-- 
2.29.2
Reply to thread Export thread (mbox)