Hello,I am a new user of tasque.I don't know where or how to put some new code, but I just changed afew lines in "TodayTomorrowFormatter.cs".line 35://removed by atn/*if (string.Compare (t, TaskParser.Tomorrow,true) == 0)return DateTime.Now.AddDays (1);else if (string.Compare (t, TaskParser.Today,true) == 0)return DateTime.Now;*///added by atnif (TaskParser.Tomorrow.Contains(t))return DateTime.Now.AddDays (1);else if (TaskParser.Today.Contains(t))return DateTime.Now;//end of changeThis allowed me to have more than one translation for today andtomorrow (I have tasque in french) and therefore use some shotcuts, theequivalent to td for today and tmr or tm for tomorrow.I hope you will help me send some code to the best spot so it canbenefit all users.And of course, I would love to see this added to the official release(like on a .deb?).Thanks for your work,ATNPS: And I plan to work on a few things for the offline mode... We will see about that one