Commit 06e7bbc6 authored by Angelo Gulina's avatar Angelo Gulina Committed by Paul Slaughter

Fix typo in message

Some error messages contained a wrong spelling of `occurred`
MR: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/78900/

Changelog: fixed
parent b1793f73
......@@ -39,7 +39,7 @@ export default {
this.jobsPageInfo = data.project?.pipeline?.jobs?.pageInfo || {};
},
error() {
createFlash({ message: __('An error occured while fetching the pipelines jobs.') });
createFlash({ message: __('An error occurred while fetching the pipelines jobs.') });
},
},
},
......
......@@ -15,7 +15,7 @@
.gl-alert-container
= sprite_icon('error', size: 16, css_class: 'gl-icon gl-alert-icon gl-alert-icon-no-title')
.gl-alert-content
%h4.gl-alert-title= _('Internal error occured while delivering this webhook.')
%h4.gl-alert-title= _('Internal error occurred while delivering this webhook.')
.gl-alert-body
= _('Error: %{error}') % { error: hook_log.internal_error_message }
......
import { s__ } from '~/locale';
export const GENERAL_ERROR_MESSAGE = s__(
'PurchaseStep|An error occured in the purchase step. If the problem persists please contact support@gitlab.com.',
'PurchaseStep|An error occurred in the purchase step. If the problem persists please contact support@gitlab.com.',
);
......@@ -3653,9 +3653,6 @@ msgstr ""
msgid "An error in reporting in which a test result incorrectly indicates the presence of a vulnerability in a system when the vulnerability is not present."
msgstr ""
msgid "An error occured while fetching the pipelines jobs."
msgstr ""
msgid "An error occurred adding a draft to the thread."
msgstr ""
......@@ -3803,6 +3800,9 @@ msgstr ""
msgid "An error occurred while fetching the latest pipeline."
msgstr ""
msgid "An error occurred while fetching the pipelines jobs."
msgstr ""
msgid "An error occurred while fetching the releases. Please try again."
msgstr ""
......@@ -19349,7 +19349,7 @@ msgstr ""
msgid "Internal URL (optional)"
msgstr ""
msgid "Internal error occured while delivering this webhook."
msgid "Internal error occurred while delivering this webhook."
msgstr ""
msgid "Internal users"
......@@ -29056,7 +29056,7 @@ msgstr ""
msgid "Purchase more storage"
msgstr ""
msgid "PurchaseStep|An error occured in the purchase step. If the problem persists please contact support@gitlab.com."
msgid "PurchaseStep|An error occurred in the purchase step. If the problem persists please contact support@gitlab.com."
msgstr ""
msgid "Push"
......
......@@ -74,7 +74,7 @@ describe('Jobs app', () => {
await waitForPromises();
expect(createFlash).toHaveBeenCalledWith({
message: 'An error occured while fetching the pipelines jobs.',
message: 'An error occurred while fetching the pipelines jobs.',
});
});
......
......@@ -18,7 +18,7 @@ RSpec.shared_examples_for 'graphql mutations security ci configuration' do
ServiceResponse.success(payload: { branch: branch, success_path: success_path })
end
let(:error) { "An error occured!" }
let(:error) { "An error occurred!" }
let(:service_error_response) do
ServiceResponse.error(message: error)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment