| 1 |
<?php |
<?php |
| 2 |
// $Id: legislature.module,v 1.49 2008/07/18 05:28:01 drumm Exp $ |
// $Id: legislature.module,v 1.50 2008/12/17 05:05:01 drumm Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 96 |
'ia' => array( |
'ia' => array( |
| 97 |
'82' => t('82nd Iowa General Assembly'), |
'82' => t('82nd Iowa General Assembly'), |
| 98 |
), |
), |
| 99 |
|
'lax' => array( |
| 100 |
|
'2009' => t('2009 City of Los Angeles'), |
| 101 |
|
), |
| 102 |
); |
); |
| 103 |
} |
} |
| 104 |
|
|
| 118 |
'ia' => array( |
'ia' => array( |
| 119 |
'82' => array('start' => 2007, 'end' => 2008), |
'82' => array('start' => 2007, 'end' => 2008), |
| 120 |
), |
), |
| 121 |
|
'lax' => array( |
| 122 |
|
'2009' => array('start' => 2009, 'end' => '2009'), |
| 123 |
|
), |
| 124 |
); |
); |
| 125 |
} |
} |
| 126 |
|
|
| 163 |
'count_limit' => 0, |
'count_limit' => 0, |
| 164 |
), |
), |
| 165 |
), |
), |
| 166 |
|
'lax' => array( |
| 167 |
|
t('Mayor') => array( |
| 168 |
|
'length' => 4, |
| 169 |
|
'count_limit' => 2, |
| 170 |
|
), |
| 171 |
|
t('Controller') => array( |
| 172 |
|
'length' => 4, |
| 173 |
|
'count_limit' => 0, |
| 174 |
|
), |
| 175 |
|
t('Attorney') => array( |
| 176 |
|
'length' => 4, |
| 177 |
|
'count_limit' => 0, |
| 178 |
|
), |
| 179 |
|
t('Council') => array( |
| 180 |
|
'length' => 4, |
| 181 |
|
'count_limit' => 0, |
| 182 |
|
), |
| 183 |
|
t('School Board') => array( |
| 184 |
|
'length' => 4, |
| 185 |
|
'count_limit' => 0, |
| 186 |
|
), |
| 187 |
|
), |
| 188 |
); |
); |
| 189 |
} |
} |
| 190 |
|
|