Home | History | Annotate | Download | only in sed-4.2.1

Lines Matching refs:po

50  --skip-po                Do not download po files.
70 # The command to download all .po files for a specified domain into
73 # options because the latest/%s directory and the .po files within are
143 # those files to be generated in directories like lib/, m4/, and po/.
175 --skip-po)
300 # Download .po files to $po_dir/.reference and copy only the new
303 # Directory containing primary .po files.
304 # Overwrite them only when we're sure a .po file is new.
308 # Download *.po files into this dir.
314 && ls "$ref_po_dir"/*.po 2>/dev/null |
315 sed 's|.*/||; s|\.po$||' > "$po_dir/LINGUAS"
317 langs=`cd $ref_po_dir && echo *.po|sed 's/\.po//g'`
319 for po in $langs; do
320 case $po in x) continue;; esac
321 new_po="$ref_po_dir/$po.po"
322 cksum_file="$ref_po_dir/$po.s1"
324 ! test -f "$po_dir/$po.po" ||
326 echo "updated $po_dir/$po.po..."
327 cp "$new_po" "$po_dir/$po.po" && sha1sum < "$new_po" > "$cksum_file"
334 if test -d po; then
335 update_po_files po $package || exit
338 if test -d runtime-po; then
339 update_po_files runtime-po $package-runtime || exit
621 echo "$0: Creating po/Makevars from po/Makevars.template ..."
622 rm -f po/Makevars
631 ' po/Makevars.template >po/Makevars
633 if test -d runtime-po; then
634 # Similarly for runtime-po/Makevars, but not quite the same.
635 rm -f runtime-po/Makevars
638 /^subdir *=.*/s/=.*/= runtime-po/
645 ' <po/Makevars.template >runtime-po/Makevars
647 # Copy identical files from po to runtime-po.
648 (cd po && cp -p Makefile.in.in *-quot *.header *.sed *.sin ../runtime-po)