From 429bec66f2a2c18d2453ab393b2a4066be32b424 Mon Sep 17 00:00:00 2001 From: Luca Bognolo Date: Tue, 9 Oct 2018 17:38:23 +0200 Subject: [PATCH] Fixed locales lang error on Heroku build platform Starting from heroku 16 stack the language packs are not included by default: https://elements.heroku.com/buildpacks/heroku/heroku-buildpack-locale Signed-off-by: Luca Bognolo --- .locales | 9 +++++++++ app.json | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 .locales diff --git a/.locales b/.locales new file mode 100644 index 0000000000..c7badfc286 --- /dev/null +++ b/.locales @@ -0,0 +1,9 @@ +en_US +de_DE +fr_FR +it_IT +nl_NL +pl_PL +pt_BR +ru_RU +tr_TR diff --git a/app.json b/app.json index 82677845eb..366ce7bf04 100644 --- a/app.json +++ b/app.json @@ -51,6 +51,9 @@ "buildpacks": [ { "url": "heroku/php" + }, + { + "url": "https://github.com/heroku/heroku-buildpack-locale" } ], "env": {