<?php
//Copyright (c) Florian Grannemann
//Last change in version: 2.0 Alpha 4
/*
******************************************************************************
ADbNewsSender 2
Copyright (C) 2009 Florian Grannemann (hide@address.com)
Website: http://adbnewssender.sf.net
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 3 of the License, or
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
******************************************************************************
*/
//This file is used to register all included language-packages.
//This is needed for setup and changing configuration settings
//To register a language package just add it to the end of the following settings:
//creating empty arrays:
$Lang_pack_name=array();
$Lang_pack_dir=array();
//Name of Language Package:
$Lang_pack_name[count($Lang_pack_name)]="English";
//language pack directory in "lang" directory:
$Lang_pack_dir[count($Lang_pack_dir)]="eng";
//german language package
$Lang_pack_name[count($Lang_pack_name)]="Deutsch";
$Lang_pack_dir[count($Lang_pack_dir)]="ger";
//spanish language package
$Lang_pack_name[count($Lang_pack_name)]="Español/castellano";
$Lang_pack_dir[count($Lang_pack_dir)]="spa";
//to add a new language package just set:
//$Lang_pack_name[count($Lang_pack_name)]="Language";
//$Lang_pack_dir[count($Lang_pack_dir)]="lang";
?>