##// 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 <%inherit file="${inherit(context)}" />
9 <%inherit file="${inherit(context)}" />
10
10
11 <%def name="title()">
11 <%def name="title()">
12 ${_('Integrations settings')}
12 ${_('Integrations Settings')}
13 %if c.rhodecode_name:
13 %if c.rhodecode_name:
14 &middot; ${h.branding(c.rhodecode_name)}
14 &middot; ${h.branding(c.rhodecode_name)}
15 %endif
15 %endif
@@ -33,7 +33,7 b''
33 %if integration:
33 %if integration:
34 ${current_IntegrationType.display_name} - ${integration.name}
34 ${current_IntegrationType.display_name} - ${integration.name}
35 %else:
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 %endif
37 %endif
38 </h2>
38 </h2>
39 </div>
39 </div>
@@ -28,11 +28,11 b''
28 </%def>
28 </%def>
29 <div class="panel panel-default">
29 <div class="panel panel-default">
30 <div class="panel-heading">
30 <div class="panel-heading">
31 <h3 class="panel-title">${_('Create new integration')}</h3>
31 <h3 class="panel-title">${_('Create New Integration')}</h3>
32 </div>
32 </div>
33 <div class="panel-body">
33 <div class="panel-body">
34 %if not available_integrations:
34 %if not available_integrations:
35 No integrations available
35 ${_('No integrations available.')}
36 %else:
36 %else:
37 %for integration in available_integrations:
37 %for integration in available_integrations:
38 <%
38 <%
@@ -53,7 +53,7 b''
53 </div>
53 </div>
54 <div class="panel panel-default">
54 <div class="panel panel-default">
55 <div class="panel-heading">
55 <div class="panel-heading">
56 <h3 class="panel-title">${_('Current integrations')}</h3>
56 <h3 class="panel-title">${_('Current Integrations')}</h3>
57 </div>
57 </div>
58 <div class="panel-body">
58 <div class="panel-body">
59 <table class="rctable issuetracker">
59 <table class="rctable issuetracker">
@@ -63,7 +63,7 b''
63 <th>${_('Description')}</th>
63 <th>${_('Description')}</th>
64 <th>${_('Type')}</th>
64 <th>${_('Type')}</th>
65 <th>${_('Actions')}</th>
65 <th>${_('Actions')}</th>
66 <th ></th>
66 <th></th>
67 </tr>
67 </tr>
68 </thead>
68 </thead>
69 <tbody>
69 <tbody>
General Comments 0
You need to be logged in to leave comments. Login now