From 285d84002358de945698e513342c1876933d1ce5 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Fri, 15 May 2020 19:03:23 +0000 Subject: [PATCH] Update lib/views/chat.dart, lib/l10n/intl_de.arb files --- lib/l10n/intl_de.arb | 12 ++++++------ lib/views/chat.dart | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/l10n/intl_de.arb b/lib/l10n/intl_de.arb index 8abe67c..a7003f1 100644 --- a/lib/l10n/intl_de.arb +++ b/lib/l10n/intl_de.arb @@ -325,7 +325,7 @@ "type": "text", "placeholders": {} }, - "countParticipants": "{count} Teilnehmer", + "countParticipants": "{count} Teilnehmer*innen", "@countParticipants": { "type": "text", "placeholders": { @@ -719,7 +719,7 @@ "type": "text", "placeholders": {} }, - "loadCountMoreParticipants": "{count} weitere Teilnehmer laden", + "loadCountMoreParticipants": "{count} weitere Teilnehmer*innen laden", "@loadCountMoreParticipants": { "type": "text", "placeholders": { @@ -753,7 +753,7 @@ "type": "text", "placeholders": {} }, - "Message will be removed for all participants": "Nachricht wird für alle Teilnehmer entfernt", + "Message will be removed for all participants": "Nachricht wird für alle Teilnehmer*innen entfernt", "@Message will be removed for all participants": { "type": "text", "placeholders": {} @@ -1292,7 +1292,7 @@ "type": "text", "placeholders": {} }, - "Visible for all participants": "Sichtbar für alle Teilnehmer", + "Visible for all participants": "Sichtbar für alle Teilnehmer*innen", "@Visible for all participants": { "type": "text", "placeholders": {} @@ -1357,7 +1357,7 @@ "type": "text", "placeholders": {} }, - "You are no longer participating in this chat": "Du bist kein Teilnehmer mehr in diesem Chat", + "You are no longer participating in this chat": "Du bist kein Mitglied mehr in diesem Chat", "@You are no longer participating in this chat": { "type": "text", "placeholders": {} @@ -1377,4 +1377,4 @@ "type": "text", "placeholders": {} } -} \ No newline at end of file +} diff --git a/lib/views/chat.dart b/lib/views/chat.dart index 977ad9b..6aa65f0 100644 --- a/lib/views/chat.dart +++ b/lib/views/chat.dart @@ -395,10 +395,10 @@ class _ChatState extends State<_Chat> { ChatDetails(room), ), ), - title: Text(room.getLocalizedDisplayname(L10n.of(context))), + title: Text(room.getLocalizedDisplayname(L10n.of(context)),maxLines: 1), subtitle: typingText.isEmpty ? Text( - room.getLocalizedStatus(context), + room.getLocalizedStatus(context),maxLines: 1, ) : Row( children: [ @@ -407,7 +407,7 @@ class _ChatState extends State<_Chat> { size: 13), SizedBox(width: 4), Text( - typingText, + typingText,maxLines: 1, style: TextStyle( color: Theme.of(context).primaryColor, fontStyle: FontStyle.italic, @@ -488,7 +488,7 @@ class _ChatState extends State<_Chat> { 0, (MediaQuery.of(context).size.width - AdaptivePageLayout.defaultMinWidth * - 2) / + 3) / 2), ), reverse: true,