From 585b8864323a29ea5027cafa1cadec121a764dc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20R=C3=B3zga?= <53080024+AndrzejRozga@users.noreply.github.com> Date: Sat, 18 Feb 2023 21:25:17 +0100 Subject: [PATCH 1/4] Polish localization update (#936) --- .../Localization/pl.lproj/Localizable.strings | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/IceCubesApp/Resources/Localization/pl.lproj/Localizable.strings b/IceCubesApp/Resources/Localization/pl.lproj/Localizable.strings index 5b4ea028..63c9eb47 100644 --- a/IceCubesApp/Resources/Localization/pl.lproj/Localizable.strings +++ b/IceCubesApp/Resources/Localization/pl.lproj/Localizable.strings @@ -261,11 +261,11 @@ "account.joined" = "Dołączył(a)"; "account.action.logout" = "Wyloguj się"; -"account.relation.note.edit" = "Edit Note"; -"account.relation.note.edit.placeholder" = "Enter Note text"; -"account.relation.note.edit.error.save.message" = "Error while saving your note, please try again."; -"account.relation.note.edit.error.save.title" = "Error while saving your note"; -"account.relation.note.label" = "Note:"; +"account.relation.note.edit" = "Edytuj notatkę"; +"account.relation.note.edit.placeholder" = "Wprowadź treść notatki"; +"account.relation.note.edit.error.save.message" = "Błąd podczas zapisywania notatki, spróbuj ponownie."; +"account.relation.note.edit.error.save.title" = "Błąd podczas zapisywania notatki"; +"account.relation.note.label" = "Notatka:"; // MARK: Package: Conversations "conversations.action.delete" = "Usuń"; From 6f245263e96d578156ceb19a35fdd226c6c3ee91 Mon Sep 17 00:00:00 2001 From: Ico Davids Date: Sat, 18 Feb 2023 21:25:26 +0100 Subject: [PATCH 2/4] Updates to Dutch localization: (#935) --- .../Localization/nl.lproj/Localizable.strings | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/IceCubesApp/Resources/Localization/nl.lproj/Localizable.strings b/IceCubesApp/Resources/Localization/nl.lproj/Localizable.strings index 3a004cde..f82e7ac8 100644 --- a/IceCubesApp/Resources/Localization/nl.lproj/Localizable.strings +++ b/IceCubesApp/Resources/Localization/nl.lproj/Localizable.strings @@ -261,11 +261,11 @@ "account.action.logout" = "Log uit"; "account.action.edit-filters" = "Bewerk filters"; -"account.relation.note.edit" = "Edit Note"; -"account.relation.note.edit.placeholder" = "Enter Note text"; -"account.relation.note.edit.error.save.message" = "Error while saving your note, please try again."; -"account.relation.note.edit.error.save.title" = "Error while saving your note"; -"account.relation.note.label" = "Note:"; +"account.relation.note.edit" = "Bewerk notitie"; +"account.relation.note.edit.placeholder" = "Voer notitietekst in"; +"account.relation.note.edit.error.save.message" = "Er is een fout opgetreden tijdens het bewaren van de notitie, probeer het nogmaals."; +"account.relation.note.edit.error.save.title" = "Fout tijdens bewaren notitie"; +"account.relation.note.label" = "Notitie:"; // MARK: Package: Conversations "conversations.action.delete" = "Verwijder"; From 9f4b1f6874fbac1d6e9f22606e9b8a7ba28e94dc Mon Sep 17 00:00:00 2001 From: Cthulhux Date: Sat, 18 Feb 2023 21:25:34 +0100 Subject: [PATCH 3/4] de: translated the notes feature (#933) --- .../Localization/de.lproj/Localizable.strings | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/IceCubesApp/Resources/Localization/de.lproj/Localizable.strings b/IceCubesApp/Resources/Localization/de.lproj/Localizable.strings index b771db67..38a7fcef 100644 --- a/IceCubesApp/Resources/Localization/de.lproj/Localizable.strings +++ b/IceCubesApp/Resources/Localization/de.lproj/Localizable.strings @@ -264,11 +264,11 @@ "account.action.logout" = "Abmelden"; "account.action.edit-filters" = "Filter bearbeiten"; -"account.relation.note.edit" = "Edit Note"; -"account.relation.note.edit.placeholder" = "Enter Note text"; -"account.relation.note.edit.error.save.message" = "Error while saving your note, please try again."; -"account.relation.note.edit.error.save.title" = "Error while saving your note"; -"account.relation.note.label" = "Note:"; +"account.relation.note.edit" = "Notiz bearbeiten"; +"account.relation.note.edit.placeholder" = "Gib den Notiztext ein"; +"account.relation.note.edit.error.save.message" = "Fehler beim Speichern der Notiz, versuch es bitte erneut."; +"account.relation.note.edit.error.save.title" = "Fehler beim Speichern der Notiz"; +"account.relation.note.label" = "Notiz:"; // MARK: Package: Conversations "conversations.action.delete" = "Löschen"; From 274d36eec7a90aa9c07e0871a027a7453a2df964 Mon Sep 17 00:00:00 2001 From: Sean Goldin Date: Sat, 18 Feb 2023 14:25:45 -0600 Subject: [PATCH 4/4] Fix 1 line note in centre (#938) --- Packages/Account/Sources/Account/AccountDetailHeaderView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Packages/Account/Sources/Account/AccountDetailHeaderView.swift b/Packages/Account/Sources/Account/AccountDetailHeaderView.swift index b61268fc..76cae584 100644 --- a/Packages/Account/Sources/Account/AccountDetailHeaderView.swift +++ b/Packages/Account/Sources/Account/AccountDetailHeaderView.swift @@ -206,7 +206,7 @@ struct AccountDetailHeaderView: View { Text("account.relation.note.label") .foregroundColor(.gray) Text(note) - .frame(maxWidth: .infinity) + .frame(maxWidth: .infinity, alignment: .leading) .padding(8) .background(theme.secondaryBackgroundColor) .cornerRadius(4)