In some areas, I'm noticing such things as:Duration: 1 Calls.LBL_HOURS_ABBREV 0 Calls.LBL_MINSS_ABBREV In particular the .LBL_... info that you see in the line above.
The above is from the "Meetings" page of Splendid. What is the LBL_ info displaying for and how am I able to correct this?
The configuration for the time zone in Splendid is using Pacific Time, the database resides on MSSQL Server 2005 Express, database tables, views, etc created by the 2.1 Splendidcrm installer.
Thanks.
In our 2.1 build, we deleted a bunch of unused terms and caught a few extra. Here is the SQL script to add them back:
exec dbo.spTERMINOLOGY_InsertOnly 'LBL_MINSS_ABBREV' , 'en-US', 'Calls', null, null, 'm';exec dbo.spTERMINOLOGY_InsertOnly 'LBL_MINSS_ABBREV' , 'en-US', 'Meetings', null, null, 'm';exec dbo.spTERMINOLOGY_InsertOnly 'LBL_HOURS_ABBREV' , 'en-US', 'Calls', null, null, 'h';exec dbo.spTERMINOLOGY_InsertOnly 'LBL_HOURS_ABBREV' , 'en-US', 'Meetings', null, null, 'h';