Comment by fangcao5:
I want to make some changes about i18n in client source,should you help me?
The changes are:
1.base/auth/checkLoginData.lzx:
<labelText name="n5" text="Color-Style" width="200" y="114"
resize="false"
x="2"/>
change to:
<labelText name="n5" labelid="791" width="200" y="114" resize="false"
x="2"/>
2.modules/conference/popups/changedevice.lzx:
<checkbox name="holddatainSO" text="Do not ask again" x="10" y="220">
change to:
<labelCheckbox name="holddatainSO" labelid="798" x="10" y="220">
3.modules/conference/conference/conferenceView.lzx:
(1)
<class name="videoBoard" id="myconferenceView" extends="guiPresenter"
closable="false" title="Video and Audio"
resizeable="true">
change to:
<class name="videoBoard" id="myconferenceView" extends="guiPresenter"
closable="false" labelid="795"
resizeable="true">
(2)
<class name="whiteBoardPanel" extends="guiPresenter" x="296" y="2"
width="660" height="592" closable="false" title="Whiteboard"
resizeable="true">
change to:
<class name="whiteBoardPanel" extends="guiPresenter" x="296" y="2"
width="660" height="592" closable="false" labelid="797"
resizeable="true">
(3)
<class name="modernWhiteBoardPanel" extends="guiPresenter" x="296" y="2"
width="660" height="592" closable="false" title="Whiteboard"
resizeable="true">
change to:
<class name="modernWhiteBoardPanel" extends="guiPresenter" x="296" y="2"
width="660" height="592" closable="false" labelid="797"
resizeable="true">
(4)
<class name="filesPanel" extends="guiPresenter" x="2" y="284"
width="290" height="310" closable="false" labelid="796"
resizeable="false">
change to:
<class name="filesPanel" extends="guiPresenter" x="2" y="284"
width="290" height="310" closable="false" title="Chat Files User"
resizeable="false">
4.modules/conference/conference/audienceView.lzx:
<class name="videoBoardAudience" id="myVideoBoardAudience"
extends="guiPresenter" x="2" y="2"
width="266" height="280" closable="false" title="Video and Audio"
resizeable="true">
change to:
<class name="videoBoardAudience" id="myVideoBoardAudience"
extends="guiPresenter" x="2" y="2"
width="266" height="280" closable="false" labelid="795"
resizeable="true">
5.modules/conference/video/editRecordStream.lzx:
<checkbox name="holddatainSO" text="Do not ask again" x="10" y="210">
<handler name="oninit">
var t = new lz.sharedObject();
t.getLocal('userdata');
var g = t.getData('userdata');
var save = g["savecamdata"];
Debug.write("savecamdata save: ",save);
if(save) this.setValue(true);
</handler>
</checkbox>
change to :
<labelCheckbox name="holddatainSO" labelid="64" x="10" y="210">
<handler name="oninit">
var t = new lz.sharedObject();
t.getLocal('userdata');
var g = t.getData('userdata');
var save = g["savecamdata"];
Debug.write("savecamdata save: ",save);
if(save) this.setValue(true);
</handler>
</labelCheckbox>
6.modules/conference/whiteboard/panels/propertypanel/propertypanel.lzx:
<class name="propertyPanel" extends="basePropertyPanel"
width="${ parent.parent.width-1 }" height="100" title="Properties" >
change to:
<class name="propertyPanel" extends="basePropertyPanel"
width="${ parent.parent.width-1 }" height="100" labelid="790" >
7.base/components/upload/uploadWindow.lzx:
(1)
<button fontsize="12" name="browse" x="10" y="80" text="browse"
width="200" height="20">
<handler name="onclick">
parent.myFileUpload.browse();
</handler>
</button>
change to:
<simpleLabelButton fontsize="12" name="browse" x="10" y="80"
labelid="792"
width="200" height="20">
<handler name="onclick">
parent.myFileUpload.browse();
</handler>
</simpleLabelButton>
(2)
<button name="upload" x="10" y="100" text="Upload" width="200"
enabled="false" height="20">
<handler name="onclick">
<![CDATA[
var uploadurl
=
'http://'+canvas.rtmphostlocal+':'+canvas.red5httpport+'/'+canvas.webAppRootKey+'/UploadHandler?'
+
'moduleName='+this.parent.uploadmodule +
'&publicSID='+canvas.publicSID +
'&room_id='+hib.currentroomid +
'&sid='+canvas.sessionId;
if ($debug) Debug.write("uploadurl: ",uploadurl);
parent.myFileUpload.upload(uploadurl);
]]>
</handler>
</button>
change to:
<simpleLabelButton name="upload" x="10" y="100" labelid="793"
width="200"
enabled="false" height="20">
<handler name="onclick">
<![CDATA[
var uploadurl
=
'http://'+canvas.rtmphostlocal+':'+canvas.red5httpport+'/'+canvas.webAppRootKey+'/UploadHandler?'
+
'moduleName='+this.parent.uploadmodule +
'&publicSID='+canvas.publicSID +
'&room_id='+hib.currentroomid +
'&sid='+canvas.sessionId;
if ($debug) Debug.write("uploadurl: ",uploadurl);
parent.myFileUpload.upload(uploadurl);
]]>
</handler>
</simpleLabelButton>
(3)
<text name="progress2" visible="false" x="10" y="140" width="200"
>Converting Document</text>
change to:
<labelText name="convertingDocument" labelid="799" visible="false"
x="10"
y="140" width="200" />
(4)
<button name="_close" x="90" y="170" text="cancel" width="160"
height="20">
<handler name="onclick">
if ($debug) Debug.write("this.parent: ",this.parent);
this.parent.close();
</handler>
</button>
change to:
<simpleLabelButton name="_close" x="90" y="170" labelid="794"
width="160"
height="20">
<handler name="onclick">
if ($debug) Debug.write("this.parent: ",this.parent);
this.parent.close();
</handler>
</simpleLabelButton>
That's all!
I am looking forward to your help!
For more information:
http://code.google.com/p/openmeetings/wiki/BuildSources
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en
-~----------~----~----~----~------~----~------~--~---