From 752d07415c1570421ce11fed5ca42bac6499542e Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Tue, 12 Mar 2024 10:54:07 +0100 Subject: [PATCH] MDL-81203 tool_customlang: Bump ROUGH_NUMBER_OF_STRINGS from 32K to 33K Periodical check, we have passed the 32K, time to bump to next thousand, 33K. Not much else to say. --- admin/tool/customlang/locallib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/tool/customlang/locallib.php b/admin/tool/customlang/locallib.php index 4b2d59663f7..1fbe6d6769d 100644 --- a/admin/tool/customlang/locallib.php +++ b/admin/tool/customlang/locallib.php @@ -36,7 +36,7 @@ class tool_customlang_utils { * Rough number of strings that are being processed during a full checkout. * This is used to estimate the progress of the checkout. */ - const ROUGH_NUMBER_OF_STRINGS = 32000; + const ROUGH_NUMBER_OF_STRINGS = 33000; /** @var array cache of {@link self::list_components()} results */ private static $components = null;