small text issues

This commit is contained in:
otsmr 2025-02-10 20:25:04 +01:00
parent 89174a9c63
commit 6be7044a39
3 changed files with 5 additions and 5 deletions

View file

@ -22,7 +22,7 @@
"registerUsernameLimits": "Der Benutzername muss 4 bis 12 Zeichen lang sein und darf nur aus Buchstaben (a-z) und Zahlen (0-9) bestehen.",
"registerSubmitButton": "Jetzt registrieren!",
"newMessageTitle": "Neue Nachricht",
"chatsTitle": "Chats",
"chatsTapToSend": "Klicke, um dein erstes Bild zu teilen.",
"shareImageTitle": "Teilen mit",
"shareImageBestFriends": "Beste Freunde",
"shareImagedEditorSendImage": "Senden",
@ -41,7 +41,7 @@
"chatListDetailInput": "Nachricht eingeben",
"messageSendState_Received": "Empfangen",
"messageSendState_Opened": "Geöffnet",
"messageSendState_Send": "Senden",
"messageSendState_Send": "Gesendet",
"messageSendState_Sending": "Wird gesendet",
"messageSendState_TapToLoad": "Tippe zum Laden",
"messageSendState_Loading": "Herunterladen",

View file

@ -5,7 +5,7 @@
"onboardingWelcomeTitle": "Welcome to twonly!",
"onboardingWelcomeBody": "Experience a privacy friendly way to connect with friends through secure, spontaneous image sharing.",
"onboardingE2eTitle": "End-to-End Encryption",
"onboardingE2eBody": "Your privacy matters! In fact, twonly was only created because there is no secure alternative. Enjoy peace of mind with end-to-end encryption that ensures only you and your friends can see your pictures.",
"onboardingE2eBody": "Your privacy matters! In fact, twonly was created because there is no secure alternative. Enjoy peace of mind with end-to-end encryption that ensures only you and your friends can see your pictures.",
"onboardingFocusTitle": "Focus on sharing moments",
"onboardingFocusBody": "Say goodbye to addictive features! Our app was created for sharing moments, free from useless distractions or ads.",
"onboardingSendTwonliesTitle": "Send twonlies",
@ -22,7 +22,7 @@
"registerUsernameLimits": "Username must be 4 to 12 characters long, consisting only of letters (a-z) and numbers (0-9).",
"registerSubmitButton": "Register now!",
"newMessageTitle": "New message",
"chatsTitle": "Chats",
"chatsTapToSend": "Click to send your first image",
"shareImageTitle": "Share with",
"shareImageBestFriends": "Best friends",
"shareImagedEditorSendImage": "Send",

View file

@ -183,7 +183,7 @@ class _UserListItem extends State<UserListItem> {
child: ListTile(
title: Text(widget.user.displayName),
subtitle: (widget.lastMessage == null)
? Text("Tap to send your first image.")
? Text(context.lang.chatsTapToSend)
: Row(
children: [
MessageSendStateIcon(widget.lastMessage!),