Archi — http://www.archimatetool.com.
Generated NLS resources for Archi localization from version 4.0.0 and later
This is useful for matching localization changes from version to version.
When you need to up your local version resources, you may check the difference between english NLS changes and modify your language accordingly.
All generated versions are tagged with version tag name, so when you need to get up-to difference you may use the git diff ${version}
command to see all the resources difference.
- Setup Eclipse IDE according to Archi instruction
- Import code according to Archi instruction
- Clone this repository
- Execute
git tag
in${ARCHI-NLS-DIR}
to check the latest Archi version applied and remember it as${ARCHI-NLS-VERSION}
say4.2.0
- Execute
git tag
in${ARCHI-DIR}
to check the latest Archi release code available - Select the Archi release version next to
${ARCHI-NLS-VERSION}
say4.2.1
and remember it as${ARCHI-VERSION}
- Checkout the selected Archi tag with command
cd ${ARCHI-DIR} && git checkout release_${ARCHI-VERSION} && git clean -d -f
- Generate Archi NLS resources in Eclipse IDE according to Archi instruction
- Delete all
archi-nls
directories with commandrm -rf ${ARCHI-NLS-DIR}/com.*
- Copy generated NLS resources to
${ARCHI-NLS-DIR}
with commandcp -r ${ARCHI-DIR}/nls/* ${ARCHI-NLS-DIR}
- Commit and tag new
archi-nls
version with commandcd ${ARCHI-NLS-DIR} && git add . && git commit -am "${ARCHI-NLS-VERSION} -> ${ARCHI-VERSION}" && git tag ${ARCHI-VERSION}
- Repeat steps 6-11 until ${ARCHI-NLS-VERSION} become the latest Archi release version.