소스 검색

throw exception if cannot find translation file

tags/0.9.0
itismadness 4 년 전
부모
커밋
da72835bc3
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      src/Parser/EAC/Translator.php

+ 5
- 1
src/Parser/EAC/Translator.php 파일 보기

@@ -18,9 +18,13 @@ class Translator
}
$lang_directory = __DIR__ . DIRECTORY_SEPARATOR . 'languages' . DIRECTORY_SEPARATOR;
$english = json_decode(file_get_contents($lang_directory . 'en.json'), true);

if (!file_exists($lang_directory . $language_code . '.json')) {
throw new InvalidFileException('Could not find translation file for ' . $language_code . '.');
}
$translation = json_decode(file_get_contents($lang_directory . $language_code . '.json'), true);
if ($translation === null) {
throw new InvalidFileException('Could not parse translation file for ' . $language_code);
throw new InvalidFileException('Could not parse translation file for ' . $language_code . '.');
}

foreach ($translation as $key => $value) {


불러오는 중...
취소
저장