1 | #!/usr/bin/perl -w
|
---|
2 | # vi:wrap:
|
---|
3 |
|
---|
4 | # See Qt I18N documentation for usage information.
|
---|
5 |
|
---|
6 | use POSIX qw(strftime);
|
---|
7 |
|
---|
8 | $projectid='PROJECT VERSION';
|
---|
9 | $datetime = strftime "%Y-%m-%d %X %Z", localtime;
|
---|
10 | $charset='iso-8859-1';
|
---|
11 | $translator='FULLNAME <EMAIL@ADDRESS>';
|
---|
12 | $revision_date='YYYY-MM-DD';
|
---|
13 |
|
---|
14 | $real_mark = "tr";
|
---|
15 | $noop_mark = "QT_TR_NOOP";
|
---|
16 | $scoped_mark = "qApp->translate";
|
---|
17 | $noop_scoped_mark = "QT_TRANSLATE_NOOP";
|
---|
18 |
|
---|
19 | $header=
|
---|
20 | '# This is a Qt message file in .po format. Each msgid starts with
|
---|
21 | # a scope. This scope should *NOT* be translated - eg. translating
|
---|
22 | # from French to English, "Foo::Bar" would be translated to "Pub",
|
---|
|
---|