11 lines
194 B
PHP
Raw Normal View History

<?php
use SilverStripe\Core\Object;
class i18nTestSubModule extends Object {
public function __construct() {
_t('i18nTestModule.OTHERENTITY', 'Other Entity');
2014-08-15 18:53:05 +12:00
parent::__construct();
}
}