<?php
/*
  $Id: lang_list.php 1965 2008-04-12 06:35:33Z andrewsimpson $

  (c) 2005 - 2007 Andrew Simpson <andrew.simpson at paradise.net.nz>

  WebCollab
  ---------------------------------------

  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.

  Function:
  ---------

  Creates a list of languages for the Unicode version.

  Note: This file is in UTF-8 character set

*/


$lang_list = array();

$lang_list['bg']    = 'Български';
$lang_list['ca']    = 'Català';
$lang_list['cs']    = 'Čeština';
$lang_list['da']    = 'Dansk';
$lang_list['de']    = 'Deutsch';
$lang_list['nl']    = 'Dutch';
$lang_list['en']    = 'English';
$lang_list['es']    = 'Español';
$lang_list['eo']    = 'Esperanto';
$lang_list['fr']    = 'Français';
$lang_list['gr']    = 'Ελληνικά';
$lang_list['hu']    = 'Magyar';
$lang_list['it']    = 'Italiano';
$lang_list['ja']    = '日本語';
$lang_list['ko']    = '한국어';
$lang_list['no']    = 'Norwegian';
$lang_list['pl']    = 'Polski';
$lang_list['pt']    = 'Português';
$lang_list['pt-br'] = 'Português (Br)';
$lang_list['ru']    = 'русский';
$lang_list['se']    = 'Svenska';
$lang_list['sk']    = 'Slovenský';
$lang_list['sl']    = 'Slovenščina';
$lang_list['sr-cy'] = 'Српски';
$lang_list['sr-la'] = 'Srpski';
$lang_list['tr']    = 'Türkçe';
$lang_list['zh-tw'] = 'Chinese (Traditional)';
$lang_list['zh-hk'] = 'Chinese (Simplified)';

?>