hummingbird-me/kitsu-server

View on GitHub
config/locales/en.yml

Summary

Maintainability
Test Coverage
# 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, please read the Rails Internationalization guide
# available at http://guides.rubyonrails.org/i18n.html.

en:
  errors:
    standard_error: 'An unknown error occurred'
    not_logged_in_error: 'Must be logged in to do that'
    stripe:
      card_error: 'Invalid card'
      api_connection_error: 'Failed to connect to credit card network'
      stripe_error: 'Something went wrong while processing the transaction'
    pro_error:
      invalid_self_gift: 'Cannot gift to self'
      recipient_is_pro: 'Cannot gift to a user who already has pro'
      invalid_tier: 'That is not a valid tier of pro'
    strait:
      rate_limit_exceeded: 'Rate limit exceeded'
  notifications:
    mention:
      post: "%{actor} mentioned you in a post."
      comment: "%{actor} mentioned you in a comment."
    follow: "%{actor} followed you."
    post_like: "%{actor} liked your post."
    comment_like: "%{actor} liked your comment."
    reply:
      post:
        you: "%{actor} replied to your post."
        themself: "%{actor} replied to their post."
        author: "%{actor} replied to %{author}'s post."
        unknown: "%{actor} replied to a post."
      comment:
        you: "%{actor} replied to your comment."
    invited: "%{actor} invited you to a group."
    aired:
      anime: "Episode %{number} of %{title} aired!"
      manga: "Chapter %{number} of %{title} was released!"
  pro_mailer:
    gift_email:
      subject: "%{name} has given you Kitsu %{tier}!"
    welcome_email:
      subject: "Welcome to Kitsu %{tier}"
    cancellation_email:
      subject: "Your Kitsu %{tier} subscription has been cancelled"
  graphql:
    errors:
      warnings_present: "A warning was present and ignore_warnings was not set to true"
      validation: "An input was not valid"
      not_authorized: "You are not authorized to perform this action"
      not_authenticated: "You must be logged in to perform this action"
      not_found: "The resource you were looking for could not be found"
      generic: "An unknown error occurred"
      password_incorrect: "The provided password was incorrect"