1
0
mirror of https://github.com/mbirth/tcl_update_db.git synced 2024-09-19 16:53:25 +01:00

Add support for Korean changelog descriptions.

This commit is contained in:
Markus Birth 2018-06-22 15:20:22 +02:00
parent 3707089942
commit 22751aa4f7
2 changed files with 2 additions and 0 deletions

View File

@ -101,6 +101,7 @@ class SQLiteWriter
'note' => array(
'en' => $g->description_en,
'ja' => $g->description_ja,
'ko' => $g->description_ko,
'zh' => $g->description_zh,
),
'pubDate' => $g->time,

View File

@ -24,6 +24,7 @@ class XmlParser
'file_version' => '//FILESET/FILE[1]/FILE_VERSION',
'description_en' => '//DESCRIPTION/en',
'description_ja' => '//DESCRIPTION/ja',
'description_ko' => '//DESCRIPTION/ko',
'description_zh' => '//DESCRIPTION/zh',
);