ExtendScript-library is a JavaScript library. This library has been created in order to support people who'd like write automation scripts for Adobe Creative Suite
today = {
en: "Today is %1/%2",
de: "Heute ist der %2.%1.",
fr: "aujourd'hui nous sommes le %1, %2"
};
d = new Date();
alert (localize (today, d.getMonth()+1, d.getDate()));
Write a module to translate string and load translations files