diff options
-rw-r--r-- | modules/locale/locale.schema | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/locale/locale.schema b/modules/locale/locale.schema index 3b60c8150..1697e1e57 100644 --- a/modules/locale/locale.schema +++ b/modules/locale/locale.schema @@ -54,7 +54,7 @@ function locale_schema() { 'translation' => array('type' => 'text', 'mysql_type' => 'blob', 'not null' => TRUE), // Language code referencing the languages table. 'language' => array('type' => 'varchar', 'length' => 12, 'not null' => TRUE, 'default' => ''), - // Parent lid (lid of the singular form) in case of plural strings. + // Parent lid (lid of the previous string in the plural chain) in case of plural strings. 'plid' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), // Plural index number in case of plural strings. 'plural' => array('type' => 'int', 'not null' => TRUE, 'default' => 0) |