silverstripe-framework/tests/i18n/_fakewebroot/i18nothermodule/code/i18nOtherModule.php
2018-01-30 16:50:32 +00:00

10 lines
148 B
PHP

<?php
class i18nOtherModule extends SS_Object {
public function mymethod() {
_t(
'i18nOtherModule.ENTITY',
'Other Module Entity'
);
}
}