#!/usr/bin/php \\n" "POT-Creation-Date: $date\\n" "Last-Translator: Generated automatically from source files\\n" "MIME-Version: 1.0\\n" "Content-Type: text/plain; charset=utf-8\\n" "Content-Transfer-Encoding: 8bit\\n" "X-Poedit-SourceCharset: utf-8\\n" HDR; $out = fopen("$path/html/languages/translations/web.pot", "w"); fwrite($out, $header); $pipe = popen("xgettext --omit-header -o - --keyword=tra -L PHP --no-location $path/html/inc/*.inc $path/html/user/*.php $path/html/project.sample/*.*", "r"); stream_copy_to_stream($pipe, $out); fclose($pipe); fclose($out); // msgen duplicates everything. // Don't need this. Just rename to en.po //system("msgen -o $path/html/languages/translations/en.po $path/html/languages/translations/web.pot"); system("mv $path/html/languages/translations/web.pot $path/html/languages/translations/en.po"); ?>