Viewing file: search_synonyms.php (2 KB) -rw-rw-r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /** * * search_synonyms.php [Danish] * * @package language * @version Id: search_synonyms.php 8479 2008-03-29 00:22:48Z naderman $ * @versions $Id: search_synonyms.php,v 1.5 2008/11/23 15:52:22 jansk Exp $ * @source file is copyright (c) 2000, 2002, 2005, 2007 phpBB Group, * @modified and translated by Olympus DK Team * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 * Translators: Olympus DK Team, working at http://www.phpBB3.dk and http://area51.phpBB3.dk * * This file is part of the Danish language package for phpBB 3.0.x. * Copyright (c) 2006, 2007, 2008 Olympus DK Team * * The Danish language package for phpBB 3.0.x 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, version 2 of the License. * * The Danish language package for phpBB 3.0.x 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 language * package. If not, see <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>. * */
/** * DO NOT CHANGE */ if (!defined('IN_PHPBB')) { exit; }
$synonyms = array( 'alså' => 'altså', 'bensin' => 'benzin', 'blvier' => 'bliver', 'desvære' => 'desværre', 'fjel' => 'fejl', 'feler' => 'flere', 'helelr' => 'heller', 'iagtage' => 'iagttage', 'jepser' => 'jesper', 'linje' => 'linie', 'majonæse' => 'mayonnaise', 'mayonaise' => 'mayonnaise', 'meny' => 'menu', 'muglig' => 'mulig', 'orginal' => 'original', 'sattelit' => 'satellit', 'seperat' => 'separat', 'sikekr' => 'sikker', 'standart' => 'standard', 'statestik' => 'statistik', 'tastetur' => 'tastatur', 'suplere' => 'supplere', 'suplement' => 'supplement', 'unskyld' => 'undskyld', ); ?>
|