Argghh, the language string is wrong !!!
When you select new state as
"Waiting for Approval" you actually set state to
"In progress" which
is a published state !!!
Goto and edit the file:
administrator/components/com_flexicontent/config.xml
locate line:
Code:
<option value="-5">FLEXI_UNAPPROVED</option
change to:
Code:
<option value="-5">FLEXI_IN_PROGRESS</option>
(*
So you need to set your config to pending=unapproved)
Then goto your admin(backend) language files: e.g. administrator/language/en-GB/com_flexicontent/en-GB.com_flexicontent.ini
AND SET STRINGS:
FLEXI_IN_PROGRESS=In progress (Published to be completed)
FLEXI_TO_WRITE=Draft (Unpublished to be written)
FLEXI_ARCHIVED=Archived (Unpublished is outdated content)
FLEXI_PENDING=Pending (Unpublished to be approved)
And at Flexicontent
back-end, for the
slider listing the unapproved content:
FLEXI_UNAPPROVED=Pending (Waiting for publication approval)
Do this for all your languages.
No need to change front-end language files.
I will commit changes to both FlexiContent v1.5.6 and v2.0.
A lot of trouble for one wrong language string.
Regards