Under 4.1.4 "Lazy" Lookup, if you have the following dictionary:
es:
books:
index:
title: "Título"
you can look up the books.index.title value inside app/views/books/index.html.erb template like this (note the dot):
<%= t '.title' %>
But if I alter the dictionary like this:
es:
books:
index:
title: "Título"
author:
first_name: "Jane"
Then:
<%= t '.first_name' %>
gives a missing translation error.
1) Is there a limit on the nesting depth you can have?
2) Can you setup custom hash keys via yaml (for example, suppose instead of "index" as a key I want to use "kite", even though kite is not an actual view) and if so how?