~hilaire-fernandes/drgeo/trunk

« back to all changes in this revision

Viewing changes to archives/pharo/i18n/update-po.sh

  • Committer: Hilaire Fernandes
  • Date: 2022-08-07 08:55:48 UTC
  • Revision ID: hilaire.fernandes@gmail.com-20220807085548-n5j04a3gxcvtgn30
Clean up

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
# OBSOLETE, done by the Launchpad service
4
 
 
5
 
cd po
6
 
 
7
 
lang="ar ast ca ca@valencia cs da de en_GB eo es fi fr hy ia it ja ko lt nl pl pt pt_BR ro ru sk sv ta te th tr ug uk uz vi zh_CN zh_TW"
8
 
 
9
 
for l in $lang; do
10
 
    msgmerge -U $l.po drgeo.pot
11
 
    msgmerge -U $l-cuis.po cuis.pot
12
 
done
13
 
 
14
 
cd -