├── .gitignore ├── language ├── filipino │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── khmer │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── bengali │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ ├── unit_test_lang.php │ └── ftp_lang.php ├── hindi │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── marathi │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── tamil │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── greek │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── catalan │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── index.html ├── arabic │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ ├── unit_test_lang.php │ └── ftp_lang.php ├── basque │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── czech │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── danish │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── dutch │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── french │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── german │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── hungarian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── unit_test_lang.php │ └── migration_lang.php ├── korean │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ ├── ftp_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php ├── polish │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── slovak │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── thai │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ ├── unit_test_lang.php │ └── ftp_lang.php ├── urdu │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── armenian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── azerbaijani │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── bulgarian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── finnish │ └── index.html ├── gujarati │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── indonesian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── italian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── unit_test_lang.php │ └── migration_lang.php ├── japanese │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ ├── unit_test_lang.php │ ├── ftp_lang.php │ └── profiler_lang.php ├── latvian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── lithuanian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── norwegian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── persian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── portuguese │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── romanian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── russian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── slovenian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── spanish │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── swedish │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ ├── unit_test_lang.php │ └── ftp_lang.php ├── turkish │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── ukrainian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── vietnamese │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── bosnian │ └── index.html ├── croatian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── serbian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── portuguese-brazilian │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ └── unit_test_lang.php ├── simplified-chinese │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ ├── unit_test_lang.php │ ├── ftp_lang.php │ ├── upload_lang.php │ └── profiler_lang.php └── traditional-chinese │ ├── index.html │ ├── number_lang.php │ ├── pagination_lang.php │ ├── migration_lang.php │ ├── unit_test_lang.php │ ├── ftp_lang.php │ ├── upload_lang.php │ ├── profiler_lang.php │ └── imglib_lang.php └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | */config/development 2 | */logs/log-*.php 3 | */logs/!index.html 4 | */cache/* 5 | */cache/!index.html 6 | */cache/!.htaccess 7 | /nbproject/private/ 8 | /nbproject/ -------------------------------------------------------------------------------- /language/filipino/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /language/khmer/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /language/bengali/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /language/hindi/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /language/marathi/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /language/tamil/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /language/greek/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /language/catalan/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/arabic/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/basque/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/czech/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/danish/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/dutch/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/french/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/german/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/hungarian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /language/korean/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/polish/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/slovak/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/thai/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/urdu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/armenian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/azerbaijani/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/bulgarian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/finnish/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/gujarati/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/indonesian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/italian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/japanese/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/latvian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/lithuanian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/norwegian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/persian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/portuguese/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/romanian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/russian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/slovenian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/spanish/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/swedish/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/turkish/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/ukrainian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/vietnamese/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/bosnian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Zabranjen je pristup direktorijumu.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/croatian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Zabranjen je pristup direktoriju.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/serbian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Zabranjen je pristup direktorijumu.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/portuguese-brazilian/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/simplified-chinese/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/traditional-chinese/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /language/french/number_lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/) 8 | * @license http://opensource.org/licenses/MIT MIT License 9 | * @link https://codeigniter.com 10 | */ 11 | defined('BASEPATH') OR exit('No direct script access allowed'); 12 | 13 | $lang['terabyte_abbr'] = 'TB'; 14 | $lang['gigabyte_abbr'] = 'GB'; 15 | $lang['megabyte_abbr'] = 'MB'; 16 | $lang['kilobyte_abbr'] = 'KB'; 17 | $lang['bytes'] = 'Bajtov'; 18 | -------------------------------------------------------------------------------- /language/slovak/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/) 8 | * @license http://opensource.org/licenses/MIT MIT License 9 | * @link https://codeigniter.com 10 | */ 11 | defined('BASEPATH') OR exit('No direct script access allowed'); 12 | 13 | $lang['pagination_first_link'] = '‹ Prvá'; 14 | $lang['pagination_next_link'] = '>'; 15 | $lang['pagination_prev_link'] = '<'; 16 | $lang['pagination_last_link'] = 'Posledná ›'; 17 | -------------------------------------------------------------------------------- /language/simplified-chinese/migration_lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/) 8 | * @license http://opensource.org/licenses/MIT MIT License 9 | * @link https://codeigniter.com 10 | */ 11 | defined('BASEPATH') OR exit('No direct script access allowed'); 12 | 13 | $lang['migration_none_found'] = 'Žiadne migrácie neboli nájdené.'; 14 | $lang['migration_not_found'] = 'Migrácia s číslom tejto verzie nebola nájdená: %s.'; 15 | $lang['migration_sequence_gap'] = 'Chýbajúca migrácia v sekvencii blízko: %s.'; 16 | $lang['migration_multiple_version'] = 'Existuje viacej migracií s rovnakým číslom verzie: %s.'; 17 | $lang['migration_class_doesnt_exist'] = 'Trieda pre migráciu "%s" nebola nájdená.'; 18 | $lang['migration_missing_up_method'] = 'V migračnej triede "%s" chýba "up" metoda.'; 19 | $lang['migration_missing_down_method'] = 'V migračnej triede "%s" chýba "down" metoda.'; 20 | $lang['migration_invalid_filename'] = 'Migrácia "%s" má chybné meno.'; 21 | -------------------------------------------------------------------------------- /language/dutch/migration_lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/) 8 | * @license http://opensource.org/licenses/MIT MIT License 9 | * @link https://codeigniter.com 10 | */ 11 | defined('BASEPATH') OR exit('No direct script access allowed'); 12 | 13 | $lang['ut_test_name'] = 'Názov Testu'; 14 | $lang['ut_test_datatype'] = 'Dátový typ testu'; 15 | $lang['ut_res_datatype'] = 'očakávaný dátový typ'; 16 | $lang['ut_result'] = 'Výsledok'; 17 | $lang['ut_undefined'] = 'Nešpecifikované meno testu'; 18 | $lang['ut_file'] = 'Meno súboru'; 19 | $lang['ut_line'] = 'Číslo riadku'; 20 | $lang['ut_passed'] = 'Prešlo'; 21 | $lang['ut_failed'] = 'Neprešlo'; 22 | $lang['ut_boolean'] = 'Logické 1/0'; 23 | $lang['ut_integer'] = 'Celé číslo'; 24 | $lang['ut_float'] = 'Desatinné číslo'; 25 | $lang['ut_double'] = 'Presné desatinné číslo'; // can be the same as float 26 | $lang['ut_string'] = 'Reťazec'; 27 | $lang['ut_array'] = 'Pole'; 28 | $lang['ut_object'] = 'Objekt'; 29 | $lang['ut_resource'] = 'Zdroj'; 30 | $lang['ut_null'] = 'Null'; 31 | $lang['ut_notes'] = 'Poznámky'; 32 | -------------------------------------------------------------------------------- /language/korean/upload_lang.php: -------------------------------------------------------------------------------- 1 |