- Issue created by @arakwar
- Status changed to Closed: works as designed
5 months ago 12:02am 6 January 2025 - 🇨🇭Switzerland florianmuellerch Aarau, Switzerland
Hi @arakwar
Thank you for raising the issue and for your suggestions!
However, I do not think that this module should move in this direction for the following reasons:- Usage of features is actively discouraged as from their project page →
- The problem seems to originate not even in the features module, but by your application which in my opinion is something that the features module did never consider supporting. If it should do so, it should definitely be implemented in the features module.
If you feel otherwise, please specify your use case a bit more in detail with some config examples, so I can get a better picture of the issue. And if you could provide a patch or MR, that would be great :)
Because of no one else participating in the discussion, I'll close this issue for the moment.
- 🇩🇰Denmark ressa Copenhagen
I just created a web site with two languages, and I love how with Drush, I can export a .po file which contains all the translations with relates to strings in modules and themes, wrapped in
t('my string')
or Twig strings with{{ 'String'|trans }}
("interface translations").This not only makes it easy to move translations, but I can also bulk edit multiple strings directly in a single export file. (See the section "Deploying Drupal interface translations with Drush" on https://www.drupal.org/docs/administering-a-drupal-site/multilingual-gui... → )
But for configuration translation, it looks like you need to open each block, each view field, each content type field etc. one by one and manually add the translation ...
It would be great if configuration translation was also exportable and importable, the same as interface translation. This would allow us to translate all strings in a single file, if we want to add a new language.
Is a .po file solution for config translation something this module could consider offering, or maybe another module offers this? Thanks!
- 🇩🇰Denmark ressa Copenhagen
I looked a bit more, and found a module which does exactly what I am looking for, called https://www.drupal.org/project/config_translation_po → :)