Skip to content

Commit

Permalink
config
Browse files Browse the repository at this point in the history
  • Loading branch information
kazet committed Jan 24, 2024
1 parent f347238 commit a83161a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions app/templates/check_running.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
{% block body %}
<div class="container">
<div class="p-4">
<h1>{% trans %}Domain analysis is running{% endtrans %}</h1>
<h1>{% trans %}Configuration analysis is running{% endtrans %}</h1>
<div>
<img class="float-start" src="/static/images/spinner.svg" />
<div class="py-5">
<h5 class="waiting">{% trans %}Waiting for the domain analysis to finish{% endtrans %}</h5>
<h5 class="waiting">{% trans %}Waiting for the analysis to finish{% endtrans %}</h5>
<div>{% trans %}This page will refresh automatically.{% endtrans %}</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions app/translations/en_US/LC_MESSAGES/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -241,11 +241,11 @@ msgid ""
msgstr ""

#: app/templates/check_running.html:10
msgid "Domain analysis is running"
msgid "Configuration analysis is running"
msgstr ""

#: app/templates/check_running.html:14
msgid "Waiting for the domain analysis to finish"
msgid "Waiting for the analysis to finish"
msgstr ""

#: app/templates/check_running.html:15
Expand Down
4 changes: 2 additions & 2 deletions app/translations/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -241,11 +241,11 @@ msgid ""
msgstr ""

#: app/templates/check_running.html:10
msgid "Domain analysis is running"
msgid "Configuration analysis is running"
msgstr ""

#: app/templates/check_running.html:14
msgid "Waiting for the domain analysis to finish"
msgid "Waiting for the analysis to finish"
msgstr ""

#: app/templates/check_running.html:15
Expand Down
6 changes: 3 additions & 3 deletions app/translations/pl_PL/LC_MESSAGES/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,11 @@ msgstr ""
"zostać znalezione dopiero po udanym wykonaniu wcześniejszych testów."

#: app/templates/check_running.html:10
msgid "Domain analysis is running"
msgstr "Trwa analiza domeny"
msgid "Configuration analysis is running"
msgstr "Trwa analiza konfiguracji"

#: app/templates/check_running.html:14
msgid "Waiting for the domain analysis to finish"
msgid "Waiting for the analysis to finish"
msgstr "Oczekiwanie na zakończenie analizy"

#: app/templates/check_running.html:15
Expand Down
2 changes: 1 addition & 1 deletion test/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def check_domain(self, domain: str) -> str:
results_response = requests.get(results_url)
results_response.raise_for_status()

while "Domain analysis is running" in results_response.text:
while "Configuration analysis is running" in results_response.text:
results_response = requests.get(results_url)
results_response.raise_for_status()

Expand Down

0 comments on commit a83161a

Please sign in to comment.