View difference between Paste ID: vQB8VAHd and aZZVKHS1
SHOW: | | - or go back to the newest paste.
1
use Drupal\Component\Plugin\Plugin;
2
use Drupal\Core\Annotation\Translation;
3
4
/**
5
 * @Plugin(
6
 *   plugin_id = "roses",
7-
 *   title = @Translation("Roses"),
7+
 *   title = @Translation("Roses", context = "Message Title"),
8-
 *   description = @Translation("Roses are red.")
8+
 *   description = @Translation("Roses are red.", context = "Message Title")
9
 * )
10
 */