Hi, here are the results...
using this query:
select
o.object_type,
o.creation_date::date,
o.title
from
acs_objects o,
lang_messages m,
(select object_id, regexp_matches(title, '#([^.#]*).([^.#]*)#') as matcha from acs_objects) r
where
o.object_id = r.object_id
and
r.matcha[1] = m.package_key
and
r.matcha[2] = m.message_key
and
(m.message is null or m.message = '')
order by
o.title;
I get:
object_type | creation_date | title
-------------------+---------------+-------------------------------------
application_group | 2014-02-05 | #acs-translations.group_title_1727#
application_group | 2014-02-23 | #acs-translations.group_title_1958#
application_group | 2014-12-22 | #acs-translations.group_title_2702#
(3 rows)
without the \ char at the start of the title field.