Performed using
find . -name \*.php -exec sed -i -e :a -e '/./,$!d;/^\n*$/{$d;N;};/\n$/ba' {} \;
Change-Id: I5d0627f94c73690cf3a8a453539c22c760c2aa60
23 lines
425 B
PHP
23 lines
425 B
PHP
<?php
|
|
/** Ancient Greek (Ἀρχαία ἑλληνικὴ)
|
|
*
|
|
* To improve a translation please visit https://translatewiki.net
|
|
*
|
|
* @ingroup Language
|
|
* @file
|
|
*
|
|
*/
|
|
|
|
$dateFormats = [
|
|
'mdy time' => 'H:i',
|
|
'mdy date' => 'xg j, Y',
|
|
'mdy both' => 'H:i, xg j, Y',
|
|
|
|
'dmy time' => 'H:i',
|
|
'dmy date' => 'j xg Y',
|
|
'dmy both' => 'H:i, j xg Y',
|
|
|
|
'ymd time' => 'H:i',
|
|
'ymd date' => 'Y xg j',
|
|
'ymd both' => 'H:i, Y xg j',
|
|
];
|