mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-26 21:30:55 +08:00
27 lines
772 B
Bash
Executable File
27 lines
772 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
cd "$(dirname "$0")/../.." # 进入TP root
|
|
|
|
function file-translating-p ()
|
|
{
|
|
local file="$*"
|
|
head -n 3 "$file" | grep -iE "^[^[].*translat|^\[#\]: translator: \([^[:space:]]+\)|fanyi|翻译" >/dev/null 2>&1
|
|
}
|
|
function get_status_of()
|
|
{
|
|
local file="$*"
|
|
git log --date=short --pretty=format:"{\"file\":\"${file}\",\"time\":\"%ad\",\"user\":\"%an\"}" -n 1 "${file}"
|
|
}
|
|
|
|
while read -r file;do
|
|
if file-translating-p "${file}";then
|
|
translating="${translating} $(get_status_of "${file}")"
|
|
else
|
|
unselected="${unselected} $(get_status_of "${file}")"
|
|
fi
|
|
done< <(find sources -name "2*.md")
|
|
(
|
|
echo "${translating}"|jq -s "."
|
|
echo "${unselected}"|jq -s "."
|
|
)|jq -s '{"translating":.[0],"unselected":.[1]}'
|