Kitchen Patterns Translation & Link Tracker
Translation Decisions
- German takes the Sie-Form
- Use G-Translate to do the heavy lifting and then edit from there
Section: Start Here
TABLE WITHOUT ID
title AS "Title",
lang AS "Lang",
permalink AS "Permalink",
tags AS "Tags",
internal AS "Internal",
updated AS "Updated",
category AS "Category",
published AS "Pub'd"
FROM "_start_here"
SORT lang AND file.path DESC
Section: Recipes
TABLE WITHOUT ID
title AS "Title",
lang AS "Lang",
permalink AS "Permalink",
tags AS "Tags",
internal AS "Internal",
updated AS "Updated",
category AS "Category",
published AS "Pub'd"
FROM "_recipes"
SORT lang AND file.path DESC
Section: Basics
TABLE
title AS "Title",
lang AS "Lang",
permalink AS "Permalink",
tags AS "Tags",
internal AS "Internal",
updated AS "Updated",
category AS "Category",
published AS "Pub'd"
FROM "_basics"
SORT lang AND file.path DESC
Section: Adaptables
TABLE WITHOUT ID
title AS "Title",
lang AS "Lang",
permalink AS "Permalink",
tags AS "Tags",
internal AS "Internal",
updated AS "Updated",
category AS "Category",
published AS "Pub'd"
FROM "_adaptables"
SORT lang AND file.path DESC
Section: Journals
TABLE WITHOUT ID
title AS "Title",
lang AS "Lang",
permalink AS "Permalink",
tags AS "Tags",
internal AS "Internal",
updated AS "Updated",
category AS "Category",
published AS "Pub'd"
FROM "_journals"
SORT lang AND file.path DESC
Section: Pages
TABLE WITHOUT ID
title AS "Title",
lang AS "Lang",
permalink AS "Permalink",
tags AS "Tags",
internal AS "Internal",
updated AS "Updated",
category AS "Category",
published AS "Pub'd"
FROM "_pages"
SORT lang AND file.path DESC
Section: Posts
TABLE WITHOUT ID
title AS "Title",
lang AS "Lang",
permalink AS "Permalink",
tags AS "Tags",
internal AS "Internal",
updated AS "Updated",
category AS "Category",
published AS "Pub'd"
FROM "_posts"
SORT lang AND file.path DESC