I added this in Layout.nut of the nevato theme and in another theme that I use for neo geo and now they show in the footer, the year of the game, the title, the manufacturer and on the right side of the footer the cardinal numeral of the game, that was it that I wanted.
/////////////////////////////////////////////////////////
// Game information and text frame
/////////////////////////////////////////////////////////////////
//Title text info
local textt = fe.add_text( "[Title] - [Manufacturer]", flx*0.315, fly*0.955, flw*0.6, flh*0.028 );
textt.set_rgb( 225, 255, 255 );
//textt.style = Style.Bold;
textt.align = Align.Left;
textt.rotation = 0;
textt.word_wrap = true;
//Year text info
local texty = fe.add_text( "[Year]", flx*0.18, fly*0.942, flw*0.13, flh*0.05 );
texty.set_rgb( 255, 255, 255 );
//texty.style = Style.Bold;
//texty.align = Align.Left;
//display filter info
local filter = fe.add_text( "[ListFilterName]: [ListEntry]-[ListSize] [PlayedCount]", flx*0.7, fly*0.962, flw*0.3, flh*0.022 );
filter.set_rgb( 255, 255, 255 );
//filter.style = Style.Italic;
filter.align = Align.Right;
filter.rotation = 0;