summaryrefslogtreecommitdiffstats
path: root/dictionary.php
diff options
context:
space:
mode:
Diffstat (limited to 'dictionary.php')
-rw-r--r--dictionary.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/dictionary.php b/dictionary.php
deleted file mode 100644
index 00834a49..00000000
--- a/dictionary.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-class Dictionary{
- private static $dictionary;
- private static $langArray;
-
- function build(){
- self::$dictionary = json_decode(file_get_contents("dictionary.json"),true);
- foreach(self::$dictionary as $key => $text){
- self::$langArray[$key] = $text[LANG];
- }
- }
-
- public static function getArray(){
- return self::$langArray;
- }
-
-}