59 lines
2.0 KiB
PHP
59 lines
2.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
* AVSDev UF Organisations (https://avsdev.uk)
|
|
*
|
|
* @link https://git.avsdev.uk/avsdev/sprinkle-organisations
|
|
* @license https://git.avsdev.uk/avsdev/sprinkle-organisations/blob/master/LICENSE.md (LGPL-3.0 License)
|
|
*/
|
|
|
|
/**
|
|
* US English message token translations for the 'organisations' sprinkle.
|
|
*
|
|
* @author Craig Williams (https://avsdev.uk)
|
|
*/
|
|
return [
|
|
'ORGANISATION' => [
|
|
1 => 'Organisation',
|
|
2 => 'Organisations',
|
|
|
|
'PAGE_DESCRIPTION' => 'A listing of the organisations for your site. Provides management tools for editing and deleting organisations.',
|
|
'INFO_PAGE' => 'Organisation information page for {{name}}',
|
|
'SUMMARY' => 'Organisation Summary',
|
|
|
|
'CREATE' => 'Create organisation',
|
|
'CREATION_SUCCESSFUL' => 'Successfully created organisation <strong>{{name}}</strong>',
|
|
|
|
'EDIT' => 'Edit organistion',
|
|
'UPDATE' => 'Details updated for organistion <strong>{{name}}</strong>',
|
|
|
|
'DELETE' => 'Delete organisation',
|
|
'DELETE_CONFIRM' => 'Are you sure you want to delete the organisation <strong>{{name}}</strong>?',
|
|
'DELETE_YES' => 'Yes, delete organisation',
|
|
'DELETION_SUCCESSFUL' => 'Successfully deleted organisation <strong>{{name}}</strong>',
|
|
|
|
'TOTAL_MEMBER_COUNT' => '# Members <sub>(inc admins)</sub>',
|
|
'ADMIN_COUNT' => '# Admins',
|
|
|
|
'NAME' => [
|
|
1 => 'Organisation name',
|
|
|
|
'EXPLAIN' => 'Please enter a name for the organisation',
|
|
'IN_USE' => 'Organisation name <strong>{{name}}</strong> is already in use.',
|
|
],
|
|
'SLUG' => [
|
|
'IN_USE' => 'Organisation slug <strong>{{slug}}</strong> is already in use.',
|
|
],
|
|
],
|
|
|
|
'MEMBER' => [
|
|
1 => 'Member',
|
|
2 => 'Members',
|
|
],
|
|
|
|
'ADMIN' => [
|
|
1 => 'Administrator',
|
|
2 => 'Administrators',
|
|
],
|
|
];
|