From 7512f3a3e0a5cabb233e990d67e6138dfcdcd4fa Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Sun, 27 Oct 2019 20:45:33 +0900 Subject: Change message of public timeline for local only (#12224) --- config/locales/en.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'config') diff --git a/config/locales/en.yml b/config/locales/en.yml index 6fc191e1a..38fe1a382 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -11,6 +11,7 @@ en: apps: Mobile apps apps_platforms: Use Mastodon from iOS, Android and other platforms browse_directory: Browse a profile directory and filter by interests + browse_local_posts: Browse a live stream of public posts from this server browse_public_posts: Browse a live stream of public posts on Mastodon contact: Contact contact_missing: Not set -- cgit From 42dff261d67b7381b641e8b8d21eb63e6d11fb6d Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Thu, 7 Nov 2019 13:16:10 +0100 Subject: Disable minimization in test environment --- config/webpack/test.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'config') diff --git a/config/webpack/test.js b/config/webpack/test.js index 8b56eb92f..f91244587 100644 --- a/config/webpack/test.js +++ b/config/webpack/test.js @@ -5,4 +5,7 @@ const sharedConfig = require('./shared.js'); module.exports = merge(sharedConfig, { mode: 'development', + optimization: { + minimize: false, + }, }); -- cgit