File "AbstractTranslation.php"
Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/AbstractTranslation.php
File size: 212 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nextend\Framework\Translation;
abstract class AbstractTranslation {
public function _($text) {
return $text;
}
public function getLocale() {
return 'en_US';
}
}