Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _po4a-tools/po4a-create-all-targets.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# This script creates the target translations from the .po files
# po4a >= 0.63 is required, see https://github.com/mquinson/po4a/releases
# po4a >= 0.68 is required, see https://github.com/mquinson/po4a/releases
# You can set the following variables:
# SRC_DIR: directory for the original documents in English. Files in sub-directories within SRC_DIR are also detected.
# PO_DIR: directory where the .po files are stored
Expand Down Expand Up @@ -78,7 +78,7 @@ process_with_po4a () {
# Get source doc names and set target file names and dirs
filename=$(basename "$doc" .$ext)

if [[ $filename == 'general' || $filename == 'navigation' ]] ; then
if [[ $filename == 'general' || $filename == 'navigation' || $filename == 'copyright' ]] ; then
TARG_DIR="$DATA_DIR"

else
Expand Down