text parser setup for JS files

I have a JS file with strings. Here is the format:

const UntranslatedStrings = {
  actual_level: "Actual Level",
  add: "add",
  add_layer: "Add Layer",
  add_timer: "Add Timer",
  adjust_f1: (what) => `Adjust ${what}`,
  admin_configuration: "Admin Configuration",
}
I can create a string rule to get the strings in between "" but it is missing the adjust_f1: (what) => `Adjust ${what}`, line.
Also I can't get to bring in the identifiers. So for add: "add", I get the add, but the ID comes in as 3 for example.
I have tried to use Regular Expressions in setup, but no luck.
Thanks,
Tim
emoji