Index: trunk/phase3/languages/messages/MessagesHr.php |
— | — | @@ -258,14 +258,32 @@ |
259 | 259 | 'staticredirect' => array( '1', '__NEPOMIČNOPREUSMJERAVANJE__', '__STATICREDIRECT__' ), |
260 | 260 | ); |
261 | 261 | |
262 | | -$datePreferences = false; |
| 262 | +$datePreferences = array( |
| 263 | + 'default', |
| 264 | + 'dmy hr', |
| 265 | + 'mdy', |
| 266 | + 'ymd', |
| 267 | + 'ISO 8601', |
| 268 | +); |
263 | 269 | |
264 | | -$defaultDateFormat = 'dmy'; |
| 270 | +$defaultDateFormat = 'dmy hr'; |
265 | 271 | |
266 | 272 | $dateFormats = array( |
267 | | - 'dmy time' => 'H:i', |
268 | | - 'dmy date' => 'j. F Y.', |
269 | | - 'dmy both' => 'H:i, j. F Y.', |
| 273 | + 'dmy hr time' => 'H:i', |
| 274 | + 'dmy hr date' => 'j. F Y.', |
| 275 | + 'dmy hr both' => 'H:i, j. F Y.', |
| 276 | + |
| 277 | + 'mdy time' => 'H:i', |
| 278 | + 'mdy date' => 'F j, Y', |
| 279 | + 'mdy both' => 'H:i, F j, Y', |
| 280 | + |
| 281 | + 'ymd time' => 'H:i', |
| 282 | + 'ymd date' => 'Y F j', |
| 283 | + 'ymd both' => 'H:i, Y F j', |
| 284 | + |
| 285 | + 'ISO 8601 time' => 'xnH:xni:xns', |
| 286 | + 'ISO 8601 date' => 'xnY-xnm-xnd', |
| 287 | + 'ISO 8601 both' => 'xnY-xnm-xnd"T"xnH:xni:xns', |
270 | 288 | ); |
271 | 289 | |
272 | 290 | $separatorTransformTable = array(',' => '.', '.' => ',' ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -269,6 +269,8 @@ |
270 | 270 | * Specify apple-touch-icon before favicon in HTML head section to make the Konqueror |
271 | 271 | browser correctly use the latter |
272 | 272 | * (bug 15717) Set $separatorTransformTable for language 'eu' |
| 273 | +* (bug 15605) Enabled $datePreferences for language 'hr'. Added standard date |
| 274 | + preferences. |
273 | 275 | |
274 | 276 | === API changes in 1.14 === |
275 | 277 | |