Topic: 3 Minor bugs in code that affect translations

The file includes/packages.inc line 190 contains:
   

display_error(_("No key field '$index' in file '$file'"));

Should be:
   

display_error(sprintf( _("No key field '%s' in file '%s'"), $index, $file) );

   
   
The file gl/includes/db/gl_db_rates.inc line 128 contains:
   

display_warning(_("Cannot retrieve currency rate from $provider page. Please set the rate manually."));

Should be:
   

display_warning(sprintf(_("Cannot retrieve currency rate from %s page. Please set the rate manually."), $provider));

   
   
The file includes/access_levels.inc line 69 contains:
   

SS_MANUF => _("Manufacturing transations"),

Should be
   

SS_MANUF => _("Manufacturing transactions"),

Re: 3 Minor bugs in code that affect translations

Thank you for pointing this out. Will be fixed in 2.3.2
Janusz