<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 "My father's name is %s" ?<br><br>The string should be saved in .po file as "My father's name is %s" or "My father\'s name is %s"
<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"><?php<br>
$format </span><span class="keyword">= </span><span class="string">'The %2$s contains %1$d monkeys.<br>
That\'s a nice %2$s full of %1$d monkeys.'</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">?></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 ' inside and the php-format flag, look at the .po file with an external editor and look how the ' is saved
</li><li>create an example in php and test if the string without \' creates problems.</li></ul>Francesco.<br>