加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 597 Bytes
一键复制 编辑 原始数据 按行查看 历史
Brian Egan 提交于 2018-03-13 20:37 . Fix deferred localizations. Fixes #29
.PHONY: clean localize all check_env
FILES := $(shell find . -name '*.arb' | xargs)
all: localize
localize: check_env clean
flutter pub pub run intl_translation:extract_to_arb --output-dir=./ --no-transformer lib/src/localization.dart
mv intl_messages.arb intl_en.arb
flutter pub pub run intl_translation:generate_from_arb --no-use-deferred-loading lib/src/localization.dart $(FILES)
mv messages*.dart lib/src/localizations
clean:
rm -f *.arb
check_env:
ifndef FLUTTER_ROOT
$(error FLUTTER_ROOT is undefined. Please export a FLUTTER_ROOT pointing to the installation of Flutter.)
endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化