silverstripe-framework/tests/php/i18n/i18nTest/_fakewebroot/i18ntestmodule/code/subfolder/i18nTestSubModule.php
2016-12-19 16:08:19 +13:00

14 lines
217 B
PHP

<?php
use SilverStripe\Core\Object;
class i18nTestSubModule extends Object
{
public function __construct()
{
_t('i18nTestModule.OTHERENTITY', 'Other Entity');
parent::__construct();
}
}