Fix missing ; for 'you'

This commit is contained in:
Burak Kaan Köse
2025-02-16 16:33:02 +01:00
parent c312ff3faf
commit f54a39a549

View File

@@ -22,7 +22,7 @@ public class AccountContactViewModel: AccountContact
/// Provides a short name of the contact. /// Provides a short name of the contact.
/// <see cref="ShortDisplayName"/> or "You" /// <see cref="ShortDisplayName"/> or "You"
/// </summary> /// </summary>
public string ShortNameOrYou => IsMe ? Translator.AccountContactNameYou : ShortDisplayName; public string ShortNameOrYou => IsMe ? $"{Translator.AccountContactNameYou};" : ShortDisplayName;
/// <summary> /// <summary>
/// Short display name of the contact. /// Short display name of the contact.