bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [gettext] php tests fixes


From: Jens Petersen
Subject: Re: [gettext] php tests fixes
Date: Mon, 30 Apr 2007 17:55:54 +1000
User-agent: Thunderbird 1.5.0.10 (X11/20070302)

Jens Petersen wrote:
I meant to followup though that lang-php currently fails on fedora with:

2c2
< EUR remplace FF.
---
 > EUR remplace FF.16
FAIL: lang-php

I haven't looked into it in detail, but I don't see where the "16" is coming from yet.

It seems the 16 is generated by echo output the returned value from printf in prog.php.

The following change (hack?) fixes (worksaround?) the problem. I am not familiar enough with php to know what the right solution is.

Jens
--- gettext-0.16.1/gettext-tools/tests/lang-php~        2006-11-28 
03:02:08.000000000 +1000
+++ gettext-0.16.1/gettext-tools/tests/lang-php 2007-04-30 17:51:31.000000000 
+1000
@@ -15,7 +15,7 @@
   bindtextdomain ("prog", ".");
   echo _("'Your command, please?', asked the waiter.");
   echo "\n";
-  echo printf(_("%s is replaced by %s."), "FF", "EUR");
+  printf(_("%s is replaced by %s."), "FF", "EUR");
   echo "\n";
 ?>
 EOF

reply via email to

[Prev in Thread] Current Thread [Next in Thread]