mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-25 17:51:01 +00:00
Localisation for conversation detail (#278)
This commit is contained in:
parent
a20d259bb2
commit
f4d5195f4c
7 changed files with 7 additions and 1 deletions
|
@ -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";
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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 个参与者中发出";
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue