IDEMPIERE-1541 missing translation - mini calendar - more / Thanks to Heng Sin
This commit is contained in:
parent
25226f75a8
commit
ec9bb43b81
|
@ -0,0 +1,11 @@
|
|||
SET SQLBLANKLINES ON
|
||||
SET DEFINE OFF
|
||||
|
||||
-- 20/11/2013 10:53:00 AM COT
|
||||
-- IDEMPIERE-1541 missing translation - mini calendar - more
|
||||
INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Org_ID,Created,AD_Client_ID) VALUES ('I','more',200239,'D','ce211d63-ece3-4ac8-bd30-c2d3456527c0','more','Y',TO_DATE('2013-11-20 10:52:59','YYYY-MM-DD HH24:MI:SS'),100,100,0,TO_DATE('2013-11-20 10:52:59','YYYY-MM-DD HH24:MI:SS'),0)
|
||||
;
|
||||
|
||||
SELECT register_migration_script('201311201053_IDEMPIERE-1541.sql') FROM dual
|
||||
;
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
-- 20/11/2013 10:53:00 AM COT
|
||||
-- IDEMPIERE-1541 missing translation - mini calendar - more
|
||||
INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Org_ID,Created,AD_Client_ID) VALUES ('I','more',200239,'D','ce211d63-ece3-4ac8-bd30-c2d3456527c0','more','Y',TO_TIMESTAMP('2013-11-20 10:52:59','YYYY-MM-DD HH24:MI:SS'),100,100,0,TO_TIMESTAMP('2013-11-20 10:52:59','YYYY-MM-DD HH24:MI:SS'),0)
|
||||
;
|
||||
|
||||
SELECT register_migration_script('201311201053_IDEMPIERE-1541.sql') FROM dual
|
||||
;
|
||||
|
|
@ -47,6 +47,7 @@ import org.compiere.model.MUser;
|
|||
import org.compiere.util.CLogger;
|
||||
import org.compiere.util.Env;
|
||||
import org.compiere.util.Language;
|
||||
import org.compiere.util.Msg;
|
||||
import org.zkforge.keylistener.Keylistener;
|
||||
import org.zkoss.web.Attributes;
|
||||
import org.zkoss.web.servlet.Servlets;
|
||||
|
@ -197,6 +198,16 @@ public class AdempiereWebUI extends Window implements EventListener<Event>, IWeb
|
|||
Env.verifyLanguage(ctx, language);
|
||||
Env.setContext(ctx, Env.LANGUAGE, language.getAD_Language()); //Bug
|
||||
|
||||
StringBuilder calendarMsgScript = new StringBuilder();
|
||||
String monthMore = Msg.getMsg(ctx,"more");
|
||||
String dayMore = Msg.getMsg(ctx,"more");
|
||||
calendarMsgScript.append("function _overrideMsgCal() { msgcal.monthMORE = '+{0} ")
|
||||
.append(monthMore).append("';");
|
||||
calendarMsgScript.append("msgcal.dayMORE = '+{0} ")
|
||||
.append(dayMore).append("'; }");
|
||||
AuScript auscript = new AuScript(calendarMsgScript.toString());
|
||||
Clients.response(auscript);
|
||||
|
||||
// Create adempiere Session - user id in ctx
|
||||
Session currSess = Executions.getCurrent().getDesktop().getSession();
|
||||
HttpSession httpSess = (HttpSession) currSess.getNativeSession();
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<style src="/theme/default/zul/calendar/calendar.css"/>
|
||||
<borderlayout id="main">
|
||||
<center border="none">
|
||||
<calendars firstDayOfWeek="Monday" mold="month" id="cal">
|
||||
<calendars firstDayOfWeek="Monday" mold="month" id="cal" xmlns:w="client" w:onBind="try{_overrideMsgCal(); var me=this; setTimeout(function(){me.onSize();},50); }catch(error){} ">
|
||||
<toolbar sclass="calendar-toolbar">
|
||||
<div class="float-left">
|
||||
<hbox>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
var refresh = Util.cleanAmp(Msg.getMsg(Env.getCtx(),"Refresh"));
|
||||
]]></zscript>
|
||||
<style src="/theme/default/zul/calendar/calendar.css"/>
|
||||
<calendars firstDayOfWeek="Monday" mold="month" id="cal">
|
||||
<calendars firstDayOfWeek="Monday" mold="month" id="cal" xmlns:w="client" w:onBind="try{_overrideMsgCal(); var me=this; setTimeout(function(){me.onSize();},50); }catch(error){} ">
|
||||
<toolbar sclass="calendar-toolbar">
|
||||
<div class="float-left">
|
||||
<hbox>
|
||||
|
|
Loading…
Reference in New Issue