summaryrefslogtreecommitdiff
path: root/languages/classes/LanguageEt.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2015-12-20 09:00:55 +0100
committerPierre Schmitz <pierre@archlinux.de>2015-12-20 09:00:55 +0100
commita2190ac74dd4d7080b12bab90e552d7aa81209ef (patch)
tree8b31f38de9882d18df54cf8d9e0de74167a094eb /languages/classes/LanguageEt.php
parent15e69f7b20b6596b9148030acce5b59993b95a45 (diff)
parent257401d8b2cf661adf36c84b0e3fd1cf85e33c22 (diff)
Merge branch 'mw-1.26'
Diffstat (limited to 'languages/classes/LanguageEt.php')
-rw-r--r--languages/classes/LanguageEt.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/languages/classes/LanguageEt.php b/languages/classes/LanguageEt.php
index 6425a533..759531b5 100644
--- a/languages/classes/LanguageEt.php
+++ b/languages/classes/LanguageEt.php
@@ -1,6 +1,6 @@
<?php
/**
- * Estonian (Eesti) specific code.
+ * Estonian (eesti) specific code.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -22,20 +22,18 @@
*/
/**
- * Estonian (Eesti)
+ * Estonian (eesti)
*
* @ingroup Language
*/
class LanguageEt extends Language {
/**
- * Avoid grouping whole numbers between 0 to 9999
- *
+ * Avoid grouping whole numbers between -9999 to 9999
* @param string $_
- *
* @return string
*/
function commafy( $_ ) {
- if ( !preg_match( '/^\d{1,4}$/', $_ ) ) {
+ if ( !preg_match( '/^\-?\d{1,4}(\.\d+)?$/', $_ ) ) {
return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev( $_ ) ) );
} else {
return $_;