<div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">php-format does mean that you should use the php sprintf format, but<br>perhaps a better explanation would be:
</blockquote></div><br>Ok, but if we have a string like &quot;My father&#39;s name is %s&quot; ?<br><br>The string should be saved in .po file as &quot;My father&#39;s name is %s&quot; or &quot;My father\&#39;s name is %s&quot;
<br><br>Some links:<br><a href="http://ursine.ca/cgi-bin/info2www?(gettext)php-format">http://ursine.ca/cgi-bin/info2www?(gettext)php-format</a><br><a href="http://www.php.net/manual/en/function.sprintf.php">http://www.php.net/manual/en/function.sprintf.php
</a><br><br>Example code from the second link:<br><blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;" class="gmail_quote"><div class="example-contents">
<div class="phpcode"><code><span class="html">
<span class="default">&lt;?php<br>
$format </span><span class="keyword">= </span><span class="string">&#39;The %2$s contains %1$d monkeys.<br>
&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; That\&#39;s a nice %2$s full of %1$d monkeys.&#39;</span><span class="keyword">;<br>
</span><span class="default">printf</span><span class="keyword">(</span><span class="default">$format</span><span class="keyword">, </span><span class="default">$num</span><span class="keyword">, </span><span class="default">
$location</span><span class="keyword">);<br>
</span><span class="default">?&gt;</span>
</span>
</code></div></div></blockquote><br>I think that a solution is easy:<br><ul><li>if someone is using poEdit: find a string with &#39; inside and the php-format flag, look at the .po file with an external editor and look how the &#39; is saved
</li><li>create an example in php and test if the string without \&#39; creates problems.</li></ul>Francesco.<br>