private Set<String> matchI18n(String fileContent) {
    fileContent = fileContent.replaceAll("\\s+", "");
    return Pattern.compile("(?<=<%=i18n\\.)(.*?)(?=%>)")
            .matcher(fileContent)
            .results()