Add Rubocop Linter to raise for hard-coded docs URLs in translations

Description

Including https://docs.gitlab.com/ee/ directly in a localized translation (or any application text that is shown to an end user) is problematic for several reasons:

  1. The docs URL could change and then we have a broken link
  2. The URL is not specific to the deployment where the message shows up
  3. Helper methods are easier to grep for / change in the case of a large refactor

For this reason, we should have a Rubocop linter that raises if a translation is added with https://docs.gitlab.com/ee/* directly included. These URLs should instead us the help_page_path helper: https://docs.gitlab.com/ee/development/documentation/#linking-to-help-in-ruby

More context:

Implementation Guide

Edited by Jessie Young