A Visual Studio Code extension meant to have utils to make work more efficient at TFSO.
Features
Translation related
Paste as Translation Search (Alt+V on Windows/Linux, Ctrl+V on Mac): Converts clipboard content into a regex pattern for finding translation keys
Replace Search with Translation Search (Alt+T on Windows/Linux, Ctrl+T on Mac): Converts the current search text into a translation key search
Update JSON Translation Sources: Configure the translation source URLs
Show translated inlay hints (Ctrl+Alt+Shift+T on Windows/Linux, Cmd+Alt+Shift+T on Mac): Toggle on and off the inlay hints for translation keys with corresponding values
Change Translation Regex: Change the regex that detects translation keys
Regex Conversion
By adding /string/, the conversion to translation search will be changed to a regex search. Every string starts and ends with a quote (") for easier searching of complete strings.
Examples:
"go back: Finds translation keys which translate to strings starting with "go back".
/go back...|"voucher"/: Searches for all translations where "go back" has at least three letters after it or only "voucher".