mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-03-11 19:50:25 -04:00
32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* System messages translation for CodeIgniter(tm)
|
|
*
|
|
* @author CodeIgniter community
|
|
* @author Peter Denk
|
|
* @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/)
|
|
* @license http://opensource.org/licenses/MIT MIT License
|
|
* @link http://codeigniter.com
|
|
*/
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
$lang['ut_test_name'] = 'Testnamn';
|
|
$lang['ut_test_datatype'] = 'Testdatatyp';
|
|
$lang['ut_res_datatype'] = 'Förväntad datatyp';
|
|
$lang['ut_result'] = 'Resultat';
|
|
$lang['ut_undefined'] = 'Odefinierat testnamn';
|
|
$lang['ut_file'] = 'Filnamn';
|
|
$lang['ut_line'] = 'Radnummer';
|
|
$lang['ut_passed'] = 'Godkänd';
|
|
$lang['ut_failed'] = 'Underkänd';
|
|
$lang['ut_boolean'] = 'Boolsk';
|
|
$lang['ut_integer'] = 'Heltal';
|
|
$lang['ut_float'] = 'Flyttal';
|
|
$lang['ut_double'] = 'Långt flyttal'; // can be the same as float
|
|
$lang['ut_string'] = 'Sträng';
|
|
$lang['ut_array'] = 'Matris';
|
|
$lang['ut_object'] = 'Objekt';
|
|
$lang['ut_resource'] = 'Resurs';
|
|
$lang['ut_null'] = 'NULL';
|
|
$lang['ut_notes'] = 'Noteringar';
|