Files
szkoleniauryzaj.pl/wp-content/plugins/password-protected/languages/potomo.sh
2026-04-26 23:47:49 +02:00

5 lines
179 B
Bash

#! /bin/sh
# Create .mo files from .po files.
# Twisted by WP-Translations.org, created by grappler.
for file in `find . -name "*.po"` ; do msgfmt -o ${file/.po/.mo} $file ; done