Compare commits

..

No commits in common. "6065d24348636489a37b902e417b8402ea95beaa" and "c60a4178de4dc41c4efe363719a41648d896752b" have entirely different histories.

2 changed files with 1 additions and 2 deletions

1
.gitignore vendored
View File

@ -6,4 +6,3 @@
*.doc
*.docx
public
.hugo_build.lock

View File

@ -8,6 +8,6 @@ cat en.toml | while read -r line; do
echo "$line" | grep '=' -q && \
old="$(echo "$line" | cut -d= -f2)" && \
new="$(echo "$old" | trans en:$1 -b -e google)" && \
echo "$line" | sed "s/$old/ $new/" >> $1.toml || \
echo "$line" | sed "s/$old/$new/" >> $1.toml || \
echo "$line" >> $1.toml
done