summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--composer.lock10
-rw-r--r--vendor/composer/installed.json12
-rw-r--r--vendor/fisharebest/localization/CHANGELOG.md3
-rw-r--r--vendor/fisharebest/localization/src/Language/LanguageDv.php5
-rw-r--r--vendor/fisharebest/localization/src/Language/LanguageYi.php5
5 files changed, 24 insertions, 11 deletions
diff --git a/composer.lock b/composer.lock
index ce6ebeccaa..1857cc1d20 100644
--- a/composer.lock
+++ b/composer.lock
@@ -208,16 +208,16 @@
},
{
"name": "fisharebest/localization",
- "version": "1.3.0",
+ "version": "1.3.1",
"source": {
"type": "git",
"url": "https://github.com/fisharebest/localization.git",
- "reference": "8f2f48fa3cf1fb3ee8e6816f26221c37d38ccb9f"
+ "reference": "2a30917d9d90631b448f6e18d8598e4deca475c4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fisharebest/localization/zipball/8f2f48fa3cf1fb3ee8e6816f26221c37d38ccb9f",
- "reference": "8f2f48fa3cf1fb3ee8e6816f26221c37d38ccb9f",
+ "url": "https://api.github.com/repos/fisharebest/localization/zipball/2a30917d9d90631b448f6e18d8598e4deca475c4",
+ "reference": "2a30917d9d90631b448f6e18d8598e4deca475c4",
"shasum": ""
},
"require": {
@@ -258,7 +258,7 @@
"translate",
"translation"
],
- "time": "2015-03-20 15:25:57"
+ "time": "2015-03-21 17:58:02"
},
{
"name": "ircmaxell/password-compat",
diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
index c4330eb862..d1a5b62143 100644
--- a/vendor/composer/installed.json
+++ b/vendor/composer/installed.json
@@ -537,17 +537,17 @@
},
{
"name": "fisharebest/localization",
- "version": "1.3.0",
- "version_normalized": "1.3.0.0",
+ "version": "1.3.1",
+ "version_normalized": "1.3.1.0",
"source": {
"type": "git",
"url": "https://github.com/fisharebest/localization.git",
- "reference": "8f2f48fa3cf1fb3ee8e6816f26221c37d38ccb9f"
+ "reference": "2a30917d9d90631b448f6e18d8598e4deca475c4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fisharebest/localization/zipball/8f2f48fa3cf1fb3ee8e6816f26221c37d38ccb9f",
- "reference": "8f2f48fa3cf1fb3ee8e6816f26221c37d38ccb9f",
+ "url": "https://api.github.com/repos/fisharebest/localization/zipball/2a30917d9d90631b448f6e18d8598e4deca475c4",
+ "reference": "2a30917d9d90631b448f6e18d8598e4deca475c4",
"shasum": ""
},
"require": {
@@ -557,7 +557,7 @@
"phpunit/phpunit": "*",
"satooshi/php-coveralls": "*"
},
- "time": "2015-03-20 15:25:57",
+ "time": "2015-03-21 17:58:02",
"type": "library",
"installation-source": "dist",
"autoload": {
diff --git a/vendor/fisharebest/localization/CHANGELOG.md b/vendor/fisharebest/localization/CHANGELOG.md
index b2375cddee..5bbb74704c 100644
--- a/vendor/fisharebest/localization/CHANGELOG.md
+++ b/vendor/fisharebest/localization/CHANGELOG.md
@@ -1,6 +1,9 @@
CHANGE LOG
==========
+## 1.3.1 (2015-03-21)
+ - Add plural rules for Yiddish (yi) and Divehi (dv)
+
## 1.3.0 (2015-03-20)
- Add Translator/Translation classes
diff --git a/vendor/fisharebest/localization/src/Language/LanguageDv.php b/vendor/fisharebest/localization/src/Language/LanguageDv.php
index cce544d411..5af275e27c 100644
--- a/vendor/fisharebest/localization/src/Language/LanguageDv.php
+++ b/vendor/fisharebest/localization/src/Language/LanguageDv.php
@@ -22,4 +22,9 @@ class LanguageDv extends Language {
public function defaultTerritory() {
return new TerritoryMv;
}
+
+ /** {@inheritdoc} */
+ public function pluralRule() {
+ return new PluralRule1;
+ }
}
diff --git a/vendor/fisharebest/localization/src/Language/LanguageYi.php b/vendor/fisharebest/localization/src/Language/LanguageYi.php
index 3d36b595c4..043a074855 100644
--- a/vendor/fisharebest/localization/src/Language/LanguageYi.php
+++ b/vendor/fisharebest/localization/src/Language/LanguageYi.php
@@ -17,4 +17,9 @@ class LanguageYi extends Language {
public function defaultScript() {
return new ScriptHebr;
}
+
+ /** {@inheritdoc} */
+ public function pluralRule() {
+ return new PluralRule1;
+ }
}