From fa7098c109226bad1da1fd1d384d1997fa8f6c37 Mon Sep 17 00:00:00 2001 From: lacatoire Date: Thu, 30 Apr 2026 09:44:28 +0200 Subject: [PATCH] [Sync EN] Change 'Adulto mayor' to 'Adulto' in match.xml --- language/control-structures/match.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/control-structures/match.xml b/language/control-structures/match.xml index fcaeee943..d1c81906b 100644 --- a/language/control-structures/match.xml +++ b/language/control-structures/match.xml @@ -1,5 +1,5 @@ - + @@ -66,7 +66,7 @@ $output = match (true) { $age < 2 => "Bebé", $age < 13 => "Niño", $age <= 19 => "Adolescente", - $age >= 40 => "Adulto mayor", + $age >= 40 => "Adulto", $age > 19 => "Adulto joven", };