accent/lib/langue
Simon Prévost ae0df57dae
Add basic support for XLIFF 1.2 file format (#79)
![image](https://user-images.githubusercontent.com/464900/55203015-35c17980-51a0-11e9-8647-d91209c7b6de.png)

## Issue
📚 https://github.com/mirego/accent/issues/21

## Feature
This is a basic implementation of the XLIFF 1.2 format. This format is used heavily in a lot of translations related tool (and in XCode) so I may have missed some of the implementation details. But it’s a good start for someone who want to contribute to Accent 😉 

## Refactor
This format is a bit trickier than other since it required the master language to export the targets. We needed to refactor some module to use the master language in the serialization process. Also, not needed but cleaner, we wrap the document’s key `top_of_the_file_comment` and `header` inside a new struct `Language.Document`. This will become handy if we ever need to add an attribute to the document OR if we add a different attribute to the serialization input.

## Next steps
This format includes 2 new dependencies to handle XML encode and decode. _Why not use the same XML library used for the XML Android format?_ Because… \*drum roll\* The `<source>` XML tag when encoded by the `mochiweb_html` module is a self closing tag (per the HTML spec) 🥇 

Since those 2 new deps are required for the XLIFF format and can pretty print XML, we should use them _instead of `mochiweb`_ 🎉
2019-03-31 16:16:20 -04:00
..
formatter Add basic support for XLIFF 1.2 file format (#79) 2019-03-31 16:16:20 -04:00
utils wip 2019-01-09 08:01:19 -05:00
document.ex Add basic support for XLIFF 1.2 file format (#79) 2019-03-31 16:16:20 -04:00
entry.ex Add basic support for XLIFF 1.2 file format (#79) 2019-03-31 16:16:20 -04:00
language.ex Add basic support for XLIFF 1.2 file format (#79) 2019-03-31 16:16:20 -04:00
langue.ex Add basic support for XLIFF 1.2 file format (#79) 2019-03-31 16:16:20 -04:00
value_type.ex Add plural and locked state for translations 2018-04-27 08:49:50 -04:00