life-code/primeira-mao

View on GitHub
src/Config/Translations/newspapers/en.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

return [
    'title' => [
        'não pode ficar em branco' => 'The title is required.',
    ],
    
    'description' => [
        'não pode ficar em branco' => 'The description is required.',
    ],
    
    'price' => [
        'não é um número' => 'The price is invalid.',
    ],
    
    'kind' => [
        'não pode ficar em branco' => 'The type is required.',
        'não está incluído na lista' => 'The type is not included in the list.',
    ],
    
    'permalink' => [
        'não pode ficar em branco' => 'The permalink is required.',
    ],
];