aboutsummaryrefslogtreecommitdiffstats
path: root/library/intl/src/Language/LanguageInterface.php
diff options
context:
space:
mode:
authorRedMatrix <info@friendica.com>2014-12-31 10:43:19 +1100
committerRedMatrix <info@friendica.com>2014-12-31 10:43:19 +1100
commit4f35efa0bad4ae6489b63f3eebafe6542d654094 (patch)
treefdf7577c0b602a1f8b86401572e53cfe90cf2474 /library/intl/src/Language/LanguageInterface.php
parentae9d08267c632cae36a4ebd34c2077fd0051e0e7 (diff)
downloadvolse-hubzilla-4f35efa0bad4ae6489b63f3eebafe6542d654094.tar.gz
volse-hubzilla-4f35efa0bad4ae6489b63f3eebafe6542d654094.tar.bz2
volse-hubzilla-4f35efa0bad4ae6489b63f3eebafe6542d654094.zip
Revert "Language names via intl library."
Diffstat (limited to 'library/intl/src/Language/LanguageInterface.php')
-rw-r--r--library/intl/src/Language/LanguageInterface.php37
1 files changed, 0 insertions, 37 deletions
diff --git a/library/intl/src/Language/LanguageInterface.php b/library/intl/src/Language/LanguageInterface.php
deleted file mode 100644
index 612389142..000000000
--- a/library/intl/src/Language/LanguageInterface.php
+++ /dev/null
@@ -1,37 +0,0 @@
-<?php
-
-namespace CommerceGuys\Intl\Language;
-
-interface LanguageInterface
-{
- /**
- * Gets the two-letter language code.
- *
- * @return string
- */
- public function getLanguageCode();
-
- /**
- * Sets the two-letter language code.
- *
- * @param string $languageCode The two-letter language code.
- */
- public function setLanguageCode($languageCode);
-
- /**
- * Gets the language name.
- *
- * Note that certain locales have incomplete translations, in which
- * case the english version of the language name is used instead.
- *
- * @return string
- */
- public function getName();
-
- /**
- * Sets the language name.
- *
- * @param string $name The language name.
- */
- public function setName($name);
-}