[Scummvm-git-logs] scummvm-tools master -> c6054f80e3b18f3953e84345e3576bb584c687b3

sev- sev at scummvm.org
Sat Mar 28 17:10:16 UTC 2020


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-tools' repo located at https://github.com/scummvm/scummvm-tools .

Summary:
c6054f80e3 PRINCE: Fix output format for PO parsing


Commit: c6054f80e3b18f3953e84345e3576bb584c687b3
    https://github.com/scummvm/scummvm-tools/commit/c6054f80e3b18f3953e84345e3576bb584c687b3
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-03-28T18:09:40+01:00

Commit Message:
PRINCE: Fix output format for PO parsing

Changed paths:
    engines/prince/po-parse.pl


diff --git a/engines/prince/po-parse.pl b/engines/prince/po-parse.pl
index ea215e2aa..a31ed7a66 100644
--- a/engines/prince/po-parse.pl
+++ b/engines/prince/po-parse.pl
@@ -134,7 +134,7 @@ sub process_inv($) {
 
 	open(*OUT, ">$file") or die "Cannot open file $file: $!";
 
-	print OUT "invtxt.dat\n";
+	print OUT "invtxt.dat\nitemNr. name - exam text\n";
 
 	for my $n (sort {$a<=>$b} keys $data1{'invtxt.txt'}) {
 		print OUT "$n. $data1{'invtxt.txt'}{$n}\n";
@@ -148,7 +148,7 @@ sub process_varia($) {
 
 	open(*OUT, ">$file") or die "Cannot open file $file: $!";
 
-	print OUT "variatxt.dat\n";
+	print OUT "variatxt.dat\nstringId. string\n";
 
 	for my $n (sort {$a<=>$b} keys $data1{'variatxt.txt'}) {
 		print OUT "$n. $data1{'variatxt.txt'}{$n}\n";
@@ -162,7 +162,7 @@ sub process_mob($) {
 
 	open(*OUT, ">$file") or die "Cannot open file $file: $!";
 
-	print OUT "mob.lst\n1.\n";
+	print OUT "mob.lst\nmob_name - exam text\n1.\n";
 
 	my $pn = 0;
 




More information about the Scummvm-git-logs mailing list