chore: update empty description copy for spaces (#1968)
This commit is contained in:
parent
82ac5da135
commit
60fe4d122d
2 changed files with 5 additions and 2 deletions
|
|
@ -4826,5 +4826,6 @@
|
|||
"enableAutocorrectToolName": "Enable autocorrect",
|
||||
"enableAutocorrectDescription": "Use your keyboard's built-in autocorrect when typing messages",
|
||||
"ttsDisbledTitle": "Text-to-speech disabled",
|
||||
"ttsDisabledBody": "You can enable text-to-speech in your learning settings"
|
||||
"ttsDisabledBody": "You can enable text-to-speech in your learning settings",
|
||||
"noSpaceDescriptionYet": "No space description created yet."
|
||||
}
|
||||
|
|
@ -239,7 +239,9 @@ class PangeaChatDetailsView extends StatelessWidget {
|
|||
),
|
||||
child: SelectableLinkify(
|
||||
text: room.topic.isEmpty
|
||||
? L10n.of(context).noChatDescriptionYet
|
||||
? room.isSpace
|
||||
? L10n.of(context).noSpaceDescriptionYet
|
||||
: L10n.of(context).noChatDescriptionYet
|
||||
: room.topic,
|
||||
options: const LinkifyOptions(humanize: false),
|
||||
linkStyle: const TextStyle(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue