SINGULARNAME and PLURALNAME are without underscore

This commit is contained in:
Philipp Staender 2018-05-17 15:10:01 +02:00 committed by GitHub
parent 78fe189c6d
commit 71fed747e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -222,8 +222,8 @@ class MyObject extends DataObject implements i18nEntityProvider
public function provideI18nEntities() public function provideI18nEntities()
{ {
return [ return [
'MyObject.SINGULAR_NAME' => 'object', 'MyObject.SINGULARNAME' => 'object',
'MyObject.PLURAL_NAME' => 'objects', 'MyObject.PLURALNAME' => 'objects',
'MyObject.PLURALS' => [ 'MyObject.PLURALS' => [
'one' => 'An object', 'one' => 'An object',
'other' => '{count} objects', 'other' => '{count} objects',
@ -239,8 +239,8 @@ In YML format this will be expressed as the below. This follows the
```yaml ```yaml
en: en:
MyObject: MyObject:
SINGULAR_NAME: 'object' SINGULARNAME: 'object'
PLURAL_NAME: 'objects' PLURALNAME: 'objects'
PLURALS: PLURALS:
one: 'An object', one: 'An object',
other: '{count} objects' other: '{count} objects'