diff --git a/config/config.sample.php b/config/config.sample.php
index 535b2c3a5cc72019528555c9eb18d3c01a6e5b84..19e7843d6c90c749b83324fc9654d3c49ba79a5b 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -1025,14 +1025,14 @@ $CONFIG = array(
 
 
 /**
- * Enables the EXPERIMENTAL file locking.
- * This is disabled by default as it is experimental.
+ * Enables transactional file locking.
+ * This is disabled by default as it is still beta.
  *
  * Prevents concurrent processes to access the same files
  * at the same time. Can help prevent side effects that would
  * be caused by concurrent operations.
  *
- * WARNING: EXPERIMENTAL
+ * WARNING: BETA quality
  */
 'filelocking.enabled' => false,
 
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index fb6ef9b3e7740cad865cb204beb67cca18e0d810..a55071bdf849ee509011499cc2a11f49dc42be4d 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -533,9 +533,9 @@ if ($_['cronErrors']) {
 	<ul>
 		<li>
 			<?php if ($_['fileLockingEnabled']) {
-				p($l->t('Experimental File Lock is enabled.'));
+				p($l->t('Transactional File Locking is enabled.'));
 			} else {
-				p($l->t('Experimental File Lock is disabled.'));
+				p($l->t('Transactional File Locking is disabled.'));
 			} ?>
 		</li>
 	</ul>