Commit a3bd6fc6 authored by Hanno Schlichting's avatar Hanno Schlichting

LP #975039: Don't translate interface names in edit_markers ZMI view.

parent 28670544
...@@ -8,6 +8,8 @@ http://docs.zope.org/zope2/releases/. ...@@ -8,6 +8,8 @@ http://docs.zope.org/zope2/releases/.
2.13.14 (unreleased) 2.13.14 (unreleased)
-------------------- --------------------
- LP #975039: Don't translate interface names in edit_markers ZMI view.
- LP #838978: Fixed TypeError in cache_detail ZMI view. - LP #838978: Fixed TypeError in cache_detail ZMI view.
- Cleanup lock and pid files if the process dies early in startup. - Cleanup lock and pid files if the process dies early in startup.
......
...@@ -24,13 +24,13 @@ ...@@ -24,13 +24,13 @@
<tal:loop tal:repeat="interface view/getInterfaceNames"> <tal:loop tal:repeat="interface view/getInterfaceNames">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<label class="form-mono" <label class="form-mono"
tal:content="interface/name" i18n:translate="">INTERFACE</label><br /> tal:content="interface/name">INTERFACE</label><br />
</tal:loop> </tal:loop>
<tal:loop tal:repeat="interface view/getDirectlyProvidedNames"> <tal:loop tal:repeat="interface view/getDirectlyProvidedNames">
<input type="checkbox" id="INTERFACE" name="remove:list" <input type="checkbox" id="INTERFACE" name="remove:list"
tal:attributes="id interface/name; value interface/name" /> tal:attributes="id interface/name; value interface/name" />
<label class="form-mono" for="INTERFACE" tal:attributes="for interface/name" <label class="form-mono" for="INTERFACE" tal:attributes="for interface/name"
tal:content="interface/name" i18n:translate="">INTERFACE</label><br /> tal:content="interface/name">INTERFACE</label><br />
</tal:loop> </tal:loop>
<tal:case tal:condition="view/getDirectlyProvidedNames"> <tal:case tal:condition="view/getDirectlyProvidedNames">
<div class="formControls FormButtons"> <div class="formControls FormButtons">
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
<input type="checkbox" id="INTERFACE" name="add:list" <input type="checkbox" id="INTERFACE" name="add:list"
tal:attributes="id interface/name; value interface/name" /> tal:attributes="id interface/name; value interface/name" />
<label class="form-mono" for="INTERFACE" tal:attributes="for interface/name" <label class="form-mono" for="INTERFACE" tal:attributes="for interface/name"
tal:content="interface/name" i18n:translate="">INTERFACE</label><br /> tal:content="interface/name">INTERFACE</label><br />
</tal:loop> </tal:loop>
<div class="formControls FormButtons"> <div class="formControls FormButtons">
<input class="form-element" type="submit" name="SAVE" value="Add" <input class="form-element" type="submit" name="SAVE" value="Add"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment