Skip to content
This repository was archived by the owner on Jan 8, 2019. It is now read-only.

Commit 5fea67d

Browse files
author
Lennart Koopmann
committed
styling, say output everywhere not input
1 parent 2909ea0 commit 5fea67d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/views/streams/outputs/index.scala.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h1>
2222
@if(isPermitted(OUTPUTS_CREATE)) {
2323
<div class="output-new">
2424
<select id="input-type">
25-
<option selected disabled>-- Select new output type --</option>
25+
<option selected disabled>Select type of new output</option>
2626
@for((inputType,info) <- availableOutputs.toSeq.sortBy(_._2.name)) {
2727
<option value="@inputType">@info.name</option>
2828
}
@@ -38,12 +38,12 @@ <h1>
3838
@helper.form(routes.StreamOutputsController.add(stream.getId)) {
3939
<select name="outputId">
4040
@if(otherOutputs.size > 0) {
41-
<option selected disabled>-- Select existing output --</option>
41+
<option selected disabled>Select existing output</option>
4242
@for(output <- otherOutputs.toSeq.sortBy(_.getTitle)) {
4343
<option value="@output.getId">@output.getTitle</option>
4444
}
4545
} else {
46-
<option disabled>-- No outputs available --</option>
46+
<option disabled>No outputs available</option>
4747
}
4848
</select>
4949

app/views/system/outputs/partials/output_creation_forms.scala.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
1010
<h2>
1111
<i class="icon-signin"></i>
12-
Launch new input: <em>@info.name</em>
12+
Launch new output: <em>@info.name</em>
1313
</h2>
1414
</div>
1515

@@ -20,7 +20,7 @@ <h2>
2020
<div class="modal-body">
2121

2222
<label>Title</label>
23-
<span class="help-block">Select a name of your new input that describes it.</span>
23+
<span class="help-block">Select a name of your new output that describes it.</span>
2424
<input name="title" required="true" type="text" class="input-xlarge">
2525

2626
@for(field <- info.getRequestedConfiguration) {

0 commit comments

Comments
 (0)