should be improved and/or fixed in svn now. P_() is a new plural form i18n macro.<br><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Jan 3, 2013 at 9:06 AM, Alexandre Prokoudine <span dir="ltr"><<a href="mailto:alexandre.prokoudine@gmail.com" target="_blank">alexandre.prokoudine@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><a href="https://live.gnome.org/TranslationProject/DevGuidelines/Plurals" target="_blank">https://live.gnome.org/TranslationProject/DevGuidelines/Plurals</a><br>

<br>
The last code example demonstrates a sane approach to solving the issue.<br>
<br>
E.g. in ardour_ui.cc:<br>
<br>
if (tracks.size() != how_many) {<br>
        if (how_many == 1) {<br>
                error << _("could not create a new mixed track") << endmsg;<br>
        } else {<br>
                error << string_compose (_("could not create %1 new mixed tracks"),<br>
how_many) << endmsg;<br>
        }<br>
}<br>
<br>
would look more like<br>
<br>
if (tracks.size() != how_many) {<br>
        error << ngettext("could not create %d mixed track", "could not<br>
create %d new mixed tracks"), how_many) << endmsg;<br>
        }<br>
}<br>
<span class="HOEnZb"><font color="#888888"><br>
Alexandre<br>
</font></span><div class="im HOEnZb"><br>
On Thu, Jan 3, 2013 at 5:55 PM, Paul Davis <<a href="mailto:paul@linuxaudiosystems.com">paul@linuxaudiosystems.com</a>> wrote:<br>
> just tell me/remind what i need to do.<br>
</div><div class="HOEnZb"><div class="h5">_______________________________________________<br>
ardour-dev mailing list<br>
<a href="mailto:ardour-dev@lists.ardour.org">ardour-dev@lists.ardour.org</a><br>
<a href="http://lists.ardour.org/listinfo.cgi/ardour-dev-ardour.org" target="_blank">http://lists.ardour.org/listinfo.cgi/ardour-dev-ardour.org</a><br>
</div></div></blockquote></div><br></div>