chinapedia.github.io


Project maintained by chinapedia Hosted on GitHub Pages — Theme by mattgraham

中国百科

中国百科是针对维基百科内容的一系列导出、转换和翻译计划。目前计划中,中国百科的内容有三处来源:维基百科的内容导入;英文维基百科、英文学术论文以及其它外语内容的中文翻译站

维基百科镜像

目前可以在国内访问,翻译的词条内容,应用也会尽量链接到此镜像:https://wiki.chinapedia.org

维基百科导入

翻译

参与本项目

目前有三种参与方式,你可以任选:

我本人计划先用对比下 Google 和 Microsoft Translator API 的翻译质量,然后用机器翻译出一个版本。

有意参与者可以加本人微信:li_ruqi 或者加入 Telegram 群组:https://t.me/chinapedia

Import Wikipedia dump

https://www.mediawiki.org/wiki/Manual:MWDumper

Before using mwdumper, your page, text, revision and redirect tables must be empty. To empty them, do this (note that this will wipe out an existing wiki):

In SQL: TRUNCATE TABLE page; TRUNCATE TABLE text; TRUNCATE TABLE revision; TRUNCATE TABLE redirect; TRUNCATE TABLE category;

In maintenance directory: php rebuildall.php

Update domain

https://www.mediawiki.org/wiki/Manual:Moving_a_wiki

-- Update entries in module_deps table
SET @old='en.wikipedia.org';
SET @new='zh.chinapedia.org';
UPDATE `module_deps` SET `md_deps` = REPLACE( `md_deps`, @old, @new );

Extensions

解析器依赖 Scribunto 和 ParserFunctions https://www.mediawiki.org/wiki/Manual:Importing_Wikipedia_infoboxes_tutorial

Interface