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"

CommentFileSizeAuthor
fr_45.po36.61 KBJérôme

Comments

Traverus’s picture

Status: Active » Closed (won't fix)

4.x no longer maintained, please reopen with applicable version number if still relevant.