##// END OF EJS Templates
i18n: updated translation for Polish...
i18n: updated translation for Polish Currently translated at 56.5% (614 of 1087 strings)

File last commit:

r7061:10ee27ba default
r8092:7fef5132 default
Show More
comment.html
57 lines | 1.8 KiB | text/html | HtmlLexer
<%page args="author,text,status,close=False" />\
\
##<!-- comment ->
<table cellpadding="0" cellspacing="0" width="100%" border="0" bgcolor="${color_background_grey}" style="border:1px solid ${color_border};border-radius:4px">
<tr>
<td height="10px" style="height:10px" colspan="3"></td>
</tr>
<tr>
<td width="20px" style="width:20px"></td>
<td>
<div style="${emph_style}">${author}</div>
</td>
<td width="20px" style="width:20px"></td>
</tr>
<tr>
<td height="10px" style="height:10px" colspan="3" style="border-bottom:1px solid ${color_border}"></td>
</tr>
%if status or close:
<tr>
<td height="10px" style="height:10px" colspan="3"></td>
</tr>
<tr>
<td width="20px" style="width:20px"></td>
<td>
%if status:
<div style="font-weight:600">
${_('Status change:')}
${status}
</div>
%endif
%if close:
<div style="font-weight:600">
${_('The pull request has been closed.')}
</div>
%endif
</td>
<td width="20px" style="width:20px"></td>
</tr>
<tr>
<td height="10px" style="height:10px" colspan="3" style="border-bottom:1px solid ${color_border}"></td>
</tr>
%endif
<tr>
<td height="10px" style="height:10px" colspan="3"></td>
</tr>
<tr>
<td width="20px" style="width:20px"></td>
<td>
<div style="${comment_style}">${text}</div>
</td>
<td width="20px" style="width:20px"></td>
</tr>
<tr>
<td height="10px" style="height:10px" colspan="3"></td>
</tr>
</table>
##<!-- /comment ->