##// END OF EJS Templates
scm: remove scm command and version on project setting (#4273)....
Toshi MARUYAMA -
r5835:3720d7f6f229
parent child
Show More
@@ -8,12 +8,10
8 <div class="box tabular">
8 <div class="box tabular">
9 <p>
9 <p>
10 <%= label_tag('repository_scm', l(:label_scm)) %><%= scm_select_tag(@repository) %>
10 <%= label_tag('repository_scm', l(:label_scm)) %><%= scm_select_tag(@repository) %>
11 <% if @repository %>
11 <% if @repository && ! @repository.class.scm_available %>
12 <br />
12 <br />
13 <%= image_tag((@repository.class.scm_available ? 'true.png' : 'exclamation.png'))%>
13 <%= image_tag((@repository.class.scm_available ? 'true.png' : 'exclamation.png'))%>
14 <%= l(:text_scm_command) -%>: <%= @repository.class.scm_command %>
14 <%= l(:text_scm_command_not_available) %>
15 |
16 <%= l(:text_scm_command_version) -%>: <%= @repository.class.scm_version_string %>
17 <% end %>
15 <% end %>
18 </p>
16 </p>
19 <% button_disabled = true %>
17 <% button_disabled = true %>
@@ -947,6 +947,7 en:
947 text_scm_command: Command
947 text_scm_command: Command
948 text_scm_command_version: Version
948 text_scm_command_version: Version
949 text_scm_config: You can configure your scm commands in config/configuration.yml. Please restart the application after editing it.
949 text_scm_config: You can configure your scm commands in config/configuration.yml. Please restart the application after editing it.
950 text_scm_command_not_available: Scm command is not available. Please check settings on the administration panel.
950
951
951 default_role_manager: Manager
952 default_role_manager: Manager
952 default_role_developer: Developer
953 default_role_developer: Developer
General Comments 0
You need to be logged in to leave comments. Login now