Use GdkPoint in PAN_ITEM_TRIANGLE coord
[geeqie.git] / scripts / translators.sh
1 #! /bin/sh
2 #**********************************************************************
3 # Copyright (C) 2023 - The Geeqie Team
4 #
5 # Author: Colin Clark
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with this program; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #**********************************************************************
21
22 ## @file
23 ## @brief Generate lists of people who have made commits to the repository.
24 ##
25 ## The lists will be displayed in the About - Credits dialog.
26 ##
27 ## $1 Meson PRIVATE_DIR \n
28 ## $2 Meson current_source_dir \n
29 ## $3 Meson current_build_dir \n
30 ## $4 locales.txt \n
31 ## $5 gresource.xml \n
32 ## $6...$n po source list - space separated list \n
33 ##
34 ## It is expected that the .po files have a list of translators in the form: \n
35 ## \# Translators: \n
36 ## \# translator1_name <translator1 email> \n
37 ## \# translator2_name <translator2 email> \n
38 ## \#
39
40 mkdir --parents "$1"
41 private_dir="$1"
42 shift
43 source_dir="$1"
44 shift
45 build_dir="$1"
46 shift
47 locales="$1"
48 shift
49 resource_xml="$1"
50 shift
51
52 while [ -n "$1" ]
53 do
54         base=$(basename "$1")
55         full_file_path="$source_dir/$1"
56         locale=${base%.po}
57
58         printf "\n"
59         awk '$1 == "'"$locale"'" {print $0}' "$locales"
60         awk '$0 ~/Translators:/ {
61                 while (1) {
62                         getline $0
63                 if ($0 == "#") {
64                         exit
65                         }
66                 else {
67                         print substr($0, 3)
68                         }
69                 }
70                 print $0
71         }' "$full_file_path"
72
73 shift
74 done > "$private_dir"/translators
75 printf "\n\0" >> "$private_dir"/translators
76
77 glib-compile-resources --generate-header --sourcedir="$private_dir" --target="$build_dir"/translators.h "$resource_xml"
78 glib-compile-resources --generate-source --sourcedir="$private_dir" --target="$build_dir"/translators.c "$resource_xml"