VSCode Find and Replace with varying pattern

I have a bunch of instances in a codebase that has this patterns

translate(k.SOME_KEY)

translate(k.ANOTHER_KEY)

and I want to find and replace this pattern to:

translate('SOME_KEY')

translate('ANOTHER_KEY')

Is this possible using regex and the VSCode find and replace?