24 lines
896 B
PHP
24 lines
896 B
PHP
<?php
|
|
return array(
|
|
'Most likely, original word is {nounNominative}' => 'Most likely, original word is {nounNominative}',
|
|
|
|
'Nominative case' => 'This word is in nominative case. I am <b>{noun}</b>',
|
|
|
|
'Genitive case' => 'This word is in genitive case. I am near <b>{noun}</b>',
|
|
|
|
'Dative case' => 'This word is in dative case. I give gift to <b>{noun}</b>',
|
|
|
|
'Accusative case' => 'This word is in accusative case. I don\'t disturb <b>{noun}</b>',
|
|
|
|
'Instrumental case' => 'This word is in instrumental case. I am with <b>{noun}</b>',
|
|
|
|
'Prepositional case' => 'This word is in prepositional case. I talk about <b>{noun}</b>',
|
|
|
|
|
|
'Singular form' => 'This word is in singular form. One ',
|
|
|
|
'Plural form' => 'This word is in plural form. Many ',
|
|
|
|
'{n} records found.' => '{n} records found.',
|
|
);
|
|
?>
|