﻿// hanzicards.js    -*- mode:C; coding: utf-8 -*-
// version 0.3.1
// Copyright (C) 2003 by Forrest Cahoon (hanziquiz@abstractfactory.org)
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

var Category = new Array("chinois simplifié", 
                         "pinyin", "français");

var Qsel_default_index = 0;
var Asel_default_index = 1;

var Deck = new Array(
   new Array(
  new Array( "老师", "lǎoshī", "professeur"),
 new Array( "学生", "xuéshēng", "élève"),
 new Array( "中文", "zhōngwén", "langue chinoise"),
 new Array( "法文", "fǎwén", "langue française"),
 new Array( "日文", "rìwén", "langue japonaise"),
 new Array( "大学", "dàxué", "université"),
 new Array( "小学", "xiǎoxué", "école primaire"),
 new Array( "大学生", "dàxuéshēng", "étudiant"),
 new Array( "中学", "zhōngxué", "collège, lycée"),
 new Array( "书法", "shūfǎ", "calligraphie"),
  new Array( "法学", "fǎxué ", "droit"),
 new Array( "生日", "shēngrì", "anniversaire")
    )
);
 



