From 97d23743ee247da559efe9113e45acf483162bc0 Mon Sep 17 00:00:00 2001 From: albanobattistella <34811668+albanobattistella@users.noreply.github.com> Date: Wed, 17 Apr 2024 18:46:27 +0200 Subject: [PATCH 1/2] Update Localized.yml --- Tests/PluginTests/Localized.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Tests/PluginTests/Localized.yml b/Tests/PluginTests/Localized.yml index 7d4b005..1bbbb34 100644 --- a/Tests/PluginTests/Localized.yml +++ b/Tests/PluginTests/Localized.yml @@ -4,12 +4,14 @@ hello(name): en: Hello, (name)! de: Hallo, (name)! fr: Salut, (name)! + it: Ciao, (name)! pt_BR: Olá, (name)! house: en: House de: Haus fr: Maison + it: Casa houses(count): en(count == "1"): There is one house. @@ -18,10 +20,14 @@ houses(count): de(count == "1"): Es gibt ein Haus. de(count == "0"): Es gibt kein Haus. de: Es gibt (count) Häuser. + it:(count == "1"): C'è una casa. + it:(count == "0"): Non c'è nessuna casa. + it: Ci sono (count) case. # There is no French translation for this phrase. # The default language, in this case English, will be used. helloPair(name1, name2): en: Hello, (name1) and (name2)! de: Hallo, (name1) und (name2)! - fr: Salut, (name1) et (name2)! \ No newline at end of file + fr: Salut, (name1) et (name2)! + it: Ciao, (name1) e (name2)! -- 2.36.6 From ae0914b7763ff7196c878c74bc28996b0441b730 Mon Sep 17 00:00:00 2001 From: david-swift Date: Wed, 17 Apr 2024 20:40:08 +0200 Subject: [PATCH 2/2] Fix Italian translation --- Tests/PluginTests/Localized.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/PluginTests/Localized.yml b/Tests/PluginTests/Localized.yml index 1bbbb34..e1949c3 100644 --- a/Tests/PluginTests/Localized.yml +++ b/Tests/PluginTests/Localized.yml @@ -20,9 +20,9 @@ houses(count): de(count == "1"): Es gibt ein Haus. de(count == "0"): Es gibt kein Haus. de: Es gibt (count) Häuser. - it:(count == "1"): C'è una casa. - it:(count == "0"): Non c'è nessuna casa. - it: Ci sono (count) case. + it(count == "1"): C'è una casa. + it(count == "0"): Non c'è nessuna casa. + it: Ci sono (count) case. # There is no French translation for this phrase. # The default language, in this case English, will be used. -- 2.36.6