Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (4)
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -8,6 +8,7 @@ const data = JSON.parse(text);
function recurse(obj: { [key: string]: any }) {
for (let key of Object.keys(obj)) {
if (key === 'dayjs') return;
if (typeof obj[key] === 'object') {
recurse(obj[key]);
} else {
......
......@@ -7,7 +7,8 @@
"loading": "Ladevorgang…",
"on": "An",
"off": "Aus",
"disabled": "Deaktiviert"
"disabled": "Deaktiviert",
"unavailable": "Nicht verfügbar"
},
"login": {
"title": "Login",
......@@ -107,7 +108,9 @@
"failed_load": "Konnte Nachricht nicht laden.",
"no_sending": "Du hast nicht die nötige Berechtigung dazu, Nachrichten in diesem Kanal zu senden.",
"blocked_messages": "{{count}} blockierte Nachrichten",
"blocked_user": "Blockierter Nutzer"
"blocked_user": "Blockierter Nutzer",
"sent_file": "Anhang",
"sent_multiple_files": "Anhänge"
},
"voice": {
"unmute": "Stummschaltung aufheben",
......@@ -425,7 +428,8 @@
"title": "Profil",
"edit_background": "Hintergrund ändern",
"custom_background": "Profilhintergrund",
"profile_picture": "Profilbild"
"profile_picture": "Profilbild",
"edit_profile": "Profil bearbeiten"
},
"sync": {
"title": "Synchronisation",
......
......@@ -114,7 +114,9 @@
"failed_load": "Mesaj yüklenemedi.",
"no_sending": "Bu kanalda mesaj gönderme izniniz yok.",
"blocked_messages": "{{count}} engellenen mesaj",
"blocked_user": "Engellenen Kullanıcı"
"blocked_user": "Engellenen Kullanıcı",
"sent_file": "Bir ek gönderildi",
"sent_multiple_files": "Birden fazla ek gönderildi"
},
"notifications": {
"default": "Varsayılanı Kullan",
......@@ -269,7 +271,8 @@
"placeholder": "Kendiniz hakkında bir şeyler yazın…",
"custom_background": "Özel Arka Plan",
"edit_background": "Arka Planı Düzenle",
"profile_picture": "Profil Resmi"
"profile_picture": "Profil Resmi",
"edit_profile": "Profili Düzenle"
},
"sync": {
"title": "Senkronizasyon",
......@@ -489,7 +492,8 @@
"loading": "Yükleniyor…",
"on": "Açık",
"off": "Kapalı",
"disabled": "Devre dışı"
"disabled": "Devre dışı",
"unavailable": "Kullanım dışı"
},
"login": {
"title": "Giriş Yap",
......@@ -628,7 +632,7 @@
},
"UploadFiles": {
"t": "Dosyaları yükle",
"d": "Üyelerin metin kanallarında dosya yüklemesine izin verir."
"d": "Üyelerin metin kanallarına dosya yüklemesine izin verir."
}
},
"server": {
......