__manifest__.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Transifex integration',
  5. 'version': '1.0',
  6. 'summary': 'Add a link to edit a translation in Transifex',
  7. 'category': 'Hidden/Tools',
  8. 'description':
  9. """
  10. Transifex integration
  11. =====================
  12. This module will add a link to the Transifex project in the translation view.
  13. The purpose of this module is to speed up translations of the main modules.
  14. To work, Odoo uses Transifex configuration files `.tx/config` to detect the
  15. project source. Custom modules will not be translated (as not published on
  16. the main Transifex project).
  17. The language the user tries to translate must be activated on the Transifex
  18. project.
  19. """,
  20. 'data': [
  21. 'data/transifex_data.xml',
  22. 'views/code_translation_views.xml',
  23. 'security/ir.model.access.csv'
  24. ],
  25. 'assets': {
  26. 'web.assets_backend': [
  27. 'transifex/static/src/views/fields/translation_dialog.xml',
  28. 'transifex/static/src/views/*.js',
  29. 'transifex/static/src/views/*.xml',
  30. ],
  31. },
  32. 'depends': ['base', 'web'],
  33. 'license': 'LGPL-3',
  34. }