Copying the example from the manual, ngettext works like this:
ngettext("%d window", "%d windows", 1); //'1 window';
ngettext("%d window", "%d windows", 2); //'2 windows';
But what if I want to use 2 variables, for example %d windows %d doors
? Is there a standard way to implement this, so that the correct string (4 combinations) appears based on the 2 variables?