https://github.com/smartcatai/smartcat-serge-sync-plugin
Continuous localization solution for Smartcat platform.
https://github.com/smartcatai/smartcat-serge-sync-plugin
i18n l10n localization translation translationservice
Last synced: 3 months ago
JSON representation
Continuous localization solution for Smartcat platform.
- Host: GitHub
- URL: https://github.com/smartcatai/smartcat-serge-sync-plugin
- Owner: smartcatai
- License: other
- Created: 2017-12-07T12:59:06.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-27T19:01:38.000Z (over 2 years ago)
- Last Synced: 2024-06-21T17:59:13.320Z (over 1 year ago)
- Topics: i18n, l10n, localization, translation, translationservice
- Language: Perl
- Homepage: https://smartcat.ai
- Size: 36.1 KB
- Stars: 7
- Watchers: 6
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
### This repository is deprecated. Smartcat now has a dedicated workflow, APIs and CLI to work with software localization projects. Check out our [Software Localization Projects in Smartcat](https://developers.smartcat.com/software-localization/) guide.
---
Smartcat plugin is now shipped with Serge. Please continue to [Serge + Smartcat Bootstrap Project](https://github.com/smartcatai/smartcat-serge-bootstrap) repo for the installation instructions and a Getting Started guide.
The older version of the README can be found [here.](README_old.md)
## Migrating from this plugin to V2:
### V1:
```javascript
sync
{
ts
{
plugin Smartcat
data
{
token_id 12345678-abcd-9876-5432-abcdef012345
log_file /var/log/smartcat.log
}
}
}
```
### V2:
```javascript
sync
{
ts
{
/* plugin name has changed */
plugin smartcat_v2
data
{
/* `token_id` parameter was renamed to `account_id` */
account_id 12345678-abcd-9876-5432-abcdef012345
/* `log_file` parameter is no longer supported */
/*log_file /var/log/smartcat.log*/
}
}
}
```