Merge branch 'role-selector' into 'master'
[mailman-postorious.git] / update-po.sh
blob48305110b15deeee7510f3562ff28238a27a6cb7
1 #!/bin/bash
3 set -x
5 # Copyright (C) 2019-2022 by the Free Software Foundation, Inc.
7 # This package 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; version 3 of the License.
11 # This package is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <https://www.gnu.org/licenses/>
19 cd src/postorius/
21 cat locale/LINGUAS | while read lingua; do
23 django-admin makemessages -l "${lingua}"
25 done
26 cd - 1>/dev/null