Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/Date.php')
-rw-r--r--core/Date.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/core/Date.php b/core/Date.php
index 3d1751591a..4c6ba7b6c7 100644
--- a/core/Date.php
+++ b/core/Date.php
@@ -10,6 +10,7 @@
namespace Piwik;
use Exception;
+use Piwik\Common;
use Piwik\Container\StaticContainer;
use Piwik\Intl\Data\Provider\DateTimeFormatProvider;
@@ -708,9 +709,10 @@ class Date
* The template should contain tags that will be replaced with localized date strings.
*
* @param string $template eg. `"MMM y"`
+ * @param bool $ucfirst whether the first letter should be upper-cased
* @return string eg. `"Aug 2009"`
*/
- public function getLocalized($template)
+ public function getLocalized($template, $ucfirst = true)
{
$dateTimeFormatProvider = StaticContainer::get('Piwik\Intl\Data\Provider\DateTimeFormatProvider');
@@ -729,6 +731,10 @@ class Date
}
}
+ if ($ucfirst) {
+ $out = Common::mb_strtoupper(mb_substr($out, 0, 1)) . mb_substr($out, 1);
+ }
+
return $out;
}