Skip to content

Commit 43d9928

Browse files
committed
Rename workflow to contribute (module, column)
1 parent 9dd8896 commit 43d9928

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
File renamed without changes.

generate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from git import Repo
1919
from jinja2 import Template
2020

21-
import workflow
21+
import contribute
2222
import repositories
2323
import build_status
2424
import visitors
@@ -55,8 +55,8 @@ def get_completion_progress() -> (
5555
for lang, repo in repositories.get_languages_and_repos(devguide_dir):
5656
built = lang in languages_built
5757
in_switcher = languages_built.get(lang)
58-
tx = lang in workflow.pulling_from_transifex
59-
contrib_link = workflow.get_contrib_link(lang)
58+
tx = lang in contribute.pulling_from_transifex
59+
contrib_link = contribute.get_contrib_link(lang)
6060
if not repo:
6161
yield lang, cast(str, repo), 0.0, 0, 0, built, in_switcher, False, False
6262
continue

template.html.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<thead>
1010
<tr>
1111
<th>language</th>
12-
<th>workflow</th>
12+
<th>contribute</th>
1313
<th>build</th>
1414
<th><a href="https://plausible.io/data-policy#how-we-count-unique-users-without-cookies" target="_blank">visitors</a></th>
1515
<th>translators</th>
@@ -28,7 +28,7 @@
2828
{% else %}
2929
<td data-label="language">{{ language }}</td>
3030
{% endif %}
31-
<td data-label="workflow">
31+
<td data-label="contribute">
3232
{% if contrib_link %}<a href="{{ contrib_link }}" target="_blank">{% endif %}
3333
{% if on_platform %}platform{% else %}repository{% endif %}
3434
{% if contrib_link %}</a>{% endif %}

0 commit comments

Comments
 (0)