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
path: root/core/Intl
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2014-12-31 05:03:53 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-01-09 00:13:32 +0300
commit3dd7bf3ad89c9396e4ad4fd485fb338f84f1d8d8 (patch)
tree8c22fab1ca872ba714d728bde689b3b07b57635d /core/Intl
parente8602f5d81a2f402c80b11ffcfa391cdff238e08 (diff)
Intermediary renaming because of case-sensitivity issues
Diffstat (limited to 'core/Intl')
-rw-r--r--core/Intl/Data/Provider/LanguageDataProvider.php4
-rw-r--r--core/Intl/Data/Provider/RegionDataProvider.php2
-rw-r--r--core/Intl/Data/Resources/countries_.php (renamed from core/Intl/Data/Resources/Countries.php)0
-rw-r--r--core/Intl/Data/Resources/languages-to-countries.php (renamed from core/Intl/Data/Resources/LanguageToCountry.php)0
-rw-r--r--core/Intl/Data/Resources/languages_.php (renamed from core/Intl/Data/Resources/Languages.php)0
5 files changed, 3 insertions, 3 deletions
diff --git a/core/Intl/Data/Provider/LanguageDataProvider.php b/core/Intl/Data/Provider/LanguageDataProvider.php
index da1f3eb204..cade7b89e8 100644
--- a/core/Intl/Data/Provider/LanguageDataProvider.php
+++ b/core/Intl/Data/Provider/LanguageDataProvider.php
@@ -26,7 +26,7 @@ class LanguageDataProvider
public function getLanguageList()
{
if ($this->languageList === null) {
- $this->languageList = require __DIR__ . '/../Resources/Languages.php';
+ $this->languageList = require __DIR__ . '/../Resources/languages_.php';
}
return $this->languageList;
@@ -42,7 +42,7 @@ class LanguageDataProvider
public function getLanguageToCountryList()
{
if ($this->languageToCountryList === null) {
- $this->languageToCountryList = require __DIR__ . '/../Resources/LanguageToCountry.php';
+ $this->languageToCountryList = require __DIR__ . '/../Resources/languages-to-countries.php';
}
return $this->languageToCountryList;
diff --git a/core/Intl/Data/Provider/RegionDataProvider.php b/core/Intl/Data/Provider/RegionDataProvider.php
index 0c048c9b51..1c2fa2412c 100644
--- a/core/Intl/Data/Provider/RegionDataProvider.php
+++ b/core/Intl/Data/Provider/RegionDataProvider.php
@@ -42,7 +42,7 @@ class RegionDataProvider
public function getCountryList($includeInternalCodes = false)
{
if ($this->countryList === null) {
- $this->countryList = require __DIR__ . '/../Resources/Countries.php';
+ $this->countryList = require __DIR__ . '/../Resources/countries_.php';
}
if ($this->countryExtraList === null) {
$this->countryExtraList = require __DIR__ . '/../Resources/countries-extra.php';
diff --git a/core/Intl/Data/Resources/Countries.php b/core/Intl/Data/Resources/countries_.php
index 15197f8846..15197f8846 100644
--- a/core/Intl/Data/Resources/Countries.php
+++ b/core/Intl/Data/Resources/countries_.php
diff --git a/core/Intl/Data/Resources/LanguageToCountry.php b/core/Intl/Data/Resources/languages-to-countries.php
index 91ab0940c5..91ab0940c5 100644
--- a/core/Intl/Data/Resources/LanguageToCountry.php
+++ b/core/Intl/Data/Resources/languages-to-countries.php
diff --git a/core/Intl/Data/Resources/Languages.php b/core/Intl/Data/Resources/languages_.php
index ca6930f369..ca6930f369 100644
--- a/core/Intl/Data/Resources/Languages.php
+++ b/core/Intl/Data/Resources/languages_.php