Backup of db before drupal security update
[yaffs-website] / web / core / modules / locale / src / LocaleEvents.php
1 <?php
2
3 namespace Drupal\locale;
4
5 /**
6  * Defines events for locale translation.
7  *
8  * @see \Drupal\Core\Config\ConfigCrudEvent
9  */
10 final class LocaleEvents {
11
12   /**
13    * The name of the event fired when saving a translated string.
14    *
15    * This event allows you to perform custom actions whenever a translated
16    * string is saved.
17    *
18    * @Event
19    *
20    * @see \Drupal\locale\EventSubscriber\LocaleTranslationCacheTag
21    */
22   const SAVE_TRANSLATION = 'locale.save_translation';
23
24 }