(solved) Few spelling mistakes in the ACP

For documentation of changes to the PGSocial Network extension
Post Reply
User avatar
Mandi
Site Admin
Site Admin
Posts: 47
Joined: July 31st, 2023, 8:37 pm
Location: Somewhere, Canada
Contact:

(solved) Few spelling mistakes in the ACP

Post 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.'
Post Reply