This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/tests/testData/Utils/I18n/cache/application/languages/en_US.php
T
2014-03-12 17:36:32 +02:00

43 lines
630 B
PHP

<?php
return array (
'Global' =>
array (
'options' =>
array (
'language' =>
array (
'en_US' => 'English (United States)',
),
),
),
'User' =>
array (
'fields' =>
array (
'name' => 'User',
'label' => 'Core',
'source' => 'Core',
),
),
'Account' =>
array (
'fields' =>
array (
'name' => 'Account',
'label' => 'Custom',
'source' => 'Crm Module',
),
),
'Contact' =>
array (
'fields' =>
array (
'name' => 'Contact',
'label' => 'Custom',
'source' => 'Crm Module',
),
),
);
?>