タグ

ブックマーク / gist.github.com/576118 (1)

  • check-gnome-japo.pl

    check-gnome-japo.pl �xJ� V � ‡ V #! /usr/bin/perl ## simple ja.po checker for GNOME Japanese translation team. ## Useful if this script used with pofilter. use strict; use warnings; use utf8; use Getopt::Long; use File::Basename; use Text::CSV_XS; use Unicode::Normalize; binmode STDOUT, ':utf8'; our $Before_Matches = sub { }; our $Match_Func = sub { my ( $file, $line_no, $orig, $trans, $msg ) = @_

    check-gnome-japo.pl
    mickn
    mickn 2010/10/12
    #gnomeja 用の ja.po チェッカを更新。po2csv で CSV に変換したものを --csv オプションでチェックできるようになった。チェックパターンも追加
  • 1