1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
<?php
$orddd_lang = 'en';
$orddd_translations = array(
'en' => array(
'common.date-settings' => "Date Settings",
'common.time-settings' => "Time Settings",
'common.holidays' => "Holidays",
'common.appearance' => "Appearance",
'common.delivery-dates' => "Delivery Dates",
'common.time-slot' => "Time Slots",
'common.show_all_dates' => "Show all Delivery Dates"
),
);
global $orddd_translations, $orddd_lang;
function orddd_t( $str ) {
global $orddd_translations, $orddd_lang;
return $orddd_translations[ $orddd_lang ][ $str ];
}
?>