You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i18n-tasks remove-unused removed the associated translation key, saying it was unused. i18n-tasks missing doesn't show the key as missing once removed. Strangely, if I modify the line to read as either of the following examples, it DOES report the key as missing.
#instructions
= t('translation.key')
%div#instructions= t('translation.key')
The text was updated successfully, but these errors were encountered:
This is caused by the scanner skipping lines starting with # or / by default. To prevent this set ignore_lines: []in the config. This is because currently i18n-tasks uses a filetype-agnostic Regex scanner, but there are plans to rework this.
We have the following line in HAML:
i18n-tasks remove-unused removed the associated translation key, saying it was unused. i18n-tasks missing doesn't show the key as missing once removed. Strangely, if I modify the line to read as either of the following examples, it DOES report the key as missing.
The text was updated successfully, but these errors were encountered: