Files
old-zsterminator/config/locales/en.yml
2025-08-19 07:24:18 +02:00

182 lines
5.4 KiB
YAML

# 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:
# Add English translations here
hello: "Hello world"
customers:
create:
customer_created: "Customer was successfully created."
update:
customer_updated: "Customer was successfully updated."
destroy:
customer_destroyed: "Customer was successfully destroyed."
customer:
already_exists: "This customer already exists in this company"
reservations:
create:
reservation_created: "Reservation was successfully created."
update:
reservation_updated: "Reservation was successfully updated."
destroy:
reservation_destroyed: "Reservation was successfully destroyed."
index:
title: "Reservations"
prev: "« Prev"
today: "Today"
next: "Next »"
new_reservation: "New reservation"
filter_by_team: "Filter by team"
all_teams: "All teams"
calendar:
hours: "hours"
delete_confirm: "Are you sure you want to delete this reservation?"
delete_success: "Reservation deleted."
delete_error: "Error deleting reservation."
network_error: "Error deleting reservation due to a network or script issue."
edit: "Edit"
delete: "Delete"
all_teams: "All teams"
edit:
title: "Editing reservation"
show: "Show this reservation"
back: "Back to reservations"
new:
title: "New reservation"
back: "Back to reservations"
form:
customer: "Customer"
search_prompt: "Type to search customers..."
phone_number: "Phone number"
first_name: "First name"
surname: "Surname"
birth_year: "Birth year"
customer_color: "Customer color"
select_color: "Select customer color"
green: "Green"
yellow: "Yellow"
red: "Red"
team: "Team"
select_team: "Select a team"
start_time: "Start time"
end_time: "End time"
submit: "Submit"
update: "Update Reservation"
create: "Create Reservation"
errors:
header: "%{count} prohibited this reservation from being saved:"
teams:
create:
team_created: "Team was successfully created."
update:
team_updated: "Team was successfully updated."
destroy:
team_destroyed: "Team was successfully destroyed."
index:
title: "Teams"
new_team: "New team"
show_team: "Show this team"
new:
title: "New team"
back: "Back to teams"
edit:
title: "Editing team"
show: "Show this team"
back: "Back to teams"
show:
edit: "Edit this team"
back: "Back to teams"
destroy: "Destroy this team"
form:
name: "Name"
submit: "Submit"
update: "Update Team"
create: "Create Team"
errors:
header: "%{count} prohibited this team from being saved:"
companies:
create:
company_created: "Company was successfully created."
update:
company_updated: "Company was successfully updated."
destroy:
company_destroyed: "Company was successfully destroyed."
index:
title: "Companies"
new_company: "New company"
show_company: "Show this company"
new:
title: "New company"
back: "Back to companies"
edit:
title: "Editing company"
show: "Show this company"
back: "Back to companies"
show:
edit: "Edit this company"
back: "Back to companies"
destroy: "Destroy this company"
form:
name: "Name"
id_number: "ID number"
vat_number: "VAT number"
address_line_one: "Address line one"
address_line_two: "Address line two"
postal_code: "Postal code"
city: "City"
entity: "Entity"
country: "Country"
submit: "Submit"
update: "Update Company"
create: "Create Company"
errors:
header: "%{count} prohibited this company from being saved:"
company:
name: "Name:"
id_number: "ID number:"
vat_number: "VAT number:"
address_line_one: "Address line one:"
address_line_two: "Address line two:"
postal_code: "Postal code:"
city: "City:"
entity: "Entity:"
country: "Country:"
sessions:
login: "Login"
username_or_email: "Username or Email"
username_or_email_placeholder: "Enter username or email"
password: "Password"
password_placeholder: "Enter password"
login_button: "Log In"
logout_button: "Log Out"
login_successful: "Successfully logged in!"
logout_successful: "Successfully logged out!"
invalid_credentials: "Invalid username/email or password"
login_required: "Please log in to access this page"