From f0854e03062dee2133249540729b01d4a8ab9d30 Mon Sep 17 00:00:00 2001 From: HylianFreddy <82058772+HylianFreddy@users.noreply.github.com> Date: Tue, 14 May 2024 21:29:41 +0200 Subject: [PATCH] Add translations for aquariumText --- source/custom_messages.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/source/custom_messages.cpp b/source/custom_messages.cpp index 182da493..556226b0 100644 --- a/source/custom_messages.cpp +++ b/source/custom_messages.cpp @@ -1084,11 +1084,12 @@ void CreateAlwaysIncludedMessages() { } if (Settings::FishingHints) { - Text aquariumText = Text{ /*english*/ "You can have this if you catch a fish to put in the aquarium.", - /*french */ "", - /*spanish*/ "", - /*italian*/ "Puoi avere questo se catturi un pesce da mettere nell'acquario.", - /*german */ "" }; + Text aquariumText = + Text{ /*english*/ "You can have this if you catch a fish to put in the aquarium.", + /*french */ "Tu peux avoir ce qu'il y a dans cet aquarium si tu pêches un poisson pour le remplacer.", + /*spanish*/ "Puedes tener esto si pescas un pez para ponerlo en el acuario.", + /*italian*/ "Puoi avere questo se catturi un pesce da mettere nell'acquario.", + /*german */ "Das kannst du haben, wenn du einen Fisch für das Aquarium fängst." }; CreateMessageFromTextObject(0x40AE, 0, 2, 3, AddColorsAndFormat(aquariumText, {})); } }