langs.php
323 字节
<?php
$lang_file = dirname(__FILE__) . '/' . $mce_locale . '_dlg.js';
if ( is_file($lang_file) && is_readable($lang_file) )
$strings = tdav_get_file($lang_file);
else {
$strings = tdav_get_file(dirname(__FILE__) . '/en_dlg.js');
$strings = preg_replace( '/([\'"])en\./', '$1'.$mce_locale.'.', $strings, 1 );
}