with Ada.Calendar;
with Ada.Containers;
with Ada.Containers.Hashed_Maps;
with Ada.Strings.Unbounded;

5with Templates_Parser;

with Bookstore.Books;

package Bookstore.Messages.Localize is
10
   procedure Set_Language (Lang : in Available_Languages);

   function Association (K : in Message_Key)
                        return Templates_Parser.Association;
15
   function To_String (Item : in Books.Value) return String;

   function To_String (Item : in Ada.Calendar.Time) return String;

20end Bookstore.Messages.Localize;

top