Skip to content

Commit

Permalink
Fix typo: succesful -> successful.
Browse files Browse the repository at this point in the history
I was looking for a message containing the word 'successful' but could not find it because it was spelled wrongly. :-)
  • Loading branch information
mauritsvanrees committed Aug 16, 2024
1 parent 7e4dfb8 commit 5a005b8
Show file tree
Hide file tree
Showing 38 changed files with 97 additions and 97 deletions.
2 changes: 1 addition & 1 deletion docs/client-api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ In order to authenticate you must submit a JSON object with two keys:
* ``password``: the users password

If authentication failed an error response is returned with status code 403.
If authentication is succesful a JSON response is returned with an
If authentication is successful a JSON response is returned with an
authentication token and a list of existing sessions::

{
Expand Down
2 changes: 1 addition & 1 deletion docs/cms-api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ In order to authenticate you must submit a JSON object with two keys:
* ``password``: the users password

If authentication failed an error response is returned with status code 403.
If authentication is succesful a JSON response is returned with an
If authentication is successful a JSON response is returned with an
authentication token and basic information on the user::

{
Expand Down
6 changes: 3 additions & 3 deletions src/euphorie/client/browser/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def PublishToClient(survey, preview=False):


def handleSurveyPublish(survey, event):
"""Event handler (subscriber) for succesfull workflow transitions for
"""Event handler (subscriber) for successfull workflow transitions for
:py:obj:`ISurvey` objects. This handler copies the survey to the
client.
"""
Expand Down Expand Up @@ -305,7 +305,7 @@ def handlePublish(self, action):
"text_message_publish_success": _(
"message_publish_success",
default=(
"Succesfully published the OiRA Tool. It can be accessed "
"Successfully published the OiRA Tool. It can be accessed "
"at"
),
),
Expand Down Expand Up @@ -370,7 +370,7 @@ def handlePreview(self, action):
"text_message_preview_success": _(
"message_preview_success",
default=(
"Succesfully created a preview for the OiRA Tool. It can "
"Successfully created a preview for the OiRA Tool. It can "
"be accessed at"
),
),
Expand Down
4 changes: 2 additions & 2 deletions src/euphorie/client/tests/stories/CreateAndPublishSurvey.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ We must confirm we want to publish:
'...Are you sure you want to publish this OiRA Tool?...'
>>> browser.getControl(name="form.buttons.button_publish").click()
>>> browser.contents
'...Succesfully published the OiRA Tool. It can be accessed at...'
'...Successfully published the OiRA Tool. It can be accessed at...'

Now lets add a risk:

Expand All @@ -70,4 +70,4 @@ Lets publish our updates now:
>>> button.click()
>>> browser.getControl(name="form.buttons.button_publish").click()
>>> browser.contents
'...Succesfully published the OiRA Tool. It can be accessed at...'
'...Successfully published the OiRA Tool. It can be accessed at...'
2 changes: 1 addition & 1 deletion src/euphorie/client/tests/test_training_questions.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def test_training_questions(self):
self.assertListEqual(view.failed_questions, ["Life on Mars?"])

# There is a certificate view but we cannot see it
# if we have not completed the training succesfully
# if we have not completed the training successfully
with self._get_view(
"training-certificate", traversed_session, self.request.clone()
) as view:
Expand Down
2 changes: 1 addition & 1 deletion src/euphorie/content/behaviour/dirtytree.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
behaviour manages that by tracking creation, deletion, moving and modification
of content objects and updating a dirty flag on the first parent object which
provides the :py:obj:`IDirtyTreeRoot` marker interface. The flag is reset on
succesfull workflow transitions.
successfull workflow transitions.
"""

from Acquisition import aq_base
Expand Down
2 changes: 1 addition & 1 deletion src/euphorie/content/browser/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ def handleUpload(self, action):
)

IStatusMessage(self.request).addStatusMessage(
_("upload_success", default="Succesfully imported the OiRA Tool"),
_("upload_success", default="Successfully imported the OiRA Tool"),
type="success",
)
state = getMultiAdapter((survey, self.request), name="plone_context_state")
Expand Down
2 changes: 1 addition & 1 deletion src/euphorie/content/surveygroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def _canCopy(self, op=0):


def handleSurveyPublish(survey, event):
"""Event handler (subscriber) for succesfull workflow transitions for
"""Event handler (subscriber) for successfull workflow transitions for
:py:obj:`ISurvey` objects. This handler performs necessary housekeeping
tasks on the parent :py:class:`SurveyGroup`.
Expand Down
2 changes: 1 addition & 1 deletion src/euphorie/content/tests/stories/CreateEditPublish.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ We must confirm we want to publish:
'...Are you sure you want to publish this OiRA Tool?...'
>>> browser.getControl(name="form.buttons.button_publish").click()
>>> browser.contents
'...Succesfully published the OiRA Tool. It can be accessed at...'
'...Successfully published the OiRA Tool. It can be accessed at...'
2 changes: 1 addition & 1 deletion src/euphorie/content/versioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def handleSurveyPublish(survey, event):
"""Event handler (subscriber) for succesfull workflow transitions for
"""Event handler (subscriber) for successfull workflow transitions for
:py:obj:`ISurvey` objects. This handler archives the current version.
"""
if event.action not in ["publish", "update"]:
Expand Down
6 changes: 3 additions & 3 deletions src/euphorie/deployment/locales/bg/LC_MESSAGES/euphorie.po
Original file line number Diff line number Diff line change
Expand Up @@ -5857,12 +5857,12 @@ msgstr ""
msgid "message_possible_extra_cost"
msgstr ""

#. Default: "Succesfully created a preview for the OiRA Tool. It can be accessed at"
#. Default: "Successfully created a preview for the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:370
msgid "message_preview_success"
msgstr "Успешно създаден преглед за OiRA инструмента. Достъпен е на адрес"

#. Default: "Succesfully published the OiRA Tool. It can be accessed at"
#. Default: "Successfully published the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:305
msgid "message_publish_success"
msgstr "Успешно публикуване на OiRA инструмента. Достъпен е на"
Expand Down Expand Up @@ -6774,7 +6774,7 @@ msgstr ""
"Сигурни ли сте, че искате да премахнете публикуването на този OiRA "
"инструмент?"

#. Default: "Succesfully imported the OiRA Tool"
#. Default: "Successfully imported the OiRA Tool"
#: euphorie/content/browser/upload.py:589
msgid "upload_success"
msgstr "Успешно импортиран OiRA инстрмент"
Expand Down
6 changes: 3 additions & 3 deletions src/euphorie/deployment/locales/ca/LC_MESSAGES/euphorie.po
Original file line number Diff line number Diff line change
Expand Up @@ -5838,14 +5838,14 @@ msgstr ""
msgid "message_possible_extra_cost"
msgstr ""

#. Default: "Succesfully created a preview for the OiRA Tool. It can be accessed at"
#. Default: "Successfully created a preview for the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:370
msgid "message_preview_success"
msgstr ""
"S'ha creat una previsualització correcta de l'eina OiRA. S'hi pot accedir "
"mitjançant"

#. Default: "Succesfully published the OiRA Tool. It can be accessed at"
#. Default: "Successfully published the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:305
msgid "message_publish_success"
msgstr "L'eina OiRA s'ha publicat correctament. S'hi pot accedir mitjançant"
Expand Down Expand Up @@ -6750,7 +6750,7 @@ msgstr ""
msgid "unpublish_confirm"
msgstr "Està segur que vol despublicar aquesta eina OiRA?"

#. Default: "Succesfully imported the OiRA Tool"
#. Default: "Successfully imported the OiRA Tool"
#: euphorie/content/browser/upload.py:589
msgid "upload_success"
msgstr "L'eina OiRA s'ha importat correctament"
Expand Down
6 changes: 3 additions & 3 deletions src/euphorie/deployment/locales/cs/LC_MESSAGES/euphorie.po
Original file line number Diff line number Diff line change
Expand Up @@ -5734,12 +5734,12 @@ msgstr ""
msgid "message_possible_extra_cost"
msgstr ""

#. Default: "Succesfully created a preview for the OiRA Tool. It can be accessed at"
#. Default: "Successfully created a preview for the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:370
msgid "message_preview_success"
msgstr "Úspěšně vytvořený náhled nástroje OiRA. Přístup k němu je možný na"

#. Default: "Succesfully published the OiRA Tool. It can be accessed at"
#. Default: "Successfully published the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:305
msgid "message_publish_success"
msgstr "Úspěšně publikovaný nástroj OiRA. K dispozici na"
Expand Down Expand Up @@ -6639,7 +6639,7 @@ msgstr ""
msgid "unpublish_confirm"
msgstr "Jste si jist/a, že chcete zrušit publikování tohoto nástroje OiRA?"

#. Default: "Succesfully imported the OiRA Tool"
#. Default: "Successfully imported the OiRA Tool"
#: euphorie/content/browser/upload.py:589
msgid "upload_success"
msgstr "Úspěšně importovaný nástroj OiRA"
Expand Down
6 changes: 3 additions & 3 deletions src/euphorie/deployment/locales/da/LC_MESSAGES/euphorie.po
Original file line number Diff line number Diff line change
Expand Up @@ -5354,12 +5354,12 @@ msgstr ""
msgid "message_possible_extra_cost"
msgstr ""

#. Default: "Succesfully created a preview for the OiRA Tool. It can be accessed at"
#. Default: "Successfully created a preview for the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:370
msgid "message_preview_success"
msgstr ""

#. Default: "Succesfully published the OiRA Tool. It can be accessed at"
#. Default: "Successfully published the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:305
msgid "message_publish_success"
msgstr ""
Expand Down Expand Up @@ -6216,7 +6216,7 @@ msgstr ""
msgid "unpublish_confirm"
msgstr ""

#. Default: "Succesfully imported the OiRA Tool"
#. Default: "Successfully imported the OiRA Tool"
#: euphorie/content/browser/upload.py:589
msgid "upload_success"
msgstr ""
Expand Down
6 changes: 3 additions & 3 deletions src/euphorie/deployment/locales/de/LC_MESSAGES/euphorie.po
Original file line number Diff line number Diff line change
Expand Up @@ -5768,14 +5768,14 @@ msgstr ""
msgid "message_possible_extra_cost"
msgstr ""

#. Default: "Succesfully created a preview for the OiRA Tool. It can be accessed at"
#. Default: "Successfully created a preview for the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:370
msgid "message_preview_success"
msgstr ""
"Die Vorschau für das Tool wurde erfolgreich erstellt. Sie kann hier erreich "
"werden."

#. Default: "Succesfully published the OiRA Tool. It can be accessed at"
#. Default: "Successfully published the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:305
msgid "message_publish_success"
msgstr "OiRA-Tool erfolgreich veröffentlicht. Es kann hier betrachtet werden"
Expand Down Expand Up @@ -6704,7 +6704,7 @@ msgstr ""
"Sind sie sicher, dass Sie die Veröffentlichung dieses OiRA-Tools aufheben "
"möchten?"

#. Default: "Succesfully imported the OiRA Tool"
#. Default: "Successfully imported the OiRA Tool"
#: euphorie/content/browser/upload.py:589
msgid "upload_success"
msgstr "OiRA-Tool erfolgreich importiert."
Expand Down
6 changes: 3 additions & 3 deletions src/euphorie/deployment/locales/el/LC_MESSAGES/euphorie.po
Original file line number Diff line number Diff line change
Expand Up @@ -6026,14 +6026,14 @@ msgstr ""
"κοστολόγηση των σχετικών συμβουλευτικών υπηρεσιών από τον/την πάροχό τους, "
"εφόσον κάτι τέτοιο έχει προσυμφωνηθεί."

#. Default: "Succesfully created a preview for the OiRA Tool. It can be accessed at"
#. Default: "Successfully created a preview for the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:370
msgid "message_preview_success"
msgstr ""
"Επιτυχής δημιουργία προεπισκόπησης για το εργαλείο OiRA. Διατίθεται στη "
"διεύθυνση"

#. Default: "Succesfully published the OiRA Tool. It can be accessed at"
#. Default: "Successfully published the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:305
msgid "message_publish_success"
msgstr "Επιτυχής δημοσίευση του εργαλείου OiRA. Μπορεί να γίνει πρόσβαση στο"
Expand Down Expand Up @@ -6989,7 +6989,7 @@ msgstr ""
"Είστε βέβαιοι ότι θέλετε να αναιρέσετε τη δημοσίευση αυτού του Εργαλείου "
"OiRA; "

#. Default: "Succesfully imported the OiRA Tool"
#. Default: "Successfully imported the OiRA Tool"
#: euphorie/content/browser/upload.py:589
msgid "upload_success"
msgstr "Η εισαγωγή του εργαλείου OiRA ολοκληρώθηκε με επιτυχία"
Expand Down
6 changes: 3 additions & 3 deletions src/euphorie/deployment/locales/en/LC_MESSAGES/euphorie.po
Original file line number Diff line number Diff line change
Expand Up @@ -5349,12 +5349,12 @@ msgstr ""
msgid "message_possible_extra_cost"
msgstr ""

#. Default: "Succesfully created a preview for the OiRA Tool. It can be accessed at"
#. Default: "Successfully created a preview for the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:370
msgid "message_preview_success"
msgstr ""

#. Default: "Succesfully published the OiRA Tool. It can be accessed at"
#. Default: "Successfully published the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:305
msgid "message_publish_success"
msgstr ""
Expand Down Expand Up @@ -6215,7 +6215,7 @@ msgstr ""
msgid "unpublish_confirm"
msgstr ""

#. Default: "Succesfully imported the OiRA Tool"
#. Default: "Successfully imported the OiRA Tool"
#: euphorie/content/browser/upload.py:589
msgid "upload_success"
msgstr ""
Expand Down
6 changes: 3 additions & 3 deletions src/euphorie/deployment/locales/es/LC_MESSAGES/euphorie.po
Original file line number Diff line number Diff line change
Expand Up @@ -5850,14 +5850,14 @@ msgstr ""
msgid "message_possible_extra_cost"
msgstr ""

#. Default: "Succesfully created a preview for the OiRA Tool. It can be accessed at"
#. Default: "Successfully created a preview for the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:370
msgid "message_preview_success"
msgstr ""
"Se ha creado correctamente una vista previa de la herramienta OiRA. Se puede "
"acceder a ella en"

#. Default: "Succesfully published the OiRA Tool. It can be accessed at"
#. Default: "Successfully published the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:305
msgid "message_publish_success"
msgstr "Herramienta OiRA publicada correctamente. Se puede acceder a través de"
Expand Down Expand Up @@ -6767,7 +6767,7 @@ msgid "unpublish_confirm"
msgstr ""
"¿Está seguro de que desea retirar la publicación de esta herramienta OiRA?"

#. Default: "Succesfully imported the OiRA Tool"
#. Default: "Successfully imported the OiRA Tool"
#: euphorie/content/browser/upload.py:589
msgid "upload_success"
msgstr "Herramienta OiRA importada con éxito"
Expand Down
6 changes: 3 additions & 3 deletions src/euphorie/deployment/locales/et/LC_MESSAGES/euphorie.po
Original file line number Diff line number Diff line change
Expand Up @@ -5353,12 +5353,12 @@ msgstr ""
msgid "message_possible_extra_cost"
msgstr ""

#. Default: "Succesfully created a preview for the OiRA Tool. It can be accessed at"
#. Default: "Successfully created a preview for the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:370
msgid "message_preview_success"
msgstr ""

#. Default: "Succesfully published the OiRA Tool. It can be accessed at"
#. Default: "Successfully published the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:305
msgid "message_publish_success"
msgstr ""
Expand Down Expand Up @@ -6215,7 +6215,7 @@ msgstr ""
msgid "unpublish_confirm"
msgstr ""

#. Default: "Succesfully imported the OiRA Tool"
#. Default: "Successfully imported the OiRA Tool"
#: euphorie/content/browser/upload.py:589
msgid "upload_success"
msgstr ""
Expand Down
6 changes: 3 additions & 3 deletions src/euphorie/deployment/locales/euphorie.pot
Original file line number Diff line number Diff line change
Expand Up @@ -5263,12 +5263,12 @@ msgstr ""
msgid "message_possible_extra_cost"
msgstr ""

#. Default: "Succesfully created a preview for the OiRA Tool. It can be accessed at"
#. Default: "Successfully created a preview for the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:370
msgid "message_preview_success"
msgstr ""

#. Default: "Succesfully published the OiRA Tool. It can be accessed at"
#. Default: "Successfully published the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:305
msgid "message_publish_success"
msgstr ""
Expand Down Expand Up @@ -6128,7 +6128,7 @@ msgstr ""
msgid "unpublish_confirm"
msgstr ""

#. Default: "Succesfully imported the OiRA Tool"
#. Default: "Successfully imported the OiRA Tool"
#: euphorie/content/browser/upload.py:589
msgid "upload_success"
msgstr ""
Expand Down
6 changes: 3 additions & 3 deletions src/euphorie/deployment/locales/fi/LC_MESSAGES/euphorie.po
Original file line number Diff line number Diff line change
Expand Up @@ -5828,12 +5828,12 @@ msgstr ""
msgid "message_possible_extra_cost"
msgstr ""

#. Default: "Succesfully created a preview for the OiRA Tool. It can be accessed at"
#. Default: "Successfully created a preview for the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:370
msgid "message_preview_success"
msgstr "OiRA-työkalun esikatselu on luotu. Siihen pääsee osoitteesta"

#. Default: "Succesfully published the OiRA Tool. It can be accessed at"
#. Default: "Successfully published the OiRA Tool. It can be accessed at"
#: euphorie/client/browser/publish.py:305
msgid "message_publish_success"
msgstr "OiRA-työkalun julkaisu onnistui. Sen voi hakea osoitteesta"
Expand Down Expand Up @@ -6746,7 +6746,7 @@ msgstr ""
msgid "unpublish_confirm"
msgstr "Haluatko varmasti peruuttaa tämän OiRA-työkalun julkaisun?"

#. Default: "Succesfully imported the OiRA Tool"
#. Default: "Successfully imported the OiRA Tool"
#: euphorie/content/browser/upload.py:589
msgid "upload_success"
msgstr "OiRA-työkalun tuonti onnistui"
Expand Down
Loading

0 comments on commit 5a005b8

Please sign in to comment.