Skip to content

Latest commit

 

History

History
48 lines (41 loc) · 1.94 KB

translation-concordance.md

File metadata and controls

48 lines (41 loc) · 1.94 KB
layout title
blank
Translation Concordance

An automatically-generated list of page translation relationships across our publications.

{% assign original_lessons = site.pages | where_exp: "item", "item.name != 'redirect.html'" | where_exp: "item", "item.name != 'redirects.json'" | where_exp: "item", "item.name != 'index.md'" | where_exp: "item", "item.original == nil" | where_exp: "item", "item.layout == 'lesson'" %}

Lessons

{% for l in site.data.snippets.language-list %} {% endfor %} {% for p in original_lessons %} {% assign reverse_p = p.name | split: "." | first %} {% assign translated_pages = site.pages | where: "original", reverse_p %} {% assign page_versions = p | concat: translated_pages %} {% for l in site.data.snippets.language-list %} {% assign sp = page_versions | where: "lang", l | first %} {% endfor %} {% endfor %}
{{ l }}
{{ sp.title }}

{% assign original_pages = site.pages | where_exp: "item", "item.name != 'redirect.html'" | where_exp: "item", "item.name != 'redirects.json'" | where_exp: "item", "item.name != 'index.md'" | where_exp: "item", "item.original == nil" | where_exp: "item", "item.layout != 'lesson'" | where_exp: "item", "item.layout != 'post'" | where_exp: "item", "item.skip_concordance != true" | where_exp: "item", "item.title != nil"%}

Other pages

{% for l in site.data.snippets.language-list %} {% endfor %} {% for p in original_pages %} {% assign reverse_p = p.name | split: "." | first %} {% assign translated_pages = site.pages | where: "original", reverse_p %} {% assign page_versions = p | concat: translated_pages %} {% for l in site.data.snippets.language-list %} {% assign sp = page_versions | where: "lang", l | first %} {% endfor %} {% endfor %}
{{ l }}
{{ sp.title }}