Localisation for conversation detail (#278)

This commit is contained in:
Sean Goldin 2023-01-22 10:36:57 -06:00 committed by GitHub
parent a20d259bb2
commit f4d5195f4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 1 deletions

View file

@ -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";

View file

@ -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";

View file

@ -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";

View file

@ -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";

View file

@ -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";

View file

@ -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 个参与者中发出";

View file

@ -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)