Support of date and time custom formats... for custom fields !!

SVN:trunk[4023]
This commit is contained in:
Denis Flaven
2016-05-03 15:17:46 +00:00
parent 668e822fc6
commit 3579f557d1
8 changed files with 189 additions and 9 deletions

View File

@@ -844,6 +844,20 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
'Core:BulkExportLegacyExport' => 'Click here to access the legacy export.~~',
'Core:BulkExport:XLSXOptions' => 'Excel Options~~',
'Core:BulkExport:TextFormat' => 'Text fields containing some HTML markup~~',
'Core:DateTime:Placeholder_d' => 'дд', // Day of the month: 2 digits (with leading zero)
'Core:DateTime:Placeholder_j' => 'д', // Day of the month: 1 or 2 digits (without leading zero)
'Core:DateTime:Placeholder_m' => 'мм', // Month on 2 digits i.e. 01-12
'Core:DateTime:Placeholder_n' => 'м', // Month on 1 or 2 digits 1-12
'Core:DateTime:Placeholder_Y' => 'гггг', // Year on 4 digits
'Core:DateTime:Placeholder_y' => 'гг', // Year on 2 digits
'Core:DateTime:Placeholder_H' => 'чч', // Hour 00..23
'Core:DateTime:Placeholder_h' => 'чч', // Hour 01..12
'Core:DateTime:Placeholder_G' => 'ч', // Hour 0..23
'Core:DateTime:Placeholder_g' => 'ч', // Hour 1..12
'Core:DateTime:Placeholder_a' => 'am/pm', // am/pm (lowercase)
'Core:DateTime:Placeholder_A' => 'AM/PM', // AM/PM (uppercase)
'Core:DateTime:Placeholder_i' => 'мм', // minutes, 2 digits: 00..59
'Core:DateTime:Placeholder_s' => 'сс', // seconds, 2 digits 00..59
));
?>