Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ilib-js/xliff
A parser and generator for xliff files (XML Localization Interchange Format File)
https://github.com/ilib-js/xliff
Last synced: 3 days ago
JSON representation
A parser and generator for xliff files (XML Localization Interchange Format File)
- Host: GitHub
- URL: https://github.com/ilib-js/xliff
- Owner: iLib-js
- License: apache-2.0
- Created: 2022-09-30T03:39:21.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T21:27:30.000Z (25 days ago)
- Last Synced: 2024-10-22T06:23:16.531Z (24 days ago)
- Language: JavaScript
- Size: 154 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xliff
A parser and generator for xliff files (XML Localization Interchange Format File)
## API Documentation
Full API documentation can be found [here](./docs/ilibXliff.md).
## License
Copyright © 2022-2023, JEDLSoft
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions and
limitations under the License.## Release Notes
### v1.2.0
- added support for parsing inline content markup in XLIFF 1.2 (`` etc.)
- added support for parsing CDATA content in XLIFF 1.2 (`]]>`)### v1.1.0
- add support for the "translate" flag on translation units
- fixed the API documentation to be more useful
- added getLines() method to count the number of lines in the original
xml if this is being used to parse the xliff file
- added "location" information of the start of each translation unit
in the xml file
- gives line number and character within the line of each
trans-unit (v1.2) or unit (v2.0) element in the file### v1.0.0
- initial version copied from loctool 2.18.0
- converted to ESM