mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 18:08:40 +00:00
small text issues
This commit is contained in:
parent
89174a9c63
commit
6be7044a39
3 changed files with 5 additions and 5 deletions
|
|
@ -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.",
|
"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!",
|
"registerSubmitButton": "Jetzt registrieren!",
|
||||||
"newMessageTitle": "Neue Nachricht",
|
"newMessageTitle": "Neue Nachricht",
|
||||||
"chatsTitle": "Chats",
|
"chatsTapToSend": "Klicke, um dein erstes Bild zu teilen.",
|
||||||
"shareImageTitle": "Teilen mit",
|
"shareImageTitle": "Teilen mit",
|
||||||
"shareImageBestFriends": "Beste Freunde",
|
"shareImageBestFriends": "Beste Freunde",
|
||||||
"shareImagedEditorSendImage": "Senden",
|
"shareImagedEditorSendImage": "Senden",
|
||||||
|
|
@ -41,7 +41,7 @@
|
||||||
"chatListDetailInput": "Nachricht eingeben",
|
"chatListDetailInput": "Nachricht eingeben",
|
||||||
"messageSendState_Received": "Empfangen",
|
"messageSendState_Received": "Empfangen",
|
||||||
"messageSendState_Opened": "Geöffnet",
|
"messageSendState_Opened": "Geöffnet",
|
||||||
"messageSendState_Send": "Senden",
|
"messageSendState_Send": "Gesendet",
|
||||||
"messageSendState_Sending": "Wird gesendet",
|
"messageSendState_Sending": "Wird gesendet",
|
||||||
"messageSendState_TapToLoad": "Tippe zum Laden",
|
"messageSendState_TapToLoad": "Tippe zum Laden",
|
||||||
"messageSendState_Loading": "Herunterladen",
|
"messageSendState_Loading": "Herunterladen",
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
"onboardingWelcomeTitle": "Welcome to twonly!",
|
"onboardingWelcomeTitle": "Welcome to twonly!",
|
||||||
"onboardingWelcomeBody": "Experience a privacy friendly way to connect with friends through secure, spontaneous image sharing.",
|
"onboardingWelcomeBody": "Experience a privacy friendly way to connect with friends through secure, spontaneous image sharing.",
|
||||||
"onboardingE2eTitle": "End-to-End Encryption",
|
"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",
|
"onboardingFocusTitle": "Focus on sharing moments",
|
||||||
"onboardingFocusBody": "Say goodbye to addictive features! Our app was created for sharing moments, free from useless distractions or ads.",
|
"onboardingFocusBody": "Say goodbye to addictive features! Our app was created for sharing moments, free from useless distractions or ads.",
|
||||||
"onboardingSendTwonliesTitle": "Send twonlies",
|
"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).",
|
"registerUsernameLimits": "Username must be 4 to 12 characters long, consisting only of letters (a-z) and numbers (0-9).",
|
||||||
"registerSubmitButton": "Register now!",
|
"registerSubmitButton": "Register now!",
|
||||||
"newMessageTitle": "New message",
|
"newMessageTitle": "New message",
|
||||||
"chatsTitle": "Chats",
|
"chatsTapToSend": "Click to send your first image",
|
||||||
"shareImageTitle": "Share with",
|
"shareImageTitle": "Share with",
|
||||||
"shareImageBestFriends": "Best friends",
|
"shareImageBestFriends": "Best friends",
|
||||||
"shareImagedEditorSendImage": "Send",
|
"shareImagedEditorSendImage": "Send",
|
||||||
|
|
|
||||||
|
|
@ -183,7 +183,7 @@ class _UserListItem extends State<UserListItem> {
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
title: Text(widget.user.displayName),
|
title: Text(widget.user.displayName),
|
||||||
subtitle: (widget.lastMessage == null)
|
subtitle: (widget.lastMessage == null)
|
||||||
? Text("Tap to send your first image.")
|
? Text(context.lang.chatsTapToSend)
|
||||||
: Row(
|
: Row(
|
||||||
children: [
|
children: [
|
||||||
MessageSendStateIcon(widget.lastMessage!),
|
MessageSendStateIcon(widget.lastMessage!),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue