Add friendicaci/transifex image #1

Merged
nupplaphil merged 2 commits from transifex into master 2021-05-13 15:12:35 +02:00
2 changed files with 23 additions and 0 deletions

10
transifex/Dockerfile Normal file
View file

@ -0,0 +1,10 @@
MrPetovan commented 2021-05-12 19:50:48 +02:00 (Migrated from github.com)
Review

Code standards: Please add an EOF EOL.

Code standards: Please add an EOF EOL.
MrPetovan commented 2021-05-12 19:50:48 +02:00 (Migrated from github.com)
Review

Code standards: Please add an EOF EOL.

Code standards: Please add an EOF EOL.
FROM ubuntu:20.04
MrPetovan commented 2021-05-12 19:50:48 +02:00 (Migrated from github.com)
Review

Code standards: Please add an EOF EOL.

Code standards: Please add an EOF EOL.
MrPetovan commented 2021-05-12 19:50:48 +02:00 (Migrated from github.com)
Review

Code standards: Please add an EOF EOL.

Code standards: Please add an EOF EOL.
RUN apt-get update -q && \
MrPetovan commented 2021-05-12 19:50:48 +02:00 (Migrated from github.com)
Review

Code standards: Please add an EOF EOL.

Code standards: Please add an EOF EOL.
DEBIAN_FRONTEND=noninteractive apt-get install -q -y \
MrPetovan commented 2021-05-12 19:50:48 +02:00 (Migrated from github.com)
Review

Code standards: Please add an EOF EOL.

Code standards: Please add an EOF EOL.
gettext \
MrPetovan commented 2021-05-12 19:50:48 +02:00 (Migrated from github.com)
Review

Code standards: Please add an EOF EOL.

Code standards: Please add an EOF EOL.
git \
MrPetovan commented 2021-05-12 19:50:48 +02:00 (Migrated from github.com)
Review

Code standards: Please add an EOF EOL.

Code standards: Please add an EOF EOL.
&& apt-get clean \
MrPetovan commented 2021-05-12 19:50:48 +02:00 (Migrated from github.com)
Review

Code standards: Please add an EOF EOL.

Code standards: Please add an EOF EOL.
&& rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*
MrPetovan commented 2021-05-12 19:50:48 +02:00 (Migrated from github.com)
Review

Code standards: Please add an EOF EOL.

Code standards: Please add an EOF EOL.
MrPetovan commented 2021-05-12 19:50:48 +02:00 (Migrated from github.com)
Review

Code standards: Please add an EOF EOL.

Code standards: Please add an EOF EOL.
COPY check-messages.sh /check-messages.sh
MrPetovan commented 2021-05-12 19:50:48 +02:00 (Migrated from github.com)
Review

Code standards: Please add an EOF EOL.

Code standards: Please add an EOF EOL.

13
transifex/check-messages.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/bash
#
# Checks the default messages.po file
#
# Skip first 4 lines in possible diff, because they're header
# Skip all lines of the git diff starting with "@@" or comments or starting "POT-Creation-Date"
if [[ $(git diff -U0 ./view/lang/C/messages.po | grep -vE '^(@@|\-"POT-Creation-Date|\+"POT-Creation-Date|\-#|\+#)' | wc -l) -gt 4 ]]; then
echo "$(git diff ./view/lang/C/messages.po)"
exit 1
else
echo "Nothing to update"
fi