The plural label for the 'Country' entity is not OK is some screens.
On /admin/help/token page, the follwing is shown:

Countries  Tokens related to individual countries. 
...
Default country  Tokens related to the sites default country. 
...
List of Countrys  Tokens related to the "Country" entities. 

Not sure why the first occurence is translated correctly.
Using a minimal installation of D7.22, and latest Countries 7.x-2.x

Comments

johnv’s picture

Status: Active » Needs review

This can be corected with one extra line in file countries.module:

 function countries_entity_info() {
   $return = array(
     'country' => array(
       'label' => t('Country'),
+      'plural label' => t('Countries'),
       'entity class' => 'Entity',

(Sorry, no proper patch.)

johnv’s picture

Issue summary: View changes
webflo’s picture

Status: Needs review » Fixed

Good idea. Thanks! Rolled my on patch ;)

  • webflo committed d6b7ff3 on 7.x-2.x
    Issue #2240053 by johnv, webflo:  Add plural label to avoid 'Countrys'.
    

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.