forked from mitre-cyber-academy/ctf-scoreboard
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run spellcheck as part of CI pipeline (mitre-cyber-academy#531)
* Install hunspell as part of the CI pipeline
- Loading branch information
1 parent
7355dc0
commit b9418f6
Showing
6 changed files
with
460 additions
and
347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,94 @@ | ||
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n | ||
|
||
en: | ||
errors: | ||
messages: | ||
expired: "has expired, please request a new one" | ||
not_found: "not found" | ||
already_confirmed: "was already confirmed, please try signing in" | ||
not_locked: "was not locked" | ||
expired: 'has expired, please request a new one' | ||
not_found: not found | ||
already_confirmed: 'was already confirmed, please try signing in' | ||
not_locked: was not locked | ||
not_saved: | ||
one: "1 error prohibited this %{resource} from being saved:" | ||
other: "%{count} errors prohibited this %{resource} from being saved:" | ||
|
||
one: '1 error prohibited this %{resource} from being saved:' | ||
other: '%{count} errors prohibited this %{resource} from being saved:' | ||
devise: | ||
failure: | ||
already_authenticated: 'You are already signed in.' | ||
unauthenticated: 'You need to sign in or sign up before continuing.' | ||
unconfirmed: 'You have to confirm your account before continuing.' | ||
locked: 'Your account is locked.' | ||
invalid: 'Invalid email or password.' | ||
invalid_token: 'Invalid authentication token.' | ||
already_authenticated: You are already signed in. | ||
unauthenticated: You need to sign in or sign up before continuing. | ||
unconfirmed: You have to confirm your account before continuing. | ||
locked: Your account is locked. | ||
invalid: Invalid email or password. | ||
invalid_token: Invalid authentication token. | ||
timeout: 'Your session expired, please sign in again to continue.' | ||
inactive: 'Your account was not activated yet.' | ||
inactive: Your account was not activated yet. | ||
sessions: | ||
signed_in: 'Signed in successfully.' | ||
signed_out: 'Signed out successfully.' | ||
signed_in: Signed in successfully. | ||
signed_out: Signed out successfully. | ||
passwords: | ||
reset: 'Reset your password' | ||
send_instructions: 'You will receive an email with instructions about how to reset your password in a few minutes.' | ||
updated: 'Your password was changed successfully. You are now signed in.' | ||
updated_not_active: 'Your password was changed successfully.' | ||
send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes." | ||
no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided." | ||
reset: Reset your password | ||
send_instructions: >- | ||
You will receive an email with instructions about how to reset your | ||
password in a few minutes. | ||
updated: Your password was changed successfully. You are now signed in. | ||
updated_not_active: Your password was changed successfully. | ||
send_paranoid_instructions: >- | ||
If your email address exists in our database, you will receive a | ||
password recovery link at your email address in a few minutes. | ||
no_token: >- | ||
You can't access this page without coming from a password reset email. | ||
If you do come from a password reset email, please make sure you used | ||
the full URL provided. | ||
confirmations: | ||
resend_email: 'Resend confirmation email' | ||
send_instructions: 'You will receive an email with instructions about how to confirm your account in a few minutes.' | ||
send_paranoid_instructions: 'If your email address exists in our database, you will receive an email with instructions about how to confirm your account in a few minutes.' | ||
confirmed: 'Your account was successfully confirmed. Please sign in.' | ||
resend_email: Resend confirmation email | ||
send_instructions: >- | ||
You will receive an email with instructions about how to confirm your | ||
account in a few minutes. | ||
send_paranoid_instructions: >- | ||
If your email address exists in our database, you will receive an email | ||
with instructions about how to confirm your account in a few minutes. | ||
confirmed: Your account was successfully confirmed. Please sign in. | ||
registrations: | ||
signed_up: 'Welcome! You have signed up successfully.' | ||
signed_up_but_unconfirmed: 'A message with a confirmation link has been sent to your email address. Please open the link to activate your account.' | ||
signed_up_but_inactive: 'You have signed up successfully. However, we could not sign you in because your account is not yet activated.' | ||
signed_up_but_locked: 'You have signed up successfully. However, we could not sign you in because your account is locked.' | ||
updated: 'You updated your account successfully.' | ||
update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalize confirming your new email address." | ||
destroyed: 'Bye! Your account was successfully cancelled. We hope to see you again soon.' | ||
captain_tried_to_destroy: 'Team captains must promote a team member to team captain before deleting their account.' | ||
password_needed_destroy: 'You need to provide your current password to delete your account.' | ||
recaptcha_failed: 'Potential bot activity detected. Please ensure that Javascript is enabled in your browser and try again.' | ||
new_user: 'Register a new user' | ||
signed_up: Welcome! You have signed up successfully. | ||
signed_up_but_unconfirmed: >- | ||
A message with a confirmation link has been sent to your email address. | ||
Please open the link to activate your account. | ||
signed_up_but_inactive: >- | ||
You have signed up successfully. However, we could not sign you in | ||
because your account is not yet activated. | ||
signed_up_but_locked: >- | ||
You have signed up successfully. However, we could not sign you in | ||
because your account is locked. | ||
updated: You updated your account successfully. | ||
update_needs_confirmation: >- | ||
You updated your account successfully, but we need to verify your new | ||
email address. Please check your email and click on the confirm link to | ||
finalize confirming your new email address. | ||
destroyed: >- | ||
Bye! Your account was successfully canceled. We hope to see you again | ||
soon. | ||
captain_tried_to_destroy: >- | ||
Team captains must promote a team member to team captain before deleting | ||
their account. | ||
password_needed_destroy: You need to provide your current password to delete your account. | ||
recaptcha_failed: >- | ||
Potential bot activity detected. Please ensure that JavaScript is | ||
enabled in your browser and try again. | ||
new_user: Register a new user | ||
unlocks: | ||
resend: 'Resend unlock instructions' | ||
missing_instructions: "Didn't receive unlock instructions?" | ||
send_instructions: 'You will receive an email with instructions about how to unlock your account in a few minutes.' | ||
unlocked: 'Your account has been unlocked successfully. Please sign in to continue.' | ||
send_paranoid_instructions: 'If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.' | ||
resend: Resend unlock instructions | ||
missing_instructions: Didn't receive unlock instructions? | ||
send_instructions: >- | ||
You will receive an email with instructions about how to unlock your | ||
account in a few minutes. | ||
unlocked: Your account has been unlocked successfully. Please sign in to continue. | ||
send_paranoid_instructions: >- | ||
If your account exists, you will receive an email with instructions | ||
about how to unlock it in a few minutes. | ||
omniauth_callbacks: | ||
sign_in_with: "Sign in with %{provider}" | ||
sign_in_with: 'Sign in with %{provider}' | ||
success: 'Successfully authenticated from %{kind} account.' | ||
failure: 'Could not authenticate you from %{kind} because "%{reason}".' | ||
mailer: | ||
confirmation_instructions: | ||
subject: 'Confirmation instructions' | ||
subject: Confirmation instructions | ||
reset_password_instructions: | ||
subject: 'Reset password instructions' | ||
subject: Reset password instructions | ||
unlock_instructions: | ||
subject: 'Unlock Instructions' | ||
subject: Unlock Instructions |
Oops, something went wrong.