##// END OF EJS Templates
ux: additional capitalisation and string translation in integration templates
lisaq -
r646:22553ba2 default
parent child Browse files
Show More
@@ -9,7 +9,7 b''
9 9 <%inherit file="${inherit(context)}" />
10 10
11 11 <%def name="title()">
12 ${_('Integrations settings')}
12 ${_('Integrations Settings')}
13 13 %if c.rhodecode_name:
14 14 &middot; ${h.branding(c.rhodecode_name)}
15 15 %endif
@@ -33,7 +33,7 b''
33 33 %if integration:
34 34 ${current_IntegrationType.display_name} - ${integration.name}
35 35 %else:
36 ${_('Create new %(integration_type)s integration') % {'integration_type': current_IntegrationType.display_name}}
36 ${_('Create New %(integration_type)s Integration') % {'integration_type': current_IntegrationType.display_name}}
37 37 %endif
38 38 </h2>
39 39 </div>
@@ -28,11 +28,11 b''
28 28 </%def>
29 29 <div class="panel panel-default">
30 30 <div class="panel-heading">
31 <h3 class="panel-title">${_('Create new integration')}</h3>
31 <h3 class="panel-title">${_('Create New Integration')}</h3>
32 32 </div>
33 33 <div class="panel-body">
34 34 %if not available_integrations:
35 No integrations available
35 ${_('No integrations available.')}
36 36 %else:
37 37 %for integration in available_integrations:
38 38 <%
@@ -53,7 +53,7 b''
53 53 </div>
54 54 <div class="panel panel-default">
55 55 <div class="panel-heading">
56 <h3 class="panel-title">${_('Current integrations')}</h3>
56 <h3 class="panel-title">${_('Current Integrations')}</h3>
57 57 </div>
58 58 <div class="panel-body">
59 59 <table class="rctable issuetracker">
General Comments 0
You need to be logged in to leave comments. Login now