<table>
  <tr>
    <th><%= t('admin.key') %></th>
    <% @site_valid_locales.each do |locale| %>
      <th style="color:<%= colorize_in_use_locale(locale) %>"><%= locale %></th>
    <% end %>
  </tr>
  <% @language_i18n_variables.each do |var| %>
    <tr>
      <td><%= var.key %></td>
      <% @site_valid_locales.each do |locale| %>
        <td><%= text_field_tag "i18n_variables[#{var.id}][#{locale}]", var[locale] %></td>
      <% end %>
    </tr>    
  <% end %>
</table>