Page 1 of 1

(solved) Few spelling mistakes in the ACP

Posted: August 21st, 2023, 11:04 pm
by Mandi
Noticed there are a few spelling errors on the extensions ACP. The following is the fix for those (on the English language)

Go to ext/pgreca/pgsocial/language/en and open the file info_acp_main.php

Locate line 30 which looks like this

Code: Select all

'ACP_PG_SOCIAL_INDEX_REPLACE'		=> 'Replace the Home with the Ativity page',
Replace with this

Code: Select all

'ACP_PG_SOCIAL_INDEX_REPLACE'		=> 'Replace the Home with the Activity page',
Locate line 52 which looks like this

Code: Select all

'ACP_PG_SOCIAL_CHAT_URL_ENABLED'	=> 'Enable URL on messagges',
Replace with this

Code: Select all

'ACP_PG_SOCIAL_CHAT_URL_ENABLED'	=> 'Enable URL on messages',
Locate lines 55 to 57 which look like this:

Code: Select all

	'PAGE_APPROVED'						=> 'Pagine approved',
	'PAGE_TO_APPROVE'					=> 'Page to approve',
	'PAGE_TRASHED'						=> 'Page trashed',
Replace with this

Code: Select all

	'PAGE_APPROVED'						=> 'Pages approved',
	'PAGE_TO_APPROVE'					=> 'Pages to approve',
	'PAGE_TRASHED'						=> 'Pages trashed',
Locate lines 61 to 63 which look like this

Code: Select all

	'NO_PAGE_APPROVE'					=> 'No page to approve',
	'NO_PAGE_TRASHED'					=> 'No page to delete',
	'NO_PERMESS'						=> 'You haven\'t permission for manage the pages.'
Replace with this

Code: Select all

	'NO_PAGE_APPROVE'					=> 'No pages to approve',
	'NO_PAGE_TRASHED'					=> 'No pages to delete',
	'NO_PERMESS'						=> 'You haven\'t permission to manage the pages.'