diff --git a/IceCubesApp/Resources/Localization/de.lproj/Localizable.strings b/IceCubesApp/Resources/Localization/de.lproj/Localizable.strings index 48d1dc52..8336403e 100644 --- a/IceCubesApp/Resources/Localization/de.lproj/Localizable.strings +++ b/IceCubesApp/Resources/Localization/de.lproj/Localizable.strings @@ -173,6 +173,7 @@ "conversations.error.message" = "Fehler beim Laden deiner Nachrichten"; "conversations.error.title" = "Ein Fehler ist aufgetreten"; "conversations.navigation-title" = "Direkte Nachrichten"; +"conversations.new.message.placeholder" = "Neue Nachricht"; // MARK: Package: DesignSystem "design.tag.n-posts-from-n-participants %lld %lld" = "%lld Posts von %lld Teilnehmer:innen"; diff --git a/IceCubesApp/Resources/Localization/en.lproj/Localizable.strings b/IceCubesApp/Resources/Localization/en.lproj/Localizable.strings index 4fa5f3f9..39451552 100644 --- a/IceCubesApp/Resources/Localization/en.lproj/Localizable.strings +++ b/IceCubesApp/Resources/Localization/en.lproj/Localizable.strings @@ -173,6 +173,7 @@ "conversations.error.message" = "Error while loading your messages"; "conversations.error.title" = "An error occurred"; "conversations.navigation-title" = "Direct Messages"; +"conversations.new.message.placeholder" = "New Message"; // MARK: Package: DesignSystem "design.tag.n-posts-from-n-participants %lld %lld" = "%lld posts from %lld participants"; diff --git a/IceCubesApp/Resources/Localization/es.lproj/Localizable.strings b/IceCubesApp/Resources/Localization/es.lproj/Localizable.strings index bb6f2c5a..9ed3af81 100644 --- a/IceCubesApp/Resources/Localization/es.lproj/Localizable.strings +++ b/IceCubesApp/Resources/Localization/es.lproj/Localizable.strings @@ -173,6 +173,7 @@ "conversations.error.message" = "Error cargando tus mensajes"; "conversations.error.title" = "Ha ocurrido un error"; "conversations.navigation-title" = "Mensajes directos"; +"conversations.new.message.placeholder" = "New Message"; // MARK: Package: DesignSystem "design.tag.n-posts-from-n-participants %lld %lld" = "%lld publicaciones de %lld participantes"; diff --git a/IceCubesApp/Resources/Localization/it.lproj/Localizable.strings b/IceCubesApp/Resources/Localization/it.lproj/Localizable.strings index 9eb7dc8c..2dd41058 100644 --- a/IceCubesApp/Resources/Localization/it.lproj/Localizable.strings +++ b/IceCubesApp/Resources/Localization/it.lproj/Localizable.strings @@ -173,6 +173,7 @@ "conversations.error.message" = "Errore durante il recupero dei tuoi messaggi"; "conversations.error.title" = "Si è verificato in errore"; "conversations.navigation-title" = "Messaggi diretti"; +"conversations.new.message.placeholder" = "New Message"; // MARK: Package: DesignSystem "design.tag.n-posts-from-n-participants %lld %lld" = "%lld messaggi da %lld partecipanti"; diff --git a/IceCubesApp/Resources/Localization/nl.lproj/Localizable.strings b/IceCubesApp/Resources/Localization/nl.lproj/Localizable.strings index c3df3ccf..0e371f2c 100644 --- a/IceCubesApp/Resources/Localization/nl.lproj/Localizable.strings +++ b/IceCubesApp/Resources/Localization/nl.lproj/Localizable.strings @@ -173,6 +173,7 @@ "conversations.error.message" = "Fout tijden het laden van je berichten"; "conversations.error.title" = "Er heeft zich een fout voorgedaan"; "conversations.navigation-title" = "Directe berichten"; +"conversations.new.message.placeholder" = "New Message"; // MARK: Package: DesignSystem "design.tag.n-posts-from-n-participants %lld %lld" = "%lld posts van %lld deelnemers"; diff --git a/IceCubesApp/Resources/Localization/zh-Hans.lproj/Localizable.strings b/IceCubesApp/Resources/Localization/zh-Hans.lproj/Localizable.strings index a8eb1ede..d50d87e9 100644 --- a/IceCubesApp/Resources/Localization/zh-Hans.lproj/Localizable.strings +++ b/IceCubesApp/Resources/Localization/zh-Hans.lproj/Localizable.strings @@ -173,6 +173,7 @@ "conversations.error.message" = "加载私信时出错"; "conversations.error.title" = "出错啦"; "conversations.navigation-title" = "私信"; +"conversations.new.message.placeholder" = "New Message"; // MARK: Package: DesignSystem "design.tag.n-posts-from-n-participants %lld %lld" = "%lld 条嘟文从 %lld 个参与者中发出"; diff --git a/Packages/Conversations/Sources/Conversations/Detail/ConversationDetailView.swift b/Packages/Conversations/Sources/Conversations/Detail/ConversationDetailView.swift index a2b7e548..487e365f 100644 --- a/Packages/Conversations/Sources/Conversations/Detail/ConversationDetailView.swift +++ b/Packages/Conversations/Sources/Conversations/Detail/ConversationDetailView.swift @@ -116,7 +116,7 @@ public struct ConversationDetailView: View { Image(systemName: "plus") } .padding(.bottom, 5) - TextField("New messge", text: $viewModel.newMessageText, axis: .vertical) + TextField("conversations.new.message.placeholder", text: $viewModel.newMessageText, axis: .vertical) .textFieldStyle(.roundedBorder) .focused($isMessageFieldFocused) .keyboardType(.default)