Kaydet (Commit) 1aa82c3e authored tarafından Colomban Wendling's avatar Colomban Wendling

Add a script to fixup copyright years translations

üst be91746d
#!/bin/sh
set -e
# prevent sed from doing stupid things in case the locale encoding doesn't
# match the files'. Unlikely, but doesn't hurt.
export LANG=C
year=$(grep -Po '(?<="Copyright \(c\) 2005-)20[0-9][0-9](?=\\n)' src/about.c)
echo "new years are: $years"
for f in po/*.po; do
echo "processing $f..."
sed -f /dev/stdin -i "$f" <<EOF
/^"Copyright (c) 2005-20[0-9][0-9]\\\\n"\$/{
s/\\(2005-\\)20[0-9][0-9]/\\1$year/
n
:loop
/^msgstr/{
n
# in case the range uses something else than the ASCII dash
s/\\(2005.*\\)20[0-9][0-9]/\\1$year/
b done
}
n
b loop
:done
}
EOF
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment