tC Create is a web-based application (https://create.translationcore.com) that enables users to translate and edit unfoldingWord’s Gateway Language resources. This tool will greatly expedite the production of the resources needed to further unfoldingWord’s Gateway Language Strategy.
tC Create allows users to translate from unfoldingWord’s English Translation Notes, Translation Words, Translation Questions, Translation Academy and Open Bible Stories. Once the resources are translated and checked in tC Create, they can be used in unfoldingWord’s translationCore tool to check Bible translations.
- Supports unfoldingWord’s markdown (.md) and tab-separated values (.tsv) files
- Parallel view of the text allows for comparison to the original file
- Text can be edited in smaller portions or in larger blocks
- Directly reads and writes to the Door43 Content Service
- Branched workflow protects the master files from unauthorized changes
translationCore Create: How to video
tC Create is built using React Component Libraries. These libraries (listed here) can be used for other applications and we hope that others will contribute libraries to this effort.
- make sure cypress is fully installed:
yarn
yarn run cypress install
- create test config file
cypress.env.json
in root folder with the following contents (substitute your username in password):
{
"TEST_USERNAME": "<user>",
"TEST_PASSWORD": "<password>"
}
- you will need to be part of unfoldingWord organization for the test to complete
- in first terminal, start the app by (in Windows, run this in
git Bash
as it needs bash):
yarn start
- then in second terminal, to run cypress interactively do:
yarn run cypress open
- or to run headless: in second terminal, run cypress by:
`yarn cypress:run`