diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-06-04 20:40:19 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-06-04 20:40:19 +0200 |
commit | 02b56c7e1a0fa561af9a85f765ec22eee3053561 (patch) | |
tree | ba851bcad4bf9f657a0c2414ac3befdea9acea15 /config | |
parent | 58946fef3c05342289c1c50132996fc4fd01cf68 (diff) | |
parent | 48fee1a800a262ce26171d724c15738d083eb6d6 (diff) |
Merge remote-tracking branch 'upstream/master' into glitch-soc/merge-upstream
Diffstat (limited to 'config')
-rw-r--r-- | config/locales/ko.yml | 1 | ||||
-rw-r--r-- | config/locales/simple_form.ko.yml | 2 | ||||
-rw-r--r-- | config/webpack/production.js | 15 |
3 files changed, 6 insertions, 12 deletions
diff --git a/config/locales/ko.yml b/config/locales/ko.yml index 6334ad30b..820b8e515 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -269,6 +269,7 @@ ko: created_msg: 도메인 차단 처리를 완료했습니다 destroyed_msg: 도메인 차단이 해제되었습니다 domain: 도메인 + existing_domain_block_html: 이미 %{name}에 대한 더 강력한 제한이 걸려 있습니다, <a href="%{unblock_url}">차단 해제</a>를 먼저 해야 합니다. new: create: 차단 추가 hint: 도메인 차단은 내부 데이터베이스에 계정이 생성되는 것까지는 막을 수 없지만, 그 도메인에서 생성된 계정에 자동적으로 특정한 모더레이션을 적용하게 할 수 있습니다. diff --git a/config/locales/simple_form.ko.yml b/config/locales/simple_form.ko.yml index 9c5fc413d..ccb7604e1 100644 --- a/config/locales/simple_form.ko.yml +++ b/config/locales/simple_form.ko.yml @@ -26,6 +26,7 @@ ko: password: 최소 8글자 phrase: 툿 내용이나 CW 내용 안에서 대소문자 구분 없이 매칭 됩니다 scopes: 애플리케이션에 허용할 API들입니다. 최상위 스코프를 선택하면 개별적인 것은 선택하지 않아도 됩니다. + setting_advanced_layout: 고급 UI는 여러 개의 커스텀 가능한 컬럼을 제공합니다. setting_aggregate_reblogs: 내가 부스트 했던 툿은 새로 부스트 되어도 보여주지 않습니다 setting_default_language: 작성한 툿의 언어는 자동으로 인식할 수 있지만, 언제나 정확한 건 아닙니다 setting_display_media_default: 민감함으로 설정 된 미디어 가리기 @@ -90,6 +91,7 @@ ko: otp_attempt: 2단계 인증 코드 password: 암호 phrase: 키워드 또는 문장 + setting_advanced_layout: 고급 웹 UI 활성화 setting_aggregate_reblogs: 타임라인의 부스트를 그룹화 setting_auto_play_gif: 애니메이션 GIF를 자동 재생 setting_boost_modal: 부스트 전 확인 창을 표시 diff --git a/config/webpack/production.js b/config/webpack/production.js index c829ff6f1..bceffaf5c 100644 --- a/config/webpack/production.js +++ b/config/webpack/production.js @@ -5,7 +5,7 @@ const { URL } = require('url'); const merge = require('webpack-merge'); const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer'); const OfflinePlugin = require('offline-plugin'); -const UglifyJsPlugin = require('uglifyjs-webpack-plugin'); +const TerserPlugin = require('terser-webpack-plugin'); const CompressionPlugin = require('compression-webpack-plugin'); const { output } = require('./configuration'); const sharedConfig = require('./shared'); @@ -33,20 +33,10 @@ module.exports = merge(sharedConfig, { optimization: { minimize: true, minimizer: [ - new UglifyJsPlugin({ + new TerserPlugin({ cache: true, parallel: true, sourceMap: true, - - uglifyOptions: { - compress: { - warnings: false, - }, - - output: { - comments: false, - }, - }, }), ], }, @@ -64,6 +54,7 @@ module.exports = merge(sharedConfig, { }), new OfflinePlugin({ publicPath: output.publicPath, // sw.js must be served from the root to avoid scope issues + safeToUseOptionalCaches: true, caches: { main: [':rest:'], additional: [':externals:'], |