<%= t("txt.views.untranslated_concepts.caption") %>
<% if I18n.locale != Iqvoc::Concept.pref_labeling_languages.first %>
<%= letter_selector { |letter| untranslated_concepts_path(:letter => letter.to_s.downcase) } %>
<% for label in @labels %>
-
<% if label.pref_labeled_concepts.length > 1 %>
<%= label.value %>:
<% for concept in label.pref_labeled_concepts %>
<%= link_to concept.origin, concept_path(concept) %>
<% end %>
<% else %>
<%= link_to label.value, concept_path(label.pref_labeled_concepts[0]) %>
<% end %>
<% end %>
<%= paginate @labels %>
<% end %>