checking inline pattern problem

Hi,


I'm trying to validate that the character sequence \\" occurs in the translation if it also occurs in the source. I've set up an inline Pattern which passes the tests on the dialog but fails to find any mismatches when run against the string list. It could be something to do with the \\ as applying the rule with just " works as expected.

Parents Reply
  • SDL Passolo 2015  15.0.226.0

    This is using the Inline Patterns, User Defined regular expression feature for checking string lists

    File example below using apple (iphone / mac *.strings) rules

    /* Class = "NSMenuItem"; title = "Set wet edges \"off\""; ObjectID = "cBU-Ua-fFS"; */
    "cBU-Ua-fFS.title" = "Imposta bordi bagnati come \"disabilitati\"";

    /* Class = "NSMenuItem"; title = "None"; ObjectID = "cnc-Mc-qoN"; */
    "cnc-Mc-qoN.title" = "Nessuno";

    /* Class = "NSMenu"; title = "OtherViews"; ObjectID = "dcS-AY-xhr"; */
    "dcS-AY-xhr.title" = "Altre visualizzazioni";

    /* Class = "NSMenuItem"; title = "Smudge brush tool"; ObjectID = "eA8-dB-gkJ"; */
    "eA8-dB-gkJ.title" = "Strumento Pennello Sfumino";

    /* Class = "NSMenuItem"; title = "Stylus Wheel"; ObjectID = "fqH-Nw-bD9"; */
    "fqH-Nw-bD9.title" = "Rotella Stilo";

    /* Class = "NSMenuItem"; title = "Set wet edges \"on\""; ObjectID = "h8W-H2-pdz"; */
    "h8W-H2-pdz.title" = "Imposta bordi bagnati come \"abilitati\"";

Children