I had two issues generating the POT file :
In file : og.module
Two diferent plurals are implementeds on line 271 : $txt = format_plural(db_num_rows($result), '1 subscriber', 'all %count subscribers');
and line 1842: $txt = format_plural($cntall-$cntpending, '1 subscriber', '%count subscribers');
I'll advise to replace line 271 : $txt = format_plural(db_num_rows($result), '1 subscriber', 'all %count subscribers');
By : $txt = format_plural(db_num_rows($result), 'one subscriber', 'all subscribers');
Few lines under the line 1955: $options[$type] = t($name);
Should be : $options[$type] = $name;
Attached is an up to date "fr.po"
Comments
Comment #1
Traverus commented4.x no longer maintained, please reopen with applicable version number if still relevant.