Skip to content

Commit e6aed98

Browse files
committed
better messages, fix typos
1 parent 364ede5 commit e6aed98

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

_includes/life_cycle.html

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,31 +37,35 @@
3737
- transition-step-1 (`transition_url` variable needed): we indicate that there
3838
is a new version of the lesson that is available for testing, and that it will be deprecated in the future.
3939
- transition-step-2 (`transition_url` and `transition_date` variables needed): we indicate that a new version of the lesson is avaiable with a deprecation date.
40-
- transition-step-3 (`transition_url` variable needed): the lesson if fully deprecated, and a redirect is set up to the new URL
40+
- transition-step-3 (`transition_url` variable needed): the lesson is fully deprecated, and a redirect is set up to the new URL
4141
{% endcomment %}
4242

4343
{% elsif site.life_cycle == "transition-step-1" %}
4444
{% include check_transition_variables.html need_transition_date = 'false' %}
4545

4646
<div class="alert alert-warning life-cycle">
47-
A newer version of this lesson is being tested:
47+
A newer version of this lesson is being tested on The Carpentries Workbench:
4848
<a href="{{ site.transition_url }}">{{ site.transition_url }}</a>.
49-
This lesson will become deprecated in the near future.
49+
The Jekyll version of this lesson will become deprecated in the near future.
5050
</div>
5151

5252
{% elsif site.life_cycle == "transition-step-2" %}
5353
{% include check_transition_variables.html need_transition_date = 'true' %}
5454

5555
<div class="alert alert-danger life-cycle">
56-
A newer version of this lesson is available from: <a href="{{ site.transition_url }}">{{ site.transition_url }}</a>.
57-
This lesson will become deprecated on {{ site.transition_date }}.
56+
A newer version of this lesson is available from:
57+
<a href="{{ site.transition_url }}">{{ site.transition_url }}</a>.
58+
The Jekyll version of this lesson will become deprecated on
59+
{{ site.transition_date }}.
5860
</div>
5961

6062
{% elsif site.life_cycle == "transition-step-3" %}
6163
{% include check_transition_variables.html need_transition_date = 'false' %}
6264

6365
<div class="alert alert-danger life-cycle">
64-
This lesson is deprecated. A newer version is available from: <a href="{{ site.transition_url }}">{{ site.transition_url }}</a>.
66+
You are veiwing a deprecated version of this lesson. An updated version is
67+
available from:
68+
<a href="{{ site.transition_url }}">{{ site.transition_url }}</a>.
6569
</div>
6670

6771
{% endif %}

0 commit comments

Comments
 (0)