mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8a07c56bdf
API Implement enhanced pluralisation Remove Zend_Translate and all Zend dependencies from i18n Deprecated $context from i18n::_t() Warn on missing default string for i18n::_t()
24 lines
579 B
PHP
24 lines
579 B
PHP
<?php
|
|
|
|
namespace SilverStripe\i18n\Tests\i18nTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\i18n\i18nEntityProvider;
|
|
|
|
class TestObject implements TestOnly, i18nEntityProvider
|
|
{
|
|
static $my_translatable_property = "Untranslated";
|
|
|
|
public static function my_translatable_property()
|
|
{
|
|
return _t("i18nTest_Object.my_translatable_property", self::$my_translatable_property);
|
|
}
|
|
|
|
public function provideI18nEntities()
|
|
{
|
|
return [
|
|
"i18nTest_Object.my_translatable_property" => self::$my_translatable_property,
|
|
];
|
|
}
|
|
}
|