1 Star 0 Fork 0

azure/firefox-ios

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
l10n-screenshots.sh 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
if [ -d l10n-screenshots ]; then
echo "The l10n-screenshots directory already exists. You decide."
exit 1
fi
if [ ! -d firefox-ios-l10n ]; then
echo "Did not find a firefox-ios-l10n checkout. Are you running this on a localized build?"
exit 1
fi
mkdir l10n-screenshots
LOCALES=$*
if [ $# -eq 0 ]; then
LOCALES="af ar ast az bg bn br bs ca cs cy da de dsb el en-GB en-US eo es es-CL es-MX eu fa fr ga-IE gd gl he hi-IN hsb hu hy-AM id is it ja kab kk km kn ko lo lt lv ml ms my nb-NO ne-NP nl nn-NO or pa-IN pl pt-BR pt-PT rm ro ru ses si sk sl sq sv-SE te th tl tn tr uk ur uz zh-CN zh-TW"
fi
for lang in $LOCALES; do
echo "$(date) Snapshotting $lang"
mkdir "l10n-screenshots/$lang"
fastlane snapshot --project Client.xcodeproj --scheme L10nSnapshotTests \
--skip_open_summary \
--derived_data_path l10n-screenshots-dd \
--erase_simulator --localize_simulator \
--devices "iPhone 5s" --languages "$lang" \
--output_directory "l10n-screenshots/$lang" > "l10n-screenshots/$lang/snapshot.log" 2>&1
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Swift
1
https://gitee.com/xstudio/firefox-ios.git
[email protected]:xstudio/firefox-ios.git
xstudio
firefox-ios
firefox-ios
master

搜索帮助