master
  1# Files in the config/locales directory are used for internationalization
  2# and are automatically loaded by Rails. If you want to use locales other
  3# than English, add the necessary files in this directory.
  4#
  5# To use the locales, use `I18n.t`:
  6#
  7#     I18n.t 'hello'
  8#
  9# In views, this is aliased to just `t`:
 10#
 11#     <%= t('hello') %>
 12#
 13# To use a different locale, set it with `I18n.locale`:
 14#
 15#     I18n.locale = :es
 16#
 17# This would use the information in config/locales/es.yml.
 18#
 19# To learn more, please read the Rails Internationalization guide
 20# available at http://guides.rubyonrails.org/i18n.html.
 21
 22en:
 23  activerecord:
 24    models:
 25      profile: Profile
 26      warm_up_set: Warm Up Set
 27      work_set: Work Set
 28    attributes:
 29      exercise_set:
 30        target_duration: Target duration (seconds)
 31        target_repetitions: Repetitions
 32        target_weight: Weight (lbs)
 33      profile:
 34        female: Female
 35        gender: Gender
 36        high: High
 37        low: Low
 38        male: Male
 39        medium: Medium
 40        other: Other
 41        transgender: Transgender
 42        social_tolerance: Social Tolerance
 43      user:
 44        import_address: Send-to-Strong-Lifters
 45      workout:
 46        body_weight: Body weight (lbs)
 47  app: Strong Lifters
 48  application:
 49    navigation:
 50      about: About
 51      athletes: Athletes
 52      blog: Blog
 53      gyms: Gyms
 54      log_out: Log out
 55      profile: Profile
 56      workouts: Workouts
 57    footer:
 58      copyright: "© Copyright www.stronglifters.com. All rights reserved."
 59  bench_press: 'Bench Press'
 60  barbell_row: 'Barbell Row'
 61  squat: 'Squat'
 62  deadlift: 'Deadlift'
 63  overhead_press: 'Overhead Press'
 64  time:
 65    formats:
 66      short: "%a, %d %b %Y"
 67  add: Add
 68  done: "I'm Done"
 69  save: Save
 70  search: Search
 71  layouts:
 72    administration:
 73      dashboard: Dashboard
 74      texas_method: Texas method
 75    application:
 76      title: Strong Lifters
 77  gyms:
 78    index:
 79      title: Gyms
 80    new:
 81      title: New Gym
 82  registrations:
 83    new:
 84      email: "Email"
 85      login_link: "Already have an account?"
 86      password: "Password"
 87      register_button: "Register"
 88      terms_and_conditions: "I agree to the Terms and Conditions of Use"
 89      terms_and_conditions_link: "Terms and Conditions of Use"
 90      username: "Username"
 91    create:
 92      success: "Thank you for registering. Welcome."
 93  profiles:
 94    edit:
 95      profile_update_success: "Profile updated. This is how your public profile appears."
 96      save: Save Profile
 97    home_gym_modal:
 98      title: Home Gym
 99      lead: Search for your regular gym.
100    show:
101      not_available: N/A
102      no_workouts_completed: 0 workouts completed
103      workouts_completed_html: "<strong>%{count}</strong> workouts completed since <strong>%{first_session}</strong>."
104  sessions:
105    create:
106      invalid_login: "Sorry, we cannot find that account."
107    new:
108      username: "Username (or email)"
109      password: "Password"
110      login_button: "Login"
111      register_link: "Create an account"
112  dashboards:
113    import_address_modal:
114      blurb_html: Export workouts from <a href="http://stronglifts.com/apps/">StrongLifts 5x5</a> to <strong>%{email}</strong>.
115      warning: To ensure your workouts are imported correctly we suggest that you update your timezone.
116  workouts:
117    index:
118      calendar: View Calendar
119  views:
120    pagination:
121      first: "&laquo; First"
122      last: "Last &raquo;"
123      previous: "Previous"
124      next: "Next"