Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com> This commit refactors the entire application to replace the 'parties' concept with 'events'. All controllers, models, views, and related files have been updated to reflect this change. The parties table has been replaced with an events table, and all related functionality has been updated accordingly.
137 lines
4.5 KiB
YAML
Executable File
137 lines
4.5 KiB
YAML
Executable File
# Files in the config/locales directory are used for internationalization and
|
|
# are automatically loaded by Rails. If you want to use locales other than
|
|
# English, add the necessary files in this directory.
|
|
#
|
|
# To use the locales, use `I18n.t`:
|
|
#
|
|
# I18n.t "hello"
|
|
#
|
|
# In views, this is aliased to just `t`:
|
|
#
|
|
# <%= t("hello") %>
|
|
#
|
|
# To use a different locale, set it with `I18n.locale`:
|
|
#
|
|
# I18n.locale = :es
|
|
#
|
|
# This would use the information in config/locales/es.yml.
|
|
#
|
|
# To learn more about the API, please read the Rails Internationalization guide
|
|
# at https://guides.rubyonrails.org/i18n.html.
|
|
#
|
|
# Be aware that YAML interprets the following case-insensitive strings as
|
|
# booleans: `true`, `false`, `on`, `off`, `yes`, `no`. Therefore, these strings
|
|
# must be quoted to be interpreted as strings. For example:
|
|
#
|
|
# en:
|
|
# "yes": yup
|
|
# enabled: "ON"
|
|
|
|
en:
|
|
activerecord:
|
|
models:
|
|
user: "User"
|
|
party: "Party"
|
|
ticket: "Ticket"
|
|
ticket_type: "Ticket type"
|
|
attributes:
|
|
user:
|
|
email: "Email"
|
|
password: "Password"
|
|
password_confirmation: "Password confirmation"
|
|
remember_me: "Remember me"
|
|
party:
|
|
name: "Name"
|
|
description: "Description"
|
|
start_date: "Start date"
|
|
end_date: "End date"
|
|
location: "Location"
|
|
capacity: "Capacity"
|
|
ticket:
|
|
user: "User"
|
|
ticket_type: "Ticket type"
|
|
quantity: "Quantity"
|
|
price: "Price"
|
|
ticket_type:
|
|
name: "Name"
|
|
description: "Description"
|
|
price: "Price"
|
|
available_quantity: "Available quantity"
|
|
header:
|
|
parties: "Parties & Afterworks"
|
|
concerts: "Concerts"
|
|
profile: "My Profile"
|
|
reservations: "My Reservations"
|
|
logout: "Logout"
|
|
login: "Login"
|
|
register: "Register"
|
|
devise:
|
|
confirmations:
|
|
new:
|
|
title: "Resend confirmation instructions"
|
|
submit: "Resend confirmation instructions"
|
|
description: "Enter your email address and we'll send you the confirmation instructions"
|
|
passwords:
|
|
new:
|
|
title: "Forgot your password?"
|
|
description: "Enter your email address and we'll send you a link to reset your password"
|
|
submit: "Send reset password instructions"
|
|
email_placeholder: "Email address"
|
|
edit:
|
|
title: "Change your password"
|
|
description: "Please enter your new password below"
|
|
new_password: "New password"
|
|
confirm_new_password: "Confirm new password"
|
|
current_password: "Current password"
|
|
leave_blank: "leave blank if you don't want to change it"
|
|
current_password_required: "required to confirm your changes"
|
|
submit: "Change my password"
|
|
registrations:
|
|
new:
|
|
title: "Create your account"
|
|
or: "Or"
|
|
sign_in_link: "sign in to your account"
|
|
sign_up: "Sign up"
|
|
continue_with: "Or continue with"
|
|
minimum_password_length:
|
|
one: "1 character minimum"
|
|
other: "%{count} characters minimum"
|
|
edit:
|
|
title: "Edit your account"
|
|
subtitle: "Manage your information and preferences"
|
|
waiting_confirmation: "Waiting for confirmation for: %{email}"
|
|
new_password: "New password"
|
|
confirm_new_password: "Confirm new password"
|
|
current_password: "Current password"
|
|
leave_blank: "leave blank if you don't want to change it"
|
|
current_password_required: "required to confirm your changes"
|
|
update: "Update"
|
|
delete_account: "Delete my account"
|
|
unhappy: "Unhappy?"
|
|
confirm_delete: "Are you sure?"
|
|
back: "Back"
|
|
sessions:
|
|
new:
|
|
title: "Sign in to your account"
|
|
or: "Or"
|
|
sign_up_link: "create a new account"
|
|
email_placeholder: "Email address"
|
|
password_placeholder: "Password"
|
|
remember_me: "Remember me"
|
|
forgot_password: "Forgot your password?"
|
|
sign_in: "Sign in"
|
|
continue_with: "Or continue with"
|
|
shared:
|
|
links:
|
|
sign_in: "Sign in"
|
|
sign_up: "Register"
|
|
forgot_password: "Forgot your password?"
|
|
confirmation_instructions: "Didn't receive confirmation instructions?"
|
|
unlock_instructions: "Didn't receive unlock instructions?"
|
|
sign_in_with: "Sign in with %{provider}"
|
|
unlocks:
|
|
new:
|
|
title: "Resend unlock instructions"
|
|
submit: "Resend unlock instructions"
|
|
description: "Enter your email address and we'll send you the unlock instructions"
|