Tap:i18n - Search for string before translate it

Hi guys,

is there any change to check if a string is present into any of i18n languages inside the project?
This is useful for me to create a generic notification service and if a string is present it returns the translated human readable message for operator. If not raw string.

I would like to pass a string to the helper
{{_ "404_NOT_FOUND"}}
and check if the string is present.

In this case I would like to return the translated string
"404_NOT_FOUND": "Translated string for 404 not found"

If not, I would like to return the entire string as is
"404_NOT_FOUND"

Normally it returns the raw string, but there are cases where string is truncated

Thanks!!

Hi guys, any idea about this need?