53 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Danish language strings.
 | 
						|
 *
 | 
						|
 * This file is part of ADOdb, a Database Abstraction Layer library for PHP.
 | 
						|
 *
 | 
						|
 * @package ADOdb
 | 
						|
 * @link https://adodb.org Project's web site and documentation
 | 
						|
 * @link https://github.com/ADOdb/ADOdb Source code and issue tracker
 | 
						|
 *
 | 
						|
 * The ADOdb Library is dual-licensed, released under both the BSD 3-Clause
 | 
						|
 * and the GNU Lesser General Public Licence (LGPL) v2.1 or, at your option,
 | 
						|
 * any later version. This means you can use it in proprietary products.
 | 
						|
 * See the LICENSE.md file distributed with this source code for details.
 | 
						|
 * @license BSD-3-Clause
 | 
						|
 * @license LGPL-2.1-or-later
 | 
						|
 *
 | 
						|
 * @copyright 2000-2013 John Lim
 | 
						|
 * @copyright 2014 Damien Regad, Mark Newnham and the ADOdb community
 | 
						|
 * @author Arne Eckmann <bananstat@users.sourceforge.net>
 | 
						|
 */
 | 
						|
 | 
						|
$ADODB_LANG_ARRAY = array (
 | 
						|
  	    'LANG'                      => 'da',
 | 
						|
            DB_ERROR                    => 'ukendt fejl',
 | 
						|
            DB_ERROR_ALREADY_EXISTS     => 'eksisterer allerede',
 | 
						|
            DB_ERROR_CANNOT_CREATE      => 'kan ikke oprette',
 | 
						|
            DB_ERROR_CANNOT_DELETE      => 'kan ikke slette',
 | 
						|
            DB_ERROR_CANNOT_DROP        => 'kan ikke droppe',
 | 
						|
            DB_ERROR_CONSTRAINT         => 'begrænsning krænket',
 | 
						|
            DB_ERROR_DIVZERO            => 'division med nul',
 | 
						|
            DB_ERROR_INVALID            => 'ugyldig',
 | 
						|
            DB_ERROR_INVALID_DATE       => 'ugyldig dato eller klokkeslet',
 | 
						|
            DB_ERROR_INVALID_NUMBER     => 'ugyldigt tal',
 | 
						|
            DB_ERROR_MISMATCH           => 'mismatch',
 | 
						|
            DB_ERROR_NODBSELECTED       => 'ingen database valgt',
 | 
						|
            DB_ERROR_NOSUCHFIELD        => 'felt findes ikke',
 | 
						|
            DB_ERROR_NOSUCHTABLE        => 'tabel findes ikke',
 | 
						|
            DB_ERROR_NOT_CAPABLE        => 'DB backend opgav',
 | 
						|
            DB_ERROR_NOT_FOUND          => 'ikke fundet',
 | 
						|
            DB_ERROR_NOT_LOCKED         => 'ikke låst',
 | 
						|
            DB_ERROR_SYNTAX             => 'syntaksfejl',
 | 
						|
            DB_ERROR_UNSUPPORTED        => 'ikke understøttet',
 | 
						|
            DB_ERROR_VALUE_COUNT_ON_ROW => 'resulterende antal felter svarer ikke til forespørgslens antal felter',
 | 
						|
            DB_ERROR_INVALID_DSN        => 'ugyldig DSN',
 | 
						|
            DB_ERROR_CONNECT_FAILED     => 'tilslutning mislykkedes',
 | 
						|
            0	                        => 'ingen fejl', // DB_OK
 | 
						|
            DB_ERROR_NEED_MORE_DATA     => 'utilstrækkelige data angivet',
 | 
						|
            DB_ERROR_EXTENSION_NOT_FOUND=> 'udvidelse ikke fundet',
 | 
						|
            DB_ERROR_NOSUCHDB           => 'database ikke fundet',
 | 
						|
            DB_ERROR_ACCESS_VIOLATION   => 'utilstrækkelige rettigheder'
 | 
						|
);
 |