{% extends "base.html" %} {% block title %}Words to Readlang - Word Pool{% endblock %} {% block content %}

Word Pool

All entries for: {{ source_language|language_name }} → {{ target_language|language_name }}

{% if available_pairs|length > 1 %}

← Switch language pair

{% endif %}

Statistics

{{ stats.total }}
Total Entries
{{ stats.valid }}
Valid
{{ stats.invalid_no_example }}
No Example
{{ stats.invalid_word_missing }}
Word Missing
{% if stats.invalid_no_example + stats.invalid_word_missing > 0 %}

Fetch Missing Examples

Automatically fetch example sentences for all {{ stats.invalid_no_example + stats.invalid_word_missing }} invalid entries from Tatoeba and Leipzig Corpora Collection.

{% endif %} {% if stats.total > 0 %}
0 selected

If no entries are selected, all valid entries will be exported.

{% for entry in entries %} {% include 'components/pool_entry_row.html' %} {% endfor %} {% if has_more %} {% endif %}
Status Word Translation Example Source Actions
Loading more...
{% else %}

No entries in word pool yet. Upload some vocabulary files to get started!

Upload Vocabulary File
{% endif %}
Back to Home
{% endblock %}