mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-26 10:03:11 -04:00
31 lines
1.2 KiB
PHP
31 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* System messages translation for CodeIgniter(tm)
|
|
*
|
|
* @author CodeIgniter community
|
|
* @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'] = 'Nazwa testu';
|
|
$lang['ut_test_datatype'] = 'Testowany typ';
|
|
$lang['ut_res_datatype'] = 'Oczekiwany typ';
|
|
$lang['ut_result'] = 'Wynik';
|
|
$lang['ut_undefined'] = 'Niezidentyfikowana nazwa testu';
|
|
$lang['ut_file'] = 'Nazwa pliku';
|
|
$lang['ut_line'] = 'Numer linii';
|
|
$lang['ut_passed'] = 'Zaliczony';
|
|
$lang['ut_failed'] = 'Niezaliczony';
|
|
$lang['ut_boolean'] = 'Boolean';
|
|
$lang['ut_integer'] = 'Integer';
|
|
$lang['ut_float'] = 'Float';
|
|
$lang['ut_double'] = 'Float'; // może być taki sam jak float
|
|
$lang['ut_string'] = 'String';
|
|
$lang['ut_array'] = 'Array';
|
|
$lang['ut_object'] = 'Object';
|
|
$lang['ut_resource'] = 'Resource';
|
|
$lang['ut_null'] = 'Null';
|
|
$lang['ut_notes'] = 'Notatki';
|