代码拉取完成,页面将自动刷新
同步操作将从 Gitee 极速下载/aria2 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/bin/sh -e
# Update po files using launchpad-export.tar.gz
WORK_DIR=launchpad-work
INPUT_TGZ=$1
PO_DIR=po
if [ -z "$INPUT_TGZ" ]; then
echo "Usage: import-po /path/to/launchpad-export.tar.gz"
echo "Specify input launchpad-export.tar.gz file"
exit 1
fi
if [ ! -e "$INPUT_TGZ" ]; then
echo "Input file $INPUT_TGZ does not exist"
exit 1
fi
if [ -e "$WORK_DIR" ]; then
rm -rf "$WORK_DIR"
fi
mkdir "$WORK_DIR"
echo "Extracting po files from the archive..."
tar -x -C "$WORK_DIR" -f "$INPUT_TGZ"
echo "Renaming po files..."
# The directory structure of launchpad-export.tar.gz is a bit
# strange. It even contains absolute file path. We first gather all
# files in top level directory.
mv "$WORK_DIR"/aria2/*.po "$WORK_DIR"
echo -n "en@quot en@boldquot" > "$PO_DIR"/LINGUAS
for file in "$WORK_DIR"/*.po; do
# First remove useless '\r' in messages
sed -i -e 's/\\r//' "$file"
bn=`basename "$file"`
bn=${bn#aria2-}
dst="$PO_DIR"/"$bn"
# copy file to po directory
echo "Moving \`$file' to \`$dst'..."
mv "$file" "$dst"
# Update LINGUAS here too.
echo -n " ${bn%.po}" >> "$PO_DIR"/LINGUAS
done
rm -rf "$WORK_DIR"
cd "$PO_DIR"
make update-po
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。