Changeset bda086 in indico
- Timestamp:
- 06/17/10 17:32:31 (3 years ago)
- Branches:
- master, burotel, hello-world-walkthrough, ipv6, new-webex, v0.97-series, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, b8c30da8ebdbdcbd675a873997cc3e95f567de49, 4287315ec967a3da168d83963c14001db8487d53
- Children:
- 8df9bb
- Parents:
- 18ea58
- git-author:
- Leszek Syroka <leszek.marek.syroka@…> (05/28/10 14:53:15)
- git-committer:
- Jose Benito <jose.benito.gonzalez@…> (06/17/10 17:32:31)
- Location:
- indico/MaKaC
- Files:
-
- 2 edited
-
po/locale/fr_FR/LC_MESSAGES/messages.po (modified) (1 diff)
-
webinterface/tpls/ConferenceDataModification.tpl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/po/locale/fr_FR/LC_MESSAGES/messages.po
r7a1c52 rbda086 16475 16475 msgstr "Texte du responsable" 16476 16476 16477 #: /home/pferreir/indico/cds-indico/indico/MaKaC/webinterface/tpls/ConferenceDataModification.tpl 16478 msgid "Chairperson text is deprecated, use chairpersons list instead.<br>Click on the red cross to remove the text." 16479 msgstr "Le texte du responsable est obsolÚte, veuillez utiliser la liste des responsables à la place.<br>Cliquez sur la croix rouge pour supprimer le texte." 16480 16477 16481 #: /home/pferreir/indico/cds-indico/indico/MaKaC/webinterface/tpls/RoomBookingManyRoomsCalendar.tpl:15 16478 16482 #: /home/pferreir/indico/cds-indico/indico/MaKaC/webinterface/tpls/RoomBookingRoomCalendar.tpl:41 -
indico/MaKaC/webinterface/tpls/ConferenceDataModification.tpl
r62a512 rbda086 70 70 </tr> 71 71 <!-- TO REMOVE CHAIRPERSON TEXT --> 72 <% if conference.getType() != "simple_event" : %>72 <% if conference.getType() != "simple_event" and chairText != '""': %> 73 73 <tr> 74 74 <td nowrap class="titleCellTD"><span class="titleCellFormat"> <%= _("Chairperson text")%></span></td> 75 75 <td bgcolor="white" width="100%%"> 76 <input type="text" name="chairText" value=%(chairText)s size="50"> 76 <input type="text" name="chairText" id="chairText" value=%(chairText)s size="50" disabled="disabled"> 77 <span id="removeChairpersonText"></span> 78 <% inlineContextHelp( _("Chairperson text is deprecated, use chairpersons list instead.<br>Click on the red cross to remove the text.") ) %> 77 79 </td> 78 80 </tr> … … 133 135 IndicoUI.executeOnLoad(function() 134 136 { 135 136 137 var startDate = IndicoUI.Widgets.Generic.dateField(true,null,['sDay', 'sMonth', 'sYear','sHour', 'sMinute']); 137 138 $E('sDatePlace').set(startDate); … … 139 140 var endDate = IndicoUI.Widgets.Generic.dateField(true,null,['eDay', 'eMonth', 'eYear', 'eHour', 'eMinute']); 140 141 $E('eDatePlace').set(endDate); 142 143 <% if conference.getType() != "simple_event" and chairText != '""': %> 144 var removeChairpersonTextButton = Html.img({src: imageSrc("remove.png")}); 145 removeChairpersonTextButton.observeClick( function(){ 146 $E('chairText').dom.value = ""; 147 }); 148 149 $E('removeChairpersonText').set(removeChairpersonTextButton); 150 <% end %> 141 151 142 152 <% if sDay != '': %>
Note: See TracChangeset
for help on using the changeset viewer.
