diff --git a/core/modules/node/lib/Drupal/node/NodeFormController.php b/core/modules/node/lib/Drupal/node/NodeFormController.php
index a787175..e45a6a2 100644
--- a/core/modules/node/lib/Drupal/node/NodeFormController.php
+++ b/core/modules/node/lib/Drupal/node/NodeFormController.php
@@ -466,11 +466,18 @@ public function save(array $form, array &$form_state) {
     $node->save();
     $node_link = l(t('view'), 'node/' . $node->id());
     $watchdog_args = array('@type' => $node->getType(), '%title' => $node->label());
-    $t_args = array('@type' => node_get_type_label($node), '%title' => $node->label());
+    $t_args = array(
+      '@type' => node_get_type_label($node),
+      '%title' => $node->label(),
+      '!add_another' => l(
+        t('Add another ') . strtolower(node_get_type_label($node)),
+        'node/add/' . $node->getType()
+      ),
+    );
 
     if ($insert) {
       watchdog('content', '@type: added %title.', $watchdog_args, WATCHDOG_NOTICE, $node_link);
-      drupal_set_message(t('@type %title has been created.', $t_args));
+      drupal_set_message(t('@type %title has been created. !add_another', $t_args));
     }
     else {
       watchdog('content', '@type: updated %title.', $watchdog_args, WATCHDOG_NOTICE, $node_link);
