Hi I'm pretty new to phalcon, and by the docs i couldn't figure out if i can use groups in the languages files. Sometimes it makes sense to use same key with different content. (coming from laravel, there are separate files instead of groups) Example.
$messages = array(
"user_profile" => array(
   "hi-name" => "Hi %name%",
   "email_address"  => "E-mail address",
),
"main" => array(
    "hi-name" => "Hello %name%",
    "song"    => "This song is %song%"
)
);In template usage maybe:
$t->_("main/hi-name"); //(or any separator)If it's not possible i'll make a feature request.