From 4cff4892e887acff4431f8fe5d54583d35e36178 Mon Sep 17 00:00:00 2001 From: Gerhard Schlager Date: Mon, 15 Jun 2020 00:15:08 +0200 Subject: [PATCH] Locale checks were disabled by mistake --- lib/i18n/locale_file_checker.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/i18n/locale_file_checker.rb b/lib/i18n/locale_file_checker.rb index fb549387689..1f30f1ab66f 100644 --- a/lib/i18n/locale_file_checker.rb +++ b/lib/i18n/locale_file_checker.rb @@ -20,8 +20,8 @@ class LocaleFileChecker @locale_yaml = YAML.load_file(locale_path) @reference_yaml = YAML.load_file(reference_path) - # check_interpolation_keys - # check_plural_keys + check_interpolation_keys + check_plural_keys check_message_format end