summaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-03-13 08:27:12 +0000
committerGreg Roach <fisharebest@gmail.com>2015-03-13 08:27:48 +0000
commit51228e1eac72c41d72bd474deecca9911219a834 (patch)
tree00d5004f1f867eb0fd8bd4659a951cb20f9c898f /vendor
parentb4836b8f9e37df7070b79750c28cbd96a4c2c6b4 (diff)
downloadwebtrees-51228e1eac72c41d72bd474deecca9911219a834.tar.gz
webtrees-51228e1eac72c41d72bd474deecca9911219a834.tar.bz2
webtrees-51228e1eac72c41d72bd474deecca9911219a834.zip
Update fisharebest/localization from 1.1.0 to 1.1.1
Diffstat (limited to 'vendor')
-rw-r--r--vendor/composer/installed.json12
-rw-r--r--vendor/fisharebest/localization/CHANGELOG.md3
-rw-r--r--vendor/fisharebest/localization/src/Locale/LocaleSrLatn.php10
3 files changed, 19 insertions, 6 deletions
diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
index cc3f426b26..ea918dd748 100644
--- a/vendor/composer/installed.json
+++ b/vendor/composer/installed.json
@@ -537,17 +537,17 @@
},
{
"name": "fisharebest/localization",
- "version": "1.1.0",
- "version_normalized": "1.1.0.0",
+ "version": "1.1.1",
+ "version_normalized": "1.1.1.0",
"source": {
"type": "git",
"url": "https://github.com/fisharebest/localization.git",
- "reference": "87f51e225a9f1e1f9505294e41d60a445a53f4f2"
+ "reference": "c19967654681ebf5d5ed768319de7c944d94ce77"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fisharebest/localization/zipball/87f51e225a9f1e1f9505294e41d60a445a53f4f2",
- "reference": "87f51e225a9f1e1f9505294e41d60a445a53f4f2",
+ "url": "https://api.github.com/repos/fisharebest/localization/zipball/c19967654681ebf5d5ed768319de7c944d94ce77",
+ "reference": "c19967654681ebf5d5ed768319de7c944d94ce77",
"shasum": ""
},
"require": {
@@ -557,7 +557,7 @@
"phpunit/phpunit": "*",
"satooshi/php-coveralls": "*"
},
- "time": "2015-03-12 10:57:39",
+ "time": "2015-03-13 08:24:08",
"type": "library",
"installation-source": "dist",
"autoload": {
diff --git a/vendor/fisharebest/localization/CHANGELOG.md b/vendor/fisharebest/localization/CHANGELOG.md
index 3967c0b738..fec2f50242 100644
--- a/vendor/fisharebest/localization/CHANGELOG.md
+++ b/vendor/fisharebest/localization/CHANGELOG.md
@@ -1,6 +1,9 @@
CHANGE LOG
==========
+## 1.1.1 (2015-03-13)
+ - Fix endonym (sr-Latn)
+
## 1.1.0 (2015-03-12)
- Add Divehi (dv)
- Add Maori (mi)
diff --git a/vendor/fisharebest/localization/src/Locale/LocaleSrLatn.php b/vendor/fisharebest/localization/src/Locale/LocaleSrLatn.php
index 387e418359..728edc203e 100644
--- a/vendor/fisharebest/localization/src/Locale/LocaleSrLatn.php
+++ b/vendor/fisharebest/localization/src/Locale/LocaleSrLatn.php
@@ -9,6 +9,16 @@
*/
class LocaleSrLatn extends LocaleSr {
/** {@inheritdoc} */
+ public function endonym() {
+ return 'srpski';
+ }
+
+ /** {@inheritdoc} */
+ protected function endonymSortable() {
+ return 'SRPSKI';
+ }
+
+ /** {@inheritdoc} */
public function script() {
return new ScriptLatn();
}