summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-06-18 13:00:02 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-06-18 13:00:02 +0000
commit8f9298577e7db9af6d34c3d69bd633a5c7e3de74 (patch)
tree0a19555df223bbf8e4a24fa55dd2ba55874be21d
parent25b01f6c2eea7304bd802f4102c948a93724dd7a (diff)
downloadbrdo-8f9298577e7db9af6d34c3d69bd633a5c7e3de74.tar.gz
brdo-8f9298577e7db9af6d34c3d69bd633a5c7e3de74.tar.bz2
Corrected documentation for plid to reflect chaining.
-rw-r--r--modules/locale/locale.schema2
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)