From 314c58b8787788946919b7fcafb2edf331e86fe3 Mon Sep 17 00:00:00 2001 From: David Cook Date: Mon, 10 Feb 2025 14:03:13 +1100 Subject: [PATCH] Rename en_TEST to en_TST Because it doesn't fit in db field spree_users.local with limit: 6. We could extend the field but it seemed silly because it's only used in test/dev environments. --- .env.development | 2 +- .env.test | 2 +- config/locales/{en_TEST.yml => en_TST.yml} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename config/locales/{en_TEST.yml => en_TST.yml} (100%) diff --git a/.env.development b/.env.development index 6f1646ef9a..a842e08dd9 100644 --- a/.env.development +++ b/.env.development @@ -8,7 +8,7 @@ # Locale for translation. Using a locale other than `en` tests the # successful fallback to `en`. You will also see up-to-date text used # in production -LOCALE="en_TEST" +LOCALE="en_TST" VERBOSE_QUERY_LOGS=true diff --git a/.env.test b/.env.test index a9c911b48e..4cd76d6f0a 100644 --- a/.env.test +++ b/.env.test @@ -2,7 +2,7 @@ # Override locally with `.env.test.local` # Locale for translation. -LOCALE="en_TEST" +LOCALE="en_TST" OFN_REDIS_JOBS_URL="redis://localhost:6379/2" diff --git a/config/locales/en_TEST.yml b/config/locales/en_TST.yml similarity index 100% rename from config/locales/en_TEST.yml rename to config/locales/en_TST.yml