diff --git a/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/DecimalFormatter.php b/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/DecimalFormatter.php
index 0e43ac1..a53e0b9 100644
--- a/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/DecimalFormatter.php
+++ b/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/DecimalFormatter.php
@@ -55,7 +55,7 @@ public function settingsForm(array $form, FormStateInterface $form_state) {
     $range = range(0, 10);
     $elements['scale'] = array(
       '#type' => 'select',
-      '#title' => t('Scale', array(), array('decimal places')),
+      '#title' => t('Scale', array(), array('context' => 'decimal places')),
       '#options' => array_combine($range, $range),
       '#default_value' => $this->getSetting('scale'),
       '#description' => t('The number of digits to the right of the decimal.'),
diff --git a/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/DecimalItem.php b/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/DecimalItem.php
index e3867d4..1f40b29 100644
--- a/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/DecimalItem.php
+++ b/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/DecimalItem.php
@@ -81,7 +81,7 @@ public function storageSettingsForm(array &$form, FormStateInterface $form_state
     $range = range(0, 10);
     $element['scale'] = array(
       '#type' => 'select',
-      '#title' => t('Scale', array(), array('decimal places')),
+      '#title' => t('Scale', array(), array('context' => 'decimal places')),
       '#options' => array_combine($range, $range),
       '#default_value' => $settings['scale'],
       '#description' => t('The number of digits to the right of the decimal.'),
