mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-14 02:33:56 -04:00
Update CodeIgniter to vs 3.1.5
This commit is contained in:
12
composer.lock
generated
12
composer.lock
generated
@@ -9,20 +9,20 @@
|
||||
"packages": [
|
||||
{
|
||||
"name": "codeigniter/framework",
|
||||
"version": "3.1.4",
|
||||
"version": "3.1.5",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/bcit-ci/CodeIgniter.git",
|
||||
"reference": "873608df8be83420474e3cf9fc749a8ed12a6c09"
|
||||
"reference": "6c7a4266410070d30f8f6bcdf9c9e67f3d6478e3"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/bcit-ci/CodeIgniter/zipball/873608df8be83420474e3cf9fc749a8ed12a6c09",
|
||||
"reference": "873608df8be83420474e3cf9fc749a8ed12a6c09",
|
||||
"url": "https://api.github.com/repos/bcit-ci/CodeIgniter/zipball/6c7a4266410070d30f8f6bcdf9c9e67f3d6478e3",
|
||||
"reference": "6c7a4266410070d30f8f6bcdf9c9e67f3d6478e3",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.2.4"
|
||||
"php": ">=5.3.7"
|
||||
},
|
||||
"require-dev": {
|
||||
"mikey179/vfsstream": "1.1.*",
|
||||
@@ -38,7 +38,7 @@
|
||||
],
|
||||
"description": "The CodeIgniter framework",
|
||||
"homepage": "https://codeigniter.com",
|
||||
"time": "2017-03-20 15:51:08"
|
||||
"time": "2017-06-19 08:33:58"
|
||||
},
|
||||
{
|
||||
"name": "dompdf/dompdf",
|
||||
|
||||
96
vendor/codeigniter/framework/application/config/database.php
vendored
Normal file
96
vendor/codeigniter/framework/application/config/database.php
vendored
Normal file
@@ -0,0 +1,96 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
| -------------------------------------------------------------------
|
||||
| DATABASE CONNECTIVITY SETTINGS
|
||||
| -------------------------------------------------------------------
|
||||
| This file will contain the settings needed to access your database.
|
||||
|
|
||||
| For complete instructions please consult the 'Database Connection'
|
||||
| page of the User Guide.
|
||||
|
|
||||
| -------------------------------------------------------------------
|
||||
| EXPLANATION OF VARIABLES
|
||||
| -------------------------------------------------------------------
|
||||
|
|
||||
| ['dsn'] The full DSN string describe a connection to the database.
|
||||
| ['hostname'] The hostname of your database server.
|
||||
| ['username'] The username used to connect to the database
|
||||
| ['password'] The password used to connect to the database
|
||||
| ['database'] The name of the database you want to connect to
|
||||
| ['dbdriver'] The database driver. e.g.: mysqli.
|
||||
| Currently supported:
|
||||
| cubrid, ibase, mssql, mysql, mysqli, oci8,
|
||||
| odbc, pdo, postgre, sqlite, sqlite3, sqlsrv
|
||||
| ['dbprefix'] You can add an optional prefix, which will be added
|
||||
| to the table name when using the Query Builder class
|
||||
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
|
||||
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
|
||||
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
|
||||
| ['cachedir'] The path to the folder where cache files should be stored
|
||||
| ['char_set'] The character set used in communicating with the database
|
||||
| ['dbcollat'] The character collation used in communicating with the database
|
||||
| NOTE: For MySQL and MySQLi databases, this setting is only used
|
||||
| as a backup if your server is running PHP < 5.2.3 or MySQL < 5.0.7
|
||||
| (and in table creation queries made with DB Forge).
|
||||
| There is an incompatibility in PHP with mysql_real_escape_string() which
|
||||
| can make your site vulnerable to SQL injection if you are using a
|
||||
| multi-byte character set and are running versions lower than these.
|
||||
| Sites using Latin-1 or UTF-8 database character set and collation are unaffected.
|
||||
| ['swap_pre'] A default table prefix that should be swapped with the dbprefix
|
||||
| ['encrypt'] Whether or not to use an encrypted connection.
|
||||
|
|
||||
| 'mysql' (deprecated), 'sqlsrv' and 'pdo/sqlsrv' drivers accept TRUE/FALSE
|
||||
| 'mysqli' and 'pdo/mysql' drivers accept an array with the following options:
|
||||
|
|
||||
| 'ssl_key' - Path to the private key file
|
||||
| 'ssl_cert' - Path to the public key certificate file
|
||||
| 'ssl_ca' - Path to the certificate authority file
|
||||
| 'ssl_capath' - Path to a directory containing trusted CA certificats in PEM format
|
||||
| 'ssl_cipher' - List of *allowed* ciphers to be used for the encryption, separated by colons (':')
|
||||
| 'ssl_verify' - TRUE/FALSE; Whether verify the server certificate or not ('mysqli' only)
|
||||
|
|
||||
| ['compress'] Whether or not to use client compression (MySQL only)
|
||||
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
|
||||
| - good for ensuring strict SQL while developing
|
||||
| ['ssl_options'] Used to set various SSL options that can be used when making SSL connections.
|
||||
| ['failover'] array - A array with 0 or more data for connections if the main should fail.
|
||||
| ['save_queries'] TRUE/FALSE - Whether to "save" all executed queries.
|
||||
| NOTE: Disabling this will also effectively disable both
|
||||
| $this->db->last_query() and profiling of DB queries.
|
||||
| When you run a query, with this setting set to TRUE (default),
|
||||
| CodeIgniter will store the SQL statement for debugging purposes.
|
||||
| However, this may cause high memory usage, especially if you run
|
||||
| a lot of SQL queries ... disable this to avoid that problem.
|
||||
|
|
||||
| The $active_group variable lets you choose which connection group to
|
||||
| make active. By default there is only one group (the 'default' group).
|
||||
|
|
||||
| The $query_builder variables lets you determine whether or not to load
|
||||
| the query builder class.
|
||||
*/
|
||||
$active_group = 'default';
|
||||
$query_builder = TRUE;
|
||||
|
||||
$db['default'] = array(
|
||||
'dsn' => '',
|
||||
'hostname' => 'localhost',
|
||||
'username' => '',
|
||||
'password' => '',
|
||||
'database' => '',
|
||||
'dbdriver' => 'mysqli',
|
||||
'dbprefix' => '',
|
||||
'pconnect' => FALSE,
|
||||
'db_debug' => (ENVIRONMENT !== 'production'),
|
||||
'cache_on' => FALSE,
|
||||
'cachedir' => '',
|
||||
'char_set' => 'utf8',
|
||||
'dbcollat' => 'utf8_general_ci',
|
||||
'swap_pre' => '',
|
||||
'encrypt' => FALSE,
|
||||
'compress' => FALSE,
|
||||
'stricton' => FALSE,
|
||||
'failover' => array(),
|
||||
'save_queries' => TRUE
|
||||
);
|
||||
2
vendor/codeigniter/framework/composer.json
vendored
2
vendor/codeigniter/framework/composer.json
vendored
@@ -11,7 +11,7 @@
|
||||
"source": "https://github.com/bcit-ci/CodeIgniter"
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.2.4"
|
||||
"php": ">=5.3.7"
|
||||
},
|
||||
"suggest": {
|
||||
"paragonie/random_compat": "Provides better randomness in PHP 5.x"
|
||||
|
||||
@@ -55,7 +55,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
* @var string
|
||||
*
|
||||
*/
|
||||
const CI_VERSION = '3.1.4';
|
||||
const CI_VERSION = '3.1.5';
|
||||
|
||||
/*
|
||||
* ------------------------------------------------------
|
||||
@@ -434,7 +434,7 @@ if ( ! is_php('5.4'))
|
||||
* ReflectionMethod::isConstructor() is the ONLY reliable check,
|
||||
* knowing which method will be executed as a constructor.
|
||||
*/
|
||||
elseif ( ! is_callable(array($class, $method)) && strcasecmp($class, $method) === 0)
|
||||
elseif ( ! is_callable(array($class, $method)))
|
||||
{
|
||||
$reflection = new ReflectionMethod($class, $method);
|
||||
if ( ! $reflection->isPublic() OR $reflection->isConstructor())
|
||||
|
||||
@@ -135,7 +135,7 @@ if ( ! function_exists('load_class'))
|
||||
*
|
||||
* @param string the class name being requested
|
||||
* @param string the directory where the class should be found
|
||||
* @param string an optional argument to pass to the class constructor
|
||||
* @param mixed an optional argument to pass to the class constructor
|
||||
* @return object
|
||||
*/
|
||||
function &load_class($class, $directory = 'libraries', $param = NULL)
|
||||
|
||||
@@ -231,7 +231,7 @@ class CI_Exceptions {
|
||||
* @param string $message Error message
|
||||
* @param string $filepath File path
|
||||
* @param int $line Line number
|
||||
* @return string Error page output
|
||||
* @return void
|
||||
*/
|
||||
public function show_php_error($severity, $message, $filepath, $line)
|
||||
{
|
||||
|
||||
107
vendor/codeigniter/framework/system/core/Output.php
vendored
107
vendor/codeigniter/framework/system/core/Output.php
vendored
@@ -586,62 +586,59 @@ class CI_Output {
|
||||
return;
|
||||
}
|
||||
|
||||
if (flock($fp, LOCK_EX))
|
||||
{
|
||||
// If output compression is enabled, compress the cache
|
||||
// itself, so that we don't have to do that each time
|
||||
// we're serving it
|
||||
if ($this->_compress_output === TRUE)
|
||||
{
|
||||
$output = gzencode($output);
|
||||
|
||||
if ($this->get_header('content-type') === NULL)
|
||||
{
|
||||
$this->set_content_type($this->mime_type);
|
||||
}
|
||||
}
|
||||
|
||||
$expire = time() + ($this->cache_expiration * 60);
|
||||
|
||||
// Put together our serialized info.
|
||||
$cache_info = serialize(array(
|
||||
'expire' => $expire,
|
||||
'headers' => $this->headers
|
||||
));
|
||||
|
||||
$output = $cache_info.'ENDCI--->'.$output;
|
||||
|
||||
for ($written = 0, $length = self::strlen($output); $written < $length; $written += $result)
|
||||
{
|
||||
if (($result = fwrite($fp, self::substr($output, $written))) === FALSE)
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
flock($fp, LOCK_UN);
|
||||
}
|
||||
else
|
||||
if ( ! flock($fp, LOCK_EX))
|
||||
{
|
||||
log_message('error', 'Unable to secure a file lock for file at: '.$cache_path);
|
||||
fclose($fp);
|
||||
return;
|
||||
}
|
||||
|
||||
// If output compression is enabled, compress the cache
|
||||
// itself, so that we don't have to do that each time
|
||||
// we're serving it
|
||||
if ($this->_compress_output === TRUE)
|
||||
{
|
||||
$output = gzencode($output);
|
||||
|
||||
if ($this->get_header('content-type') === NULL)
|
||||
{
|
||||
$this->set_content_type($this->mime_type);
|
||||
}
|
||||
}
|
||||
|
||||
$expire = time() + ($this->cache_expiration * 60);
|
||||
|
||||
// Put together our serialized info.
|
||||
$cache_info = serialize(array(
|
||||
'expire' => $expire,
|
||||
'headers' => $this->headers
|
||||
));
|
||||
|
||||
$output = $cache_info.'ENDCI--->'.$output;
|
||||
|
||||
for ($written = 0, $length = self::strlen($output); $written < $length; $written += $result)
|
||||
{
|
||||
if (($result = fwrite($fp, self::substr($output, $written))) === FALSE)
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
flock($fp, LOCK_UN);
|
||||
fclose($fp);
|
||||
|
||||
if (is_int($result))
|
||||
{
|
||||
chmod($cache_path, 0640);
|
||||
log_message('debug', 'Cache file written: '.$cache_path);
|
||||
|
||||
// Send HTTP cache-control headers to browser to match file cache settings.
|
||||
$this->set_cache_header($_SERVER['REQUEST_TIME'], $expire);
|
||||
}
|
||||
else
|
||||
if ( ! is_int($result))
|
||||
{
|
||||
@unlink($cache_path);
|
||||
log_message('error', 'Unable to write the complete cache content at: '.$cache_path);
|
||||
return;
|
||||
}
|
||||
|
||||
chmod($cache_path, 0640);
|
||||
log_message('debug', 'Cache file written: '.$cache_path);
|
||||
|
||||
// Send HTTP cache-control headers to browser to match file cache settings.
|
||||
$this->set_cache_header($_SERVER['REQUEST_TIME'], $expire);
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------
|
||||
@@ -708,11 +705,9 @@ class CI_Output {
|
||||
log_message('debug', 'Cache file has expired. File deleted.');
|
||||
return FALSE;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Or else send the HTTP cache control headers.
|
||||
$this->set_cache_header($last_modified, $expire);
|
||||
}
|
||||
|
||||
// Send the HTTP cache control headers
|
||||
$this->set_cache_header($last_modified, $expire);
|
||||
|
||||
// Add headers from cache file.
|
||||
foreach ($cache_info['headers'] as $header)
|
||||
@@ -798,13 +793,11 @@ class CI_Output {
|
||||
$this->set_status_header(304);
|
||||
exit;
|
||||
}
|
||||
else
|
||||
{
|
||||
header('Pragma: public');
|
||||
header('Cache-Control: max-age='.$max_age.', public');
|
||||
header('Expires: '.gmdate('D, d M Y H:i:s', $expiration).' GMT');
|
||||
header('Last-modified: '.gmdate('D, d M Y H:i:s', $last_modified).' GMT');
|
||||
}
|
||||
|
||||
header('Pragma: public');
|
||||
header('Cache-Control: max-age='.$max_age.', public');
|
||||
header('Expires: '.gmdate('D, d M Y H:i:s', $expiration).' GMT');
|
||||
header('Last-modified: '.gmdate('D, d M Y H:i:s', $last_modified).' GMT');
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------
|
||||
|
||||
@@ -68,7 +68,7 @@ if ( ! function_exists('mb_strlen'))
|
||||
* @link http://php.net/mb_strlen
|
||||
* @param string $str
|
||||
* @param string $encoding
|
||||
* @return string
|
||||
* @return int
|
||||
*/
|
||||
function mb_strlen($str, $encoding = NULL)
|
||||
{
|
||||
|
||||
@@ -143,7 +143,7 @@ class CI_DB_Cache {
|
||||
$segment_two = ($this->CI->uri->segment(2) == FALSE) ? 'index' : $this->CI->uri->segment(2);
|
||||
$filepath = $this->db->cachedir.$segment_one.'+'.$segment_two.'/'.md5($sql);
|
||||
|
||||
if (FALSE === ($cachedata = @file_get_contents($filepath)))
|
||||
if ( ! is_file($filepath) OR FALSE === ($cachedata = file_get_contents($filepath)))
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
@@ -488,7 +488,7 @@ abstract class CI_DB_forge {
|
||||
*
|
||||
* @param string $table Table name
|
||||
* @param bool $if_exists Whether to add an IF EXISTS condition
|
||||
* @return string
|
||||
* @return mixed (Returns a platform-specific DROP table string, or TRUE to indicate there's nothing to do)
|
||||
*/
|
||||
protected function _drop_table($table, $if_exists)
|
||||
{
|
||||
@@ -979,8 +979,8 @@ abstract class CI_DB_forge {
|
||||
/**
|
||||
* Process indexes
|
||||
*
|
||||
* @param string $table
|
||||
* @return string
|
||||
* @param string $table Table name
|
||||
* @return string[] list of SQL statements
|
||||
*/
|
||||
protected function _process_indexes($table)
|
||||
{
|
||||
|
||||
@@ -1409,7 +1409,7 @@ abstract class CI_DB_query_builder extends CI_DB_driver {
|
||||
$this->qb_orderby = NULL;
|
||||
}
|
||||
|
||||
$result = ($this->qb_distinct === TRUE OR ! empty($this->qb_groupby) OR ! empty($this->qb_cache_groupby))
|
||||
$result = ($this->qb_distinct === TRUE OR ! empty($this->qb_groupby) OR ! empty($this->qb_cache_groupby) OR $this->qb_limit OR $this->qb_offset)
|
||||
? $this->query($this->_count_string.$this->protect_identifiers('numrows')."\nFROM (\n".$this->_compile_select()."\n) CI_count_all_results")
|
||||
: $this->query($this->_compile_select($this->_count_string.$this->protect_identifiers('numrows')));
|
||||
|
||||
|
||||
@@ -91,7 +91,7 @@ class CI_DB_ibase_forge extends CI_DB_forge {
|
||||
* Create database
|
||||
*
|
||||
* @param string $db_name
|
||||
* @return string
|
||||
* @return bool
|
||||
*/
|
||||
public function create_database($db_name)
|
||||
{
|
||||
|
||||
@@ -124,7 +124,7 @@ class CI_DB_oci8_forge extends CI_DB_forge {
|
||||
if ($alter_type === 'MODIFY' && ! empty($field[$i]['new_name']))
|
||||
{
|
||||
$sqls[] = $sql.' RENAME COLUMN '.$this->db->escape_identifiers($field[$i]['name'])
|
||||
.' '.$this->db->escape_identifiers($field[$i]['new_name']);
|
||||
.' TO '.$this->db->escape_identifiers($field[$i]['new_name']);
|
||||
}
|
||||
|
||||
$field[$i] = "\n\t".$field[$i]['_literal'];
|
||||
|
||||
@@ -117,7 +117,7 @@ class CI_DB_pdo_oci_forge extends CI_DB_pdo_forge {
|
||||
if ($alter_type === 'MODIFY' && ! empty($field[$i]['new_name']))
|
||||
{
|
||||
$sqls[] = $sql.' RENAME COLUMN '.$this->db->escape_identifiers($field[$i]['name'])
|
||||
.' '.$this->db->escape_identifiers($field[$i]['new_name']);
|
||||
.' TO '.$this->db->escape_identifiers($field[$i]['new_name']);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -597,7 +597,7 @@ if ( ! function_exists('form_label'))
|
||||
*
|
||||
* @param string The text to appear onscreen
|
||||
* @param string The id the label applies to
|
||||
* @param array Additional attributes
|
||||
* @param mixed Additional attributes
|
||||
* @return string
|
||||
*/
|
||||
function form_label($label_text = '', $id = '', $attributes = array())
|
||||
@@ -610,13 +610,7 @@ if ( ! function_exists('form_label'))
|
||||
$label .= ' for="'.$id.'"';
|
||||
}
|
||||
|
||||
if (is_array($attributes) && count($attributes) > 0)
|
||||
{
|
||||
foreach ($attributes as $key => $val)
|
||||
{
|
||||
$label .= ' '.$key.'="'.$val.'"';
|
||||
}
|
||||
}
|
||||
$label .= _attributes_to_string($attributes);
|
||||
|
||||
return $label.'>'.$label_text.'</label>';
|
||||
}
|
||||
|
||||
@@ -95,6 +95,7 @@ if ( ! function_exists('singular'))
|
||||
'/(s)tatuses$/' => '\1\2tatus',
|
||||
'/(c)hildren$/' => '\1\2hild',
|
||||
'/(n)ews$/' => '\1\2ews',
|
||||
'/(quiz)zes$/' => '\1',
|
||||
'/([^us])s$/' => '\1'
|
||||
);
|
||||
|
||||
|
||||
@@ -10,21 +10,21 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['cal_su'] = 'أح';
|
||||
$lang['cal_mo'] = 'إث';
|
||||
$lang['cal_mo'] = 'ٱث';
|
||||
$lang['cal_tu'] = 'ثل';
|
||||
$lang['cal_we'] = 'أر';
|
||||
$lang['cal_th'] = 'خم';
|
||||
$lang['cal_fr'] = 'جم';
|
||||
$lang['cal_sa'] = 'سب';
|
||||
$lang['cal_sun'] = 'أح';
|
||||
$lang['cal_mon'] = 'إث';
|
||||
$lang['cal_mon'] = 'ٱث';
|
||||
$lang['cal_tue'] = 'ثل';
|
||||
$lang['cal_wed'] = 'أر';
|
||||
$lang['cal_thu'] = 'خم';
|
||||
$lang['cal_fri'] = 'جم';
|
||||
$lang['cal_sat'] = 'سب';
|
||||
$lang['cal_sunday'] = 'الأحد';
|
||||
$lang['cal_monday'] = 'الإثنين';
|
||||
$lang['cal_monday'] = 'الاثنين';
|
||||
$lang['cal_tuesday'] = 'الثلاثاء';
|
||||
$lang['cal_wednesday'] = 'الأربعاء';
|
||||
$lang['cal_thursday'] = 'الخميس';
|
||||
|
||||
@@ -14,22 +14,22 @@ $lang['db_unable_to_connect'] = 'غير قادر على الإتصال بقوا
|
||||
$lang['db_unable_to_select'] = 'غير قادر على تحديد قاعدة البيانات التالية: %s';
|
||||
$lang['db_unable_to_create'] = 'غير قادر على إنشاء قاعدة البيانات التالية: %s';
|
||||
$lang['db_invalid_query'] = 'الإستعلام المرسل غير صحيح.';
|
||||
$lang['db_must_set_table'] = 'يجب وضع جدول قاعدة بيانات للإستخدامة مع الإستعلام.';
|
||||
$lang['db_must_set_table'] = 'يجب وضع جدول قاعدة بيانات للإستخدام مع الإستعلام.';
|
||||
$lang['db_must_use_set'] = 'يجب إستخدام خاصية "set" لتحديث السجيل.';
|
||||
$lang['db_must_use_index'] = 'يجب تحديد رقم للتحديثات.';
|
||||
$lang['db_batch_missing_index'] = 'سجل أو أكثر لا يحتوى على رقم التحديث.';
|
||||
$lang['db_must_use_where'] = 'التحديث غير مسموح به مالم يحتوى على جملة "where" أو "like".';
|
||||
$lang['db_del_must_use_where'] = 'الحذف غير مسموح به مالم يحتوى على جملة "where" أو "like".';
|
||||
$lang['db_field_param_missing'] = 'لجلب أسماء الحقول يجب إرسال إسم الجدول كمتغير.';
|
||||
$lang['db_unsupported_function'] = 'هذه الميزة غير متوفرة في قاعدة البيانات التى تستخدمها.';
|
||||
$lang['db_batch_missing_index'] = 'سجل أو أكثر لا يحتوي على رقم التحديث.';
|
||||
$lang['db_must_use_where'] = 'التحديث غير مسموح به ما لم يحتوي على جملة "where" أو "like".';
|
||||
$lang['db_del_must_use_where'] = 'الحذف غير مسموح به ما لم يحتوي على جملة "where" أو "like".';
|
||||
$lang['db_field_param_missing'] = 'لجلب أسماء الحقول يجب إرسال اسم الجدول بصفته متغيرا.';
|
||||
$lang['db_unsupported_function'] = 'هذه الميزة غير متوفرة في قاعدة البيانات التي تستخدمها.';
|
||||
$lang['db_transaction_failure'] = 'فشل في الإجراء: تم التراجع عن الإجراء.';
|
||||
$lang['db_unable_to_drop'] = 'غير قادر على إزالة قاعدة البيانات المحددة.';
|
||||
$lang['db_unsupported_feature'] = 'ميزة غير متوفرة في قاعدة البيانات التى تستخدمها.';
|
||||
$lang['db_unsupported_feature'] = 'ميزة غير متوفرة في قاعدة البيانات التي تستخدمها.';
|
||||
$lang['db_unsupported_compression'] = 'نوع ضغط الملف المحدد غير مدعوم على الخادم.';
|
||||
$lang['db_filepath_error'] = 'غير قادر على كتابة الملف في المسار المحدد.';
|
||||
$lang['db_invalid_cache_path'] = 'مسار التخزين المؤقت غير صحيح أو غير قابل للكتابة.';
|
||||
$lang['db_table_name_required'] = 'إسم الجدول مطلوب لهذه العملية.';
|
||||
$lang['db_column_name_required'] = 'إسم العمود مطلوب لهذه العملية.';
|
||||
$lang['db_table_name_required'] = 'اسم الجدول مطلوب لهذه العملية.';
|
||||
$lang['db_column_name_required'] = 'اسم العمود مطلوب لهذه العملية.';
|
||||
$lang['db_column_definition_required'] = 'تعريف العمود مطلوب لهذه العملية.';
|
||||
$lang['db_unable_to_set_charset'] = 'غير قادر على تحديد نوع الترميز: %s';
|
||||
$lang['db_error_heading'] = 'حصل خطأ في قاعدة البيانات';
|
||||
|
||||
@@ -10,21 +10,21 @@
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['email_must_be_array'] = 'يجب تمرير مصفوفة إلى دالة التحقق من البريد الإلكتروني.';
|
||||
$lang['email_invalid_address'] = 'عنوان بريد إلكتروني خاطيء: %s';
|
||||
$lang['email_invalid_address'] = 'عنوان بريد إلكتروني خاطئ: %s';
|
||||
$lang['email_attachment_missing'] = 'غير قادر على إيجاد الملف المرفق: %s';
|
||||
$lang['email_attachment_unreadable'] = 'غير قاد على فتح الملف المرفق: %s';
|
||||
$lang['email_no_from'] = 'لا يمكن إرسال البريد الإلكتروني بدون تحديد المرسل.';
|
||||
$lang['email_no_recipients'] = 'يجب إضافة مستقبلين: To, Cc, or Bcc';
|
||||
$lang['email_send_failure_phpmail'] = 'غير قادر على الإرسال بإستخدام PHP mail(). قد يكون الخادم غير معد للإرسال بإستخدام هذه الطريقة.';
|
||||
$lang['email_send_failure_sendmail'] = 'غير قادر على الإرسال بإستخدام PHP Sendmail. قد يكون الخادم غير معد للإرسال بإستخدام هذه الطريقة.';
|
||||
$lang['email_send_failure_smtp'] = 'غير قادر على الإرسال بإستخدام PHP SMTP. قد يكون الخادم غير معد للإرسال بإستخدام هذه الطريقة.';
|
||||
$lang['email_sent'] = 'تم إرسال الرسالة بنجاح بإستخدام البروتوكول التالي: %s';
|
||||
$lang['email_send_failure_phpmail'] = 'غير قادر على الإرسال باستخدام PHP mail(). قد يكون الخادم غير معد للإرسال باستخدام هذه الطريقة.';
|
||||
$lang['email_send_failure_sendmail'] = 'غير قادر على الإرسال باستخدام PHP Sendmail. قد يكون الخادم غير معد للإرسال باستخدام هذه الطريقة.';
|
||||
$lang['email_send_failure_smtp'] = 'غير قادر على الإرسال باستخدام PHP SMTP. قد يكون الخادم غير معد للإرسال باستخدام هذه الطريقة.';
|
||||
$lang['email_sent'] = 'تم إرسال الرسالة بنجاح باستخدام البروتوكول التالي: %s';
|
||||
$lang['email_no_socket'] = 'غير قادر على فتح إتصال مع Sendmail. الرجاء التأكد من الإعدادات.';
|
||||
$lang['email_no_hostname'] = 'لم تحدد إسم المضيف لـ SMTP.';
|
||||
$lang['email_smtp_error'] = 'خطأ SMTP حدث: %s';
|
||||
$lang['email_no_smtp_unpw'] = 'خطأ: يجب تحديد إسم مستخدم وكلمة مرور لـ SMTP.';
|
||||
$lang['email_failed_smtp_login'] = 'فشل في إرسال أمر AUTH LOGIN command. الخطأ: %s';
|
||||
$lang['email_smtp_auth_un'] = 'فشل في التحقق من إسم المستخدم. الخطأ: %s';
|
||||
$lang['email_smtp_auth_un'] = 'فشل في التحقق من اسم المستخدم. الخطأ: %s';
|
||||
$lang['email_smtp_auth_pw'] = 'فشل في التحقق من كلمة مرور. الخطأ: %s';
|
||||
$lang['email_smtp_data_failure'] = 'غير قادر على إرسال البيانات: %s';
|
||||
$lang['email_exit_status'] = 'رمز الخطأ: %s';
|
||||
|
||||
@@ -23,7 +23,7 @@ $lang['imglib_libpath_invalid'] = 'Ճանապարհը դեպի նկարների
|
||||
$lang['imglib_image_process_failed'] = 'Նկարի հետ աշխատանքը ձախողվեց։ Խնդրում ենք ստուգել, որ ձեր սերվերը ապահովվում է նշված կանոնագիրը և ճանապարհը դեպի նկարների գրադարանը ճիշտ է։';
|
||||
$lang['imglib_rotation_angle_required'] = 'Անհրաժեշտ է ներկայացնել պտույտի անկյունը նկարը պտտելու համար։';
|
||||
$lang['imglib_invalid_path'] = 'Ճանապարհը դեպի նկար սխալ է։';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'Տրամադրված պատկերը չէ վավեր.';
|
||||
$lang['imglib_copy_failed'] = 'Նկարը պատճենելը ավարտվեց անհաջողությամբ։';
|
||||
$lang['imglib_missing_font'] = 'Չհաջողվեց գտնել տառատեսակը։';
|
||||
$lang['imglib_save_failed'] = 'Պահպանել նկարը չհաջողվեց։ Խնդրում ենք համոզվել, որ նկարը և ֆայլի պանակը հասանելի են գրելու համար։';
|
||||
|
||||
@@ -23,7 +23,7 @@ $lang['imglib_libpath_invalid'] = 'Şəkil kitabxanası yolu səhvdi. L
|
||||
$lang['imglib_image_process_failed'] = 'Şəkil emalı uğursuz oldu. Lütfən serverinizin seçilən protokolu dəstəklədiyini və şəkil kitabxanasının yolunu doğru olduğunu yoxlayın.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Şəkilin dönədrilməsi üçün döndərmə bucağı lazımdı.';
|
||||
$lang['imglib_invalid_path'] = 'Şəkil yolu doğru deyil..';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'təqdim image etibarlı deyil.';
|
||||
$lang['imglib_copy_failed'] = 'Şəkil kopiyalama əməliyyatı uğursuz oldu.';
|
||||
$lang['imglib_missing_font'] = 'İstifadə ediləcək font tapılmadı.';
|
||||
$lang['imglib_save_failed'] = 'Şəkil yadda saxlanılmadı. Şəkilin və qovluğun yazıla bilər olduğunu yoxlayın.';
|
||||
|
||||
@@ -23,7 +23,7 @@ $lang['imglib_libpath_invalid'] = 'ছবির লাইব্রেরির
|
||||
$lang['imglib_image_process_failed'] = 'ছবিকে প্রসেস করা সম্ভব হয় নি, চেক করুন আপনার সার্ভার ইমেজ লাইব্রেরী সাপোর্ট করে কিনা।';
|
||||
$lang['imglib_rotation_angle_required'] = 'ছবিকে রোটেট করার জন্য, এঙ্গেল দিতে হবে।';
|
||||
$lang['imglib_invalid_path'] = 'ছবির ডিরেক্টরি সঠিক নয়।';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'প্রদত্ত ইমেজ বৈধ নয়.';
|
||||
$lang['imglib_copy_failed'] = 'ছবি কপি করা সম্ভব হয় নি।';
|
||||
$lang['imglib_missing_font'] = 'ফন্ট পাওয়া যায় নি।';
|
||||
$lang['imglib_save_failed'] = 'ছবিটিকে সংরক্ষণ করা সম্ভব হয় নি, চেক করুন ডিরেক্টরি রাইটেবল কিনা।';
|
||||
|
||||
@@ -24,7 +24,7 @@ $lang['imglib_libpath_invalid'] = 'La ruta a la teva llibreria de processament d
|
||||
$lang['imglib_image_process_failed'] = 'Processament d\'imatge erroni. Siusplau verifica que el teu servidor disposa del protocol triat i que la ruta a la teva llibreria de processament d\'imatges és correcta.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Per tal de rotar la imatge és necessari indicar un angle de rotació.';
|
||||
$lang['imglib_invalid_path'] = 'La ruta a la imatge no és correcta.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'La imatge no és vàlid.';
|
||||
$lang['imglib_copy_failed'] = 'La rutina de copia d\'imatge ha fallat.';
|
||||
$lang['imglib_missing_font'] = 'Impossible trobar una font per a fer servir.';
|
||||
$lang['imglib_save_failed'] = 'Impossible guardar la imatge. Siusplau comprova que el directori és escribible.';
|
||||
|
||||
57
vendor/codeigniter/framework/system/language/croatian/calendar_lang.php
vendored
Normal file
57
vendor/codeigniter/framework/system/language/croatian/calendar_lang.php
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['cal_su'] = 'Ne';
|
||||
$lang['cal_mo'] = 'Po';
|
||||
$lang['cal_tu'] = 'Ut';
|
||||
$lang['cal_we'] = 'Sr';
|
||||
$lang['cal_th'] = 'Če';
|
||||
$lang['cal_fr'] = 'Pe';
|
||||
$lang['cal_sa'] = 'Su';
|
||||
$lang['cal_sun'] = 'Sub';
|
||||
$lang['cal_mon'] = 'Pon';
|
||||
$lang['cal_tue'] = 'Uto';
|
||||
$lang['cal_wed'] = 'Sri';
|
||||
$lang['cal_thu'] = 'Čet';
|
||||
$lang['cal_fri'] = 'Pet';
|
||||
$lang['cal_sat'] = 'Sub';
|
||||
$lang['cal_sunday'] = 'Nedjelja';
|
||||
$lang['cal_monday'] = 'Ponedjeljak';
|
||||
$lang['cal_tuesday'] = 'Utorak';
|
||||
$lang['cal_wednesday'] = 'Srijeda';
|
||||
$lang['cal_thursday'] = 'Četvrtak';
|
||||
$lang['cal_friday'] = 'Petak';
|
||||
$lang['cal_saturday'] = 'Subota';
|
||||
$lang['cal_jan'] = 'Sij';
|
||||
$lang['cal_feb'] = 'Vel';
|
||||
$lang['cal_mar'] = 'Ožu';
|
||||
$lang['cal_apr'] = 'Tra';
|
||||
$lang['cal_may'] = 'Svi';
|
||||
$lang['cal_jun'] = 'Lip';
|
||||
$lang['cal_jul'] = 'Srp';
|
||||
$lang['cal_aug'] = 'Kol';
|
||||
$lang['cal_sep'] = 'Ruj';
|
||||
$lang['cal_oct'] = 'Lis';
|
||||
$lang['cal_nov'] = 'Stu';
|
||||
$lang['cal_dec'] = 'Pro';
|
||||
$lang['cal_january'] = 'Siječanj';
|
||||
$lang['cal_february'] = 'Veljača';
|
||||
$lang['cal_march'] = 'Ožujak';
|
||||
$lang['cal_april'] = 'Travanj';
|
||||
$lang['cal_mayl'] = 'Svibanj';
|
||||
$lang['cal_june'] = 'Lipanj';
|
||||
$lang['cal_july'] = 'Srpanj';
|
||||
$lang['cal_august'] = 'Kolovoz';
|
||||
$lang['cal_september'] = 'Rujan';
|
||||
$lang['cal_october'] = 'Listopad';
|
||||
$lang['cal_november'] = 'Studeni';
|
||||
$lang['cal_december'] = 'Prosinac';
|
||||
67
vendor/codeigniter/framework/system/language/croatian/date_lang.php
vendored
Normal file
67
vendor/codeigniter/framework/system/language/croatian/date_lang.php
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['date_year'] = 'Godina';
|
||||
$lang['date_years'] = 'Godine';
|
||||
$lang['date_month'] = 'Mjesec';
|
||||
$lang['date_months'] = 'Mjeseci';
|
||||
$lang['date_week'] = 'Tjedan';
|
||||
$lang['date_weeks'] = 'Tjedni';
|
||||
$lang['date_day'] = 'Dan';
|
||||
$lang['date_days'] = 'Dani';
|
||||
$lang['date_hour'] = 'Sat';
|
||||
$lang['date_hours'] = 'Sati';
|
||||
$lang['date_minute'] = 'Minuta';
|
||||
$lang['date_minutes'] = 'Minute';
|
||||
$lang['date_second'] = 'Sekunda';
|
||||
$lang['date_seconds'] = 'Sekunde';
|
||||
|
||||
$lang['UM12'] = '(UTC -12:00) Baker/Howland otok';
|
||||
$lang['UM11'] = '(UTC -11:00) Niue';
|
||||
$lang['UM10'] = '(UTC -10:00) Havajsko-Aleutsko standardno vrijeme, Kukovi otoci, Tahiti';
|
||||
$lang['UM95'] = '(UTC -9:30) Markižansko otočje';
|
||||
$lang['UM9'] = '(UTC -9:00) Aljaško standardno vrijeme, Gambier otoci';
|
||||
$lang['UM8'] = '(UTC -8:00) Pacifičko standardno vrijeme, Clipperton otok';
|
||||
$lang['UM7'] = '(UTC -7:00) Planinsko standardno vrijeme';
|
||||
$lang['UM6'] = '(UTC -6:00) Središnje standardno vrijeme';
|
||||
$lang['UM5'] = '(UTC -5:00) Istočno standardno vrijeme, Zapadno Karipsko standardno vrijeme';
|
||||
$lang['UM45'] = '(UTC -4:30) Venezuelansko standardno vrijeme';
|
||||
$lang['UM4'] = '(UTC -4:00) Atlantsko standardno vrijeme, Istočno Karipsko standardno vrijeme';
|
||||
$lang['UM35'] = '(UTC -3:30) Newfoundland standardno vrijeme';
|
||||
$lang['UM3'] = '(UTC -3:00) Argentina, Brazil, Francuska Guiana, Urugvaj';
|
||||
$lang['UM2'] = '(UTC -2:00) Južna Georgia/Južno Sandwich otočje';
|
||||
$lang['UM1'] = '(UTC -1:00) Azori, Cape Verde otočje';
|
||||
$lang['UTC'] = '(UTC) Srednje vrijeme po Greenwichu, Zapadno europsko vrijeme';
|
||||
$lang['UP1'] = '(UTC +1:00) Srednje europsko vrijeme, Zapadno afričko vrijeme';
|
||||
$lang['UP2'] = '(UTC +2:00) Središnje afričko vrijeme, Istočno europsko vrijeme, Kaliningrad';
|
||||
$lang['UP3'] = '(UTC +3:00) Moskovsko vrijeme, Istočno afričko vrijeme, Arapsko standardno vrijeme';
|
||||
$lang['UP35'] = '(UTC +3:30) Iransko standardno vrijeme';
|
||||
$lang['UP4'] = '(UTC +4:00) Azerbejdžansko standardno vrijeme, Samara';
|
||||
$lang['UP45'] = '(UTC +4:30) Afganistan';
|
||||
$lang['UP5'] = '(UTC +5:00) Pakistansko standardno vrijeme, Yekaterinburg';
|
||||
$lang['UP55'] = '(UTC +5:30) Indijsko standardno vrijeme, Šri Lanka';
|
||||
$lang['UP575'] = '(UTC +5:45) Nepal';
|
||||
$lang['UP6'] = '(UTC +6:00) Bangladeško standardno vrijeme, Bhutan, Omsk';
|
||||
$lang['UP65'] = '(UTC +6:30) Kokosovi otoci, Myanmar';
|
||||
$lang['UP7'] = '(UTC +7:00) Krasnoyarsk, Kambodža, Laos, Tajland, Vijetnam';
|
||||
$lang['UP8'] = '(UTC +8:00) Australijsko zapadno standardno vrijeme, Peking, Irkutsk';
|
||||
$lang['UP875'] = '(UTC +8:45) Australijsko središnje zapadno standardno vrijeme';
|
||||
$lang['UP9'] = '(UTC +9:00) Japansko standardno vrijeme, Korejsko standardno vrijeme, Yakutsk';
|
||||
$lang['UP95'] = '(UTC +9:30) Australijsko središnje standardno vrijeme';
|
||||
$lang['UP10'] = '(UTC +10:00) Australijsko istočno standardno vrijeme, Vladivostok';
|
||||
$lang['UP105'] = '(UTC +10:30) Lord Howe otok';
|
||||
$lang['UP11'] = '(UTC +11:00) Srednekolymsk, Solomonsko otočje, Vanuatu';
|
||||
$lang['UP115'] = '(UTC +11:30) Norfolk otok';
|
||||
$lang['UP12'] = '(UTC +12:00) Fidži, Gilbertovi otoci, Kamčatka, Novozelandsko standardno vrijeme';
|
||||
$lang['UP1275'] = '(UTC +12:45) Chathamski otoci standardno vrijeme';
|
||||
$lang['UP13'] = '(UTC +13:00) Samoa, Phoenix otočje, Tonga';
|
||||
$lang['UP14'] = '(UTC +14:00) Linijski otoci';
|
||||
36
vendor/codeigniter/framework/system/language/croatian/db_lang.php
vendored
Normal file
36
vendor/codeigniter/framework/system/language/croatian/db_lang.php
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['db_invalid_connection_str'] = 'Neispravni podaci za spajanje na bazu.';
|
||||
$lang['db_unable_to_connect'] = 'Neuspješno povezivanje na server baze uz postavljene parametre.';
|
||||
$lang['db_unable_to_select'] = 'Ne može se označiti baza: %s';
|
||||
$lang['db_unable_to_create'] = 'Ne može se kreirati baza: %s';
|
||||
$lang['db_invalid_query'] = 'Upit koji ste unijeli je neispravan.';
|
||||
$lang['db_must_set_table'] = 'Mora se postaviti tablica koja će se koristiti u upitu.';
|
||||
$lang['db_must_use_set'] = 'Mora se koristiti "set" metoda da bi ažurirali unos.';
|
||||
$lang['db_must_use_index'] = 'Mora se navesti indeks vrijednosti koje želite ažurirati.';
|
||||
$lang['db_batch_missing_index'] = 'Nedostaje indeks za jedan ili više redova koje želite ažurirati.';
|
||||
$lang['db_must_use_where'] = 'Ažuriranja nisu dozvoljena ako ne sadrže "where" uvjet.';
|
||||
$lang['db_del_must_use_where'] = 'Brisanja nisu dozvoljena ako ne sadrže "where" ili "like" uvjet.';
|
||||
$lang['db_field_param_missing'] = 'Da bi dohvatili podatke iz polja potrebno je unijeti naziv tablice kao parametar.';
|
||||
$lang['db_unsupported_function'] = 'Ova funkcija nije dostupna u vrsti baze koju koristite.';
|
||||
$lang['db_transaction_failure'] = 'Transakcija neuspješna: Izvršeno vraćanje na prethodno stanje.';
|
||||
$lang['db_unable_to_drop'] = 'Nemoguće je izvršiti brisanje baze.';
|
||||
$lang['db_unsupported_feature'] = 'Nije podržana karakteristika za vrstu baze koju koristite.';
|
||||
$lang['db_unsupported_compression'] = 'Format za komprimiranje datoteka koji ste izabrali nije podržan na serveru.';
|
||||
$lang['db_filepath_error'] = 'Ne mogu se zapisati podaci u datoteku koju ste naveli.';
|
||||
$lang['db_invalid_cache_path'] = 'Putanja koju ste vi naveli za keš nije ispravna ili nije dozvoljena za pisanje.';
|
||||
$lang['db_table_name_required'] = 'Naziv tablice je obavezan za tu operaciju.';
|
||||
$lang['db_column_name_required'] = 'Naziv stupca je obavezan za tu operaciju.';
|
||||
$lang['db_column_definition_required'] = 'Definicija stupca je obavezna za tu operaciju.';
|
||||
$lang['db_unable_to_set_charset'] = 'Ne može se postaviti slovno kodiranje: %s';
|
||||
$lang['db_error_heading'] = 'Dogodila se greška u bazi podataka.';
|
||||
31
vendor/codeigniter/framework/system/language/croatian/email_lang.php
vendored
Normal file
31
vendor/codeigniter/framework/system/language/croatian/email_lang.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['email_must_be_array'] = 'Metoda za validaciju emaila mora biti poslana kao niz.';
|
||||
$lang['email_invalid_address'] = 'Nepostojeća email adresa: %s';
|
||||
$lang['email_attachment_missing'] = 'Nemoguće je locirati dodatak za email: %s';
|
||||
$lang['email_attachment_unreadable'] = 'Nemoguće je otvoriti dodatak: %s';
|
||||
$lang['email_no_from'] = 'Ne može se poslati email bez "From" zaglavlja.';
|
||||
$lang['email_no_recipients'] = 'Morate navesti primatelje: To, Cc, ili Bcc';
|
||||
$lang['email_send_failure_phpmail'] = 'Nemoguće je poslati mail korištenjem PHP mail() metode. Server možda nije podešen da šalje email ovom metodom.';
|
||||
$lang['email_send_failure_sendmail'] = 'Nemoguće je poslati email korištenjem PHP Sendmail metode. Server možda nije podešen da šalje email ovom metodom.';
|
||||
$lang['email_send_failure_smtp'] = 'Nemoguće je poslati email korištenjem PHP SMTP. Server možda nije podešen da šalje email ovom metodom.';
|
||||
$lang['email_sent'] = 'Vaša poruka je uspješno poslana korištenjem slijedećeg protokola: %s';
|
||||
$lang['email_no_socket'] = 'Nemoguće je otvoriti socket za Sendmail. Provjerite postavke.';
|
||||
$lang['email_no_hostname'] = 'Niste podesili naziv SMTP poslužitelja.';
|
||||
$lang['email_smtp_error'] = 'Dogodila se slijedeća SMTP greška: %s';
|
||||
$lang['email_no_smtp_unpw'] = 'Greška: Morate podesiti SMTP korisničko ime i lozinku.';
|
||||
$lang['email_failed_smtp_login'] = 'Neuspješan pokušaj slanja AUTH LOGIN naredbe. Greška: %s';
|
||||
$lang['email_smtp_auth_un'] = 'Neuspješna autentikacija korisničkog imena. Greška: %s';
|
||||
$lang['email_smtp_auth_pw'] = 'Neuspješna autentikacija lozinke. Greška: %s';
|
||||
$lang['email_smtp_data_failure'] = 'Nemoguće je poslati podatke: %s';
|
||||
$lang['email_exit_status'] = 'Kod izlaznog statusa: %s';
|
||||
41
vendor/codeigniter/framework/system/language/croatian/form_validation_lang.php
vendored
Normal file
41
vendor/codeigniter/framework/system/language/croatian/form_validation_lang.php
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['form_validation_required'] = 'Polje {field} je obavezno.';
|
||||
$lang['form_validation_isset'] = 'Polje {field} mora imati vrijednost.';
|
||||
$lang['form_validation_valid_email'] = 'Polje {field} mora sadržavati ispravnu email adresu.';
|
||||
$lang['form_validation_valid_emails'] = 'Polje {field} mora sadržavati sve ispravne email adrese.';
|
||||
$lang['form_validation_valid_url'] = 'Polje {field} mora sadržavati ispravan URL.';
|
||||
$lang['form_validation_valid_ip'] = 'Polje {field} mora sadržavati ispravnu IP adresu.';
|
||||
$lang['form_validation_min_length'] = 'Polje {field} mora biti najmanje {param} znakova dugo.';
|
||||
$lang['form_validation_max_length'] = 'Polje {field} ne može imati veću dužinu od {param} znakova.';
|
||||
$lang['form_validation_exact_length'] = 'Polje {field} mora imati dužinu točno {param} znakova.';
|
||||
$lang['form_validation_alpha'] = 'Polje {field} mora sadržavati samo slovne znakove.';
|
||||
$lang['form_validation_alpha_numeric'] = 'Polje {field} mora sadržavati samo alfa-numeričke znakove.';
|
||||
$lang['form_validation_alpha_numeric_spaces'] = 'Polje {field} može sadržavati samo alfa-numeričke znakove i razmake.';
|
||||
$lang['form_validation_alpha_dash'] = 'Polje {field} može sadržavati samo alfa-numeričke znakove, donje crte i srednje crte.';
|
||||
$lang['form_validation_numeric'] = 'Polje {field} mora sadržavati samo brojeve.';
|
||||
$lang['form_validation_is_numeric'] = 'Polje {field} mora sadržavati samo numeričke znakove.';
|
||||
$lang['form_validation_integer'] = 'Polje {field} mora sadržavati bar jedan cijeli broj.';
|
||||
$lang['form_validation_regex_match'] = 'Polje {field} nije u ispravnom formatu.';
|
||||
$lang['form_validation_matches'] = 'Polje {field} se ne podudara sa {param} poljem.';
|
||||
$lang['form_validation_differs'] = 'Polje {field} mora biti različito od polja {param}.';
|
||||
$lang['form_validation_is_unique'] = 'Polje {field} mora sadržavati jedinstvenu vrijednost.';
|
||||
$lang['form_validation_is_natural'] = 'Polje {field} mora sadržavati samo prirodne brojeve.';
|
||||
$lang['form_validation_is_natural_no_zero'] = 'Polje {field} mora sadržavati samo prirodne brojeve i mora biti veće od nule.';
|
||||
$lang['form_validation_decimal'] = 'Polje {field} mora sadržavati decimalni broj.';
|
||||
$lang['form_validation_less_than'] = 'Polje {field} mora sadržavati broj manji od {param}.';
|
||||
$lang['form_validation_less_than_equal_to'] = 'Polje {field} mora sadržavati broj manji ili jednak od {param}.';
|
||||
$lang['form_validation_greater_than'] = 'Polje {field} mora sadržavati broj veći od {param}.';
|
||||
$lang['form_validation_greater_than_equal_to'] = 'Polje {field} mora sadržavati broj jednak ili veći od {param}.';
|
||||
$lang['form_validation_error_message_not_set'] = 'Ne može se dohvatiti poruka o greški koja odgovara nazivu vašeg polja {field}.';
|
||||
$lang['form_validation_in_list'] = 'Polje {field} mora biti jedno od: {param}.';
|
||||
24
vendor/codeigniter/framework/system/language/croatian/ftp_lang.php
vendored
Normal file
24
vendor/codeigniter/framework/system/language/croatian/ftp_lang.php
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['ftp_no_connection'] = 'Ne može se naći ispravan ID spajanja. Provjerite da ste spojeni prije rada s datotekama.';
|
||||
$lang['ftp_unable_to_connect'] = 'Ne može se spojiti na FTP server korištenjem dohvaćenog naziva hosta.';
|
||||
$lang['ftp_unable_to_login'] = 'Ne može se prijaviti na FTP server. Provjerite korisničko ime i lozinku.';
|
||||
$lang['ftp_unable_to_mkdir'] = 'Ne može se kreirati direktorij koji ste naznačili.';
|
||||
$lang['ftp_unable_to_changedir'] = 'Ne mogu se mijenjati direktoriji.';
|
||||
$lang['ftp_unable_to_chmod'] = 'Ne mogu se podesiti prava datoteke. Provjerite putanju.';
|
||||
$lang['ftp_unable_to_upload'] = 'Ne može se postaviti željena datoteka. Provjerite putanju.';
|
||||
$lang['ftp_unable_to_download'] = 'Ne može se skinuti željena datoteka. Provjerite putanju.';
|
||||
$lang['ftp_no_source_file'] = 'Ne može se naći izvorna datoteka. Provjerite putanju.';
|
||||
$lang['ftp_unable_to_rename'] = 'Ne može se mijenjati naziv datoteke.';
|
||||
$lang['ftp_unable_to_delete'] = 'Ne može se brisati datoteka.';
|
||||
$lang['ftp_unable_to_move'] = 'Ne može se premještati datoteka. Provjerite da li željeni direktorij postoji.';
|
||||
30
vendor/codeigniter/framework/system/language/croatian/imglib_lang.php
vendored
Normal file
30
vendor/codeigniter/framework/system/language/croatian/imglib_lang.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['imglib_source_image_required'] = 'Morate definirati početnu sliku u vašim karakteristikama.';
|
||||
$lang['imglib_gd_required'] = 'GD biblioteka za slike je neophodna za ovu karakteristiku.';
|
||||
$lang['imglib_gd_required_for_props'] = 'Server mora podržavati GD biblioteku za slike u slučaju da određujete karakteristike slike.';
|
||||
$lang['imglib_unsupported_imagecreate'] = 'Server ne podržava GD biblioteku za slike koja je neophodna da bi se obradio ovaj tip slike.';
|
||||
$lang['imglib_gif_not_supported'] = 'GIF slike često nisu podržane zbog ograničenja licence. Možete koristiti JPG ili PNG slike umjesto toga.';
|
||||
$lang['imglib_jpg_not_supported'] = 'JPG slike nisu podržane.';
|
||||
$lang['imglib_png_not_supported'] = 'PNG slike nisu podržane.';
|
||||
$lang['imglib_jpg_or_png_required'] = 'Protokol za mjenjanje veličine slika koji je određen u karakteristikama rada radi jedino sa JPEG i PNG slikama.';
|
||||
$lang['imglib_copy_error'] = 'Greška je primjećena u pokušaju pristupa ili zamjene datoteke. Provjerite da li je dozvoljen upis podataka u direktorij.';
|
||||
$lang['imglib_rotate_unsupported'] = 'Rotacija slika nije podržana na serveru.';
|
||||
$lang['imglib_libpath_invalid'] = 'Putanja do biblioteke za slike nije ispravna. Postavite ispravnu putanju u karakterisitikama slike.';
|
||||
$lang['imglib_image_process_failed'] = 'Neuspješna obrada slike. Provjerite da li server podržava izabrani protokol i da li je putanja do biblioteke za slike ispravna.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Potreban je kut rotacije da bi se rotacija izvršila.';
|
||||
$lang['imglib_invalid_path'] = 'Putanja do slike nije ispravna.';
|
||||
$lang['imglib_invalid_image'] = 'Slika nije ispravna.';
|
||||
$lang['imglib_copy_failed'] = 'Kopiranje slike neuspješno.';
|
||||
$lang['imglib_missing_font'] = 'Ne može se locirati font za uporabu.';
|
||||
$lang['imglib_save_failed'] = 'Ne može se snimiti slika. Provjerite da slika i direktorij u kojem se nalazi datoteka imaju dozvolu za pisanje.';
|
||||
11
vendor/codeigniter/framework/system/language/croatian/index.html
vendored
Normal file
11
vendor/codeigniter/framework/system/language/croatian/index.html
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Zabranjeno</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Zabranjen je pristup direktoriju.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
20
vendor/codeigniter/framework/system/language/croatian/migration_lang.php
vendored
Normal file
20
vendor/codeigniter/framework/system/language/croatian/migration_lang.php
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['migration_none_found'] = 'Migracije nisu pronađene.';
|
||||
$lang['migration_not_found'] = 'Nisu pronađene migracije sa verzijom: %s.';
|
||||
$lang['migration_sequence_gap'] = 'Postoji praznina u migracijskom slijedu blizu verzije: %s.';
|
||||
$lang['migration_multiple_version'] = 'Postoji više migracija sa istom verzijom broj: %s.';
|
||||
$lang['migration_class_doesnt_exist'] = 'Migracijska klasa "%s" se ne može pronaći.';
|
||||
$lang['migration_missing_up_method'] = 'Migracijskoj klasi "%s" nedostaje "up" metoda.';
|
||||
$lang['migration_missing_down_method'] = 'Migracijskoj klasi "%s" nedostaje "down" metoda.';
|
||||
$lang['migration_invalid_filename'] = 'Migracija "%s" ima neispravan naziv datoteke.';
|
||||
17
vendor/codeigniter/framework/system/language/croatian/number_lang.php
vendored
Normal file
17
vendor/codeigniter/framework/system/language/croatian/number_lang.php
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['terabyte_abbr'] = 'TB';
|
||||
$lang['gigabyte_abbr'] = 'GB';
|
||||
$lang['megabyte_abbr'] = 'MB';
|
||||
$lang['kilobyte_abbr'] = 'KB';
|
||||
$lang['bytes'] = 'Bajta';
|
||||
16
vendor/codeigniter/framework/system/language/croatian/pagination_lang.php
vendored
Normal file
16
vendor/codeigniter/framework/system/language/croatian/pagination_lang.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['pagination_first_link'] = '‹ Prva';
|
||||
$lang['pagination_next_link'] = '>';
|
||||
$lang['pagination_prev_link'] = '<';
|
||||
$lang['pagination_last_link'] = 'Zadnja ›';
|
||||
33
vendor/codeigniter/framework/system/language/croatian/profiler_lang.php
vendored
Normal file
33
vendor/codeigniter/framework/system/language/croatian/profiler_lang.php
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['profiler_database'] = 'BAZA';
|
||||
$lang['profiler_controller_info'] = 'KLASA/METODA';
|
||||
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
||||
$lang['profiler_queries'] = 'UPITI';
|
||||
$lang['profiler_get_data'] = 'GET DATA';
|
||||
$lang['profiler_post_data'] = 'POST DATA';
|
||||
$lang['profiler_uri_string'] = 'URI STRING';
|
||||
$lang['profiler_memory_usage'] = 'UPORABA MEMORIJE';
|
||||
$lang['profiler_config'] = 'CONFIG VRIJEDNOSTI';
|
||||
$lang['profiler_session_data'] = 'PODACI SJEDNICE';
|
||||
$lang['profiler_headers'] = 'HTTP ZAGLAVLJA';
|
||||
$lang['profiler_no_db'] = 'Drajver baze podataka nije trenutno učitan';
|
||||
$lang['profiler_no_queries'] = 'Nema pokrenutih upita';
|
||||
$lang['profiler_no_post'] = 'Ne postoje POST podaci';
|
||||
$lang['profiler_no_get'] = 'Ne postoje GET podaci';
|
||||
$lang['profiler_no_uri'] = 'Ne postoje URI podaci';
|
||||
$lang['profiler_no_memory'] = 'Nedostupna memorija';
|
||||
$lang['profiler_no_profiles'] = 'Nema Profila podataka - sve Profiler sekcije su onemogućene.';
|
||||
$lang['profiler_section_hide'] = 'Sakrij';
|
||||
$lang['profiler_section_show'] = 'Prikaži';
|
||||
$lang['profiler_seconds'] = 'sekundi';
|
||||
31
vendor/codeigniter/framework/system/language/croatian/unit_test_lang.php
vendored
Normal file
31
vendor/codeigniter/framework/system/language/croatian/unit_test_lang.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['ut_test_name'] = 'Test Naziv';
|
||||
$lang['ut_test_datatype'] = 'Test Tip Podataka';
|
||||
$lang['ut_res_datatype'] = 'Očekivani Tip Podataka';
|
||||
$lang['ut_result'] = 'Rezultat';
|
||||
$lang['ut_undefined'] = 'Nedefinirani Test Naziv';
|
||||
$lang['ut_file'] = 'Naziv Datoteke';
|
||||
$lang['ut_line'] = 'Broj Linije';
|
||||
$lang['ut_passed'] = 'Uspješno';
|
||||
$lang['ut_failed'] = 'Neuspješno';
|
||||
$lang['ut_boolean'] = 'Logički Operator (Boolean)';
|
||||
$lang['ut_integer'] = 'Cijeli Broj';
|
||||
$lang['ut_float'] = 'Razlomak';
|
||||
$lang['ut_double'] = 'Razlomak'; // can be the same as float
|
||||
$lang['ut_string'] = 'String';
|
||||
$lang['ut_array'] = 'Niz';
|
||||
$lang['ut_object'] = 'Objekt';
|
||||
$lang['ut_resource'] = 'Resurs';
|
||||
$lang['ut_null'] = 'Null';
|
||||
$lang['ut_notes'] = 'Bilješke';
|
||||
28
vendor/codeigniter/framework/system/language/croatian/upload_lang.php
vendored
Normal file
28
vendor/codeigniter/framework/system/language/croatian/upload_lang.php
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @copyright Mario Ljubičić
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('Nije dozvoljen izravan pristup');
|
||||
|
||||
$lang['upload_userfile_not_set'] = 'Ne mogu se naći post vrijednosti koje poziva korisnička datoteka.';
|
||||
$lang['upload_file_exceeds_limit'] = 'Postavljena datoteka prelazi maksimalnu veličinu koja je dozvoljena u PHP konfiguracijskoj datoteci.';
|
||||
$lang['upload_file_exceeds_form_limit'] = 'Postavljena datoteka prelazi maksimalnu veličinu koja je dozvoljena u formi.';
|
||||
$lang['upload_file_partial'] = 'Datoteka je samo djelomično primljena.';
|
||||
$lang['upload_no_temp_directory'] = 'Nedostaje privremeni direktorij.';
|
||||
$lang['upload_unable_to_write_file'] = 'Datoteka se ne može snimiti na disk.';
|
||||
$lang['upload_stopped_by_extension'] = 'Postavljanje datoteke je zaustavljeno ekstenzijom.';
|
||||
$lang['upload_no_file_selected'] = 'Niste izabrali datoteku za postavljanje.';
|
||||
$lang['upload_invalid_filetype'] = 'Nije dozvoljeno postavljanje datoteke koje pokušavate.';
|
||||
$lang['upload_invalid_filesize'] = 'Datoteka koju pokušavate postaviti je veća od dozvoljene veličine.';
|
||||
$lang['upload_invalid_dimensions'] = 'Slika koju pokušavate postaviti nije odgovarajućih dimenzija.';
|
||||
$lang['upload_destination_error'] = 'Nastao je problem pri pokušaju da se premjesti postavljena datoteka na željeno odredište.';
|
||||
$lang['upload_no_filepath'] = 'Putanja za postavljanje izgleda da nije ispravna.';
|
||||
$lang['upload_no_file_types'] = 'Niste odredili dozvoljene tipove datoteka.';
|
||||
$lang['upload_bad_filename'] = 'Datoteka koju ste izabrali već postoji na serveru.';
|
||||
$lang['upload_not_writable'] = 'Direktorij za upload nema prava za pisanje.';
|
||||
56
vendor/codeigniter/framework/system/language/danish/calendar_lang.php
vendored
Normal file
56
vendor/codeigniter/framework/system/language/danish/calendar_lang.php
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['cal_su'] = 'Sø';
|
||||
$lang['cal_mo'] = 'Ma';
|
||||
$lang['cal_tu'] = 'Ti';
|
||||
$lang['cal_we'] = 'On';
|
||||
$lang['cal_th'] = 'To';
|
||||
$lang['cal_fr'] = 'Fr';
|
||||
$lang['cal_sa'] = 'Lø';
|
||||
$lang['cal_sun'] = 'Søn';
|
||||
$lang['cal_mon'] = 'Man';
|
||||
$lang['cal_tue'] = 'Tir';
|
||||
$lang['cal_wed'] = 'Ons';
|
||||
$lang['cal_thu'] = 'Tor';
|
||||
$lang['cal_fri'] = 'Fre';
|
||||
$lang['cal_sat'] = 'Lør';
|
||||
$lang['cal_sunday'] = 'Søndag';
|
||||
$lang['cal_monday'] = 'Mandag';
|
||||
$lang['cal_tuesday'] = 'Tirsdag';
|
||||
$lang['cal_wednesday'] = 'Onsdag';
|
||||
$lang['cal_thursday'] = 'Torsdag';
|
||||
$lang['cal_friday'] = 'Fredag';
|
||||
$lang['cal_saturday'] = 'Lørdag';
|
||||
$lang['cal_jan'] = 'Jan';
|
||||
$lang['cal_feb'] = 'Feb';
|
||||
$lang['cal_mar'] = 'Mar';
|
||||
$lang['cal_apr'] = 'Apr';
|
||||
$lang['cal_may'] = 'Maj';
|
||||
$lang['cal_jun'] = 'Jun';
|
||||
$lang['cal_jul'] = 'Jul';
|
||||
$lang['cal_aug'] = 'Aug';
|
||||
$lang['cal_sep'] = 'Sep';
|
||||
$lang['cal_oct'] = 'Okt';
|
||||
$lang['cal_nov'] = 'Nov';
|
||||
$lang['cal_dec'] = 'Dec';
|
||||
$lang['cal_january'] = 'Januar';
|
||||
$lang['cal_february'] = 'Februar';
|
||||
$lang['cal_march'] = 'Marts';
|
||||
$lang['cal_april'] = 'April';
|
||||
$lang['cal_mayl'] = 'Maj';
|
||||
$lang['cal_june'] = 'Juni';
|
||||
$lang['cal_july'] = 'Juli';
|
||||
$lang['cal_august'] = 'August';
|
||||
$lang['cal_september'] = 'September';
|
||||
$lang['cal_october'] = 'Oktober';
|
||||
$lang['cal_november'] = 'November';
|
||||
$lang['cal_december'] = 'December';
|
||||
66
vendor/codeigniter/framework/system/language/danish/date_lang.php
vendored
Normal file
66
vendor/codeigniter/framework/system/language/danish/date_lang.php
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['date_year'] = 'År';
|
||||
$lang['date_years'] = 'År';
|
||||
$lang['date_month'] = 'Måned';
|
||||
$lang['date_months'] = 'Måneder';
|
||||
$lang['date_week'] = 'Uge';
|
||||
$lang['date_weeks'] = 'Uger';
|
||||
$lang['date_day'] = 'Dag';
|
||||
$lang['date_days'] = 'Dage';
|
||||
$lang['date_hour'] = 'Time';
|
||||
$lang['date_hours'] = 'Timer';
|
||||
$lang['date_minute'] = 'Minut';
|
||||
$lang['date_minutes'] = 'Minuter';
|
||||
$lang['date_second'] = 'Sekund';
|
||||
$lang['date_seconds'] = 'Sekunder';
|
||||
|
||||
$lang['UM12'] = '(UTC -12:00) Baker/Howland Island';
|
||||
$lang['UM11'] = '(UTC -11:00) Niue';
|
||||
$lang['UM10'] = '(UTC -10:00) Hawaii-Aleutian Standard Time, Cook Islands, Tahiti';
|
||||
$lang['UM95'] = '(UTC -9:30) Marquesas Islands';
|
||||
$lang['UM9'] = '(UTC -9:00) Alaska Standard Time, Gambier Islands';
|
||||
$lang['UM8'] = '(UTC -8:00) Pacific Standard Time, Clipperton Island';
|
||||
$lang['UM7'] = '(UTC -7:00) Mountain Standard Time';
|
||||
$lang['UM6'] = '(UTC -6:00) Central Standard Time';
|
||||
$lang['UM5'] = '(UTC -5:00) Eastern Standard Time, Western Caribbean Standard Time';
|
||||
$lang['UM45'] = '(UTC -4:30) Venezuelan Standard Time';
|
||||
$lang['UM4'] = '(UTC -4:00) Atlantic Standard Time, Eastern Caribbean Standard Time';
|
||||
$lang['UM35'] = '(UTC -3:30) Newfoundland Standard Time';
|
||||
$lang['UM3'] = '(UTC -3:00) Argentina, Brazil, French Guiana, Uruguay';
|
||||
$lang['UM2'] = '(UTC -2:00) South Georgia/South Sandwich Islands';
|
||||
$lang['UM1'] = '(UTC -1:00) Azores, Cape Verde Islands';
|
||||
$lang['UTC'] = '(UTC) Greenwich Mean Time, Western European Time';
|
||||
$lang['UP1'] = '(UTC +1:00) Central European Time, West Africa Time';
|
||||
$lang['UP2'] = '(UTC +2:00) Central Africa Time, Eastern European Time, Kaliningrad Time';
|
||||
$lang['UP3'] = '(UTC +3:00) Moscow Time, East Africa Time, Arabia Standard Time';
|
||||
$lang['UP35'] = '(UTC +3:30) Iran Standard Time';
|
||||
$lang['UP4'] = '(UTC +4:00) Azerbaijan Standard Time, Samara Time';
|
||||
$lang['UP45'] = '(UTC +4:30) Afghanistan';
|
||||
$lang['UP5'] = '(UTC +5:00) Pakistan Standard Time, Yekaterinburg Time';
|
||||
$lang['UP55'] = '(UTC +5:30) Indian Standard Time, Sri Lanka Time';
|
||||
$lang['UP575'] = '(UTC +5:45) Nepal Time';
|
||||
$lang['UP6'] = '(UTC +6:00) Bangladesh Standard Time, Bhutan Time, Omsk Time';
|
||||
$lang['UP65'] = '(UTC +6:30) Cocos Islands, Myanmar';
|
||||
$lang['UP7'] = '(UTC +7:00) Krasnoyarsk Time, Cambodia, Laos, Thailand, Vietnam';
|
||||
$lang['UP8'] = '(UTC +8:00) Australian Western Standard Time, Beijing Time, Irkutsk Time';
|
||||
$lang['UP875'] = '(UTC +8:45) Australian Central Western Standard Time';
|
||||
$lang['UP9'] = '(UTC +9:00) Japan Standard Time, Korea Standard Time, Yakutsk Time';
|
||||
$lang['UP95'] = '(UTC +9:30) Australian Central Standard Time';
|
||||
$lang['UP10'] = '(UTC +10:00) Australian Eastern Standard Time, Vladivostok Time';
|
||||
$lang['UP105'] = '(UTC +10:30) Lord Howe Island';
|
||||
$lang['UP11'] = '(UTC +11:00) Srednekolymsk Time, Solomon Islands, Vanuatu';
|
||||
$lang['UP115'] = '(UTC +11:30) Norfolk Island';
|
||||
$lang['UP12'] = '(UTC +12:00) Fiji, Gilbert Islands, Kamchatka Time, New Zealand Standard Time';
|
||||
$lang['UP1275'] = '(UTC +12:45) Chatham Islands Standard Time';
|
||||
$lang['UP13'] = '(UTC +13:00) Samoa Time Zone, Phoenix Islands Time, Tonga';
|
||||
$lang['UP14'] = '(UTC +14:00) Line Islands';
|
||||
35
vendor/codeigniter/framework/system/language/danish/db_lang.php
vendored
Normal file
35
vendor/codeigniter/framework/system/language/danish/db_lang.php
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['db_invalid_connection_str'] = 'Kan ikke fastsætte database indstillingerne baseret på forbindelsen strengen du angav.';
|
||||
$lang['db_unable_to_connect'] = 'Kan ikke forbinde til din database server udfra de angivne indstillinger.';
|
||||
$lang['db_unable_to_select'] = 'Kan ikke vælge den angivne database: %s';
|
||||
$lang['db_unable_to_create'] = 'Kunne ikke oprette den angivne database: %s';
|
||||
$lang['db_invalid_query'] = 'Forespørgslen du sendte er ikke gyldig.';
|
||||
$lang['db_must_set_table'] = 'Du skal angive databasetabellen, der skal bruges i din forespørgsel.';
|
||||
$lang['db_must_use_set'] = 'Du skal anvende "set" metoden for at opdatere en post.';
|
||||
$lang['db_must_use_index'] = 'Du skal angive et indeks til at matche på for batch opdateringer.';
|
||||
$lang['db_batch_missing_index'] = 'En eller flere rækker indsendt til batch opdatering mangler det angivne indeks.';
|
||||
$lang['db_must_use_where'] = 'Opdateringer er ikke tilladt, medmindre de indeholder en "where" klausul.';
|
||||
$lang['db_del_must_use_where'] = 'Sletning er ikke tilladt, medmindre de indeholder en "where" eller "like" klausul.';
|
||||
$lang['db_field_param_missing'] = 'For at hente felter kræves navnet på tabellen som en parameter.';
|
||||
$lang['db_unsupported_function'] = 'Denne funktion er ikke tilgængelig for den database du anvender.';
|
||||
$lang['db_transaction_failure'] = 'Transaktion fejl: Tilbagerulning udføres';
|
||||
$lang['db_unable_to_drop'] = 'Kan ikke slette den angivne database.';
|
||||
$lang['db_unsupported_feature'] = 'Ikke-understøttet funktion på databaseplatformen du anvender.';
|
||||
$lang['db_unsupported_compression'] = 'Filkompression formattet du har valgt er ikke understøttet af din server.';
|
||||
$lang['db_filepath_error'] = 'Kan ikke skrive data til filen stien du har angivet.';
|
||||
$lang['db_invalid_cache_path'] = 'Cache stien du angivet er ikke gyldig eller skrivbar.';
|
||||
$lang['db_table_name_required'] = 'Et tabelnavn er nødvendig for denne operation.';
|
||||
$lang['db_column_name_required'] = 'Et kolonnenavn er nødvendig for denne operation.';
|
||||
$lang['db_column_definition_required'] = 'Der kræves en kolonnedefinition for denne operation.';
|
||||
$lang['db_unable_to_set_charset'] = 'Kan ikke sætte klientforbindelsens tegnsæt: %s';
|
||||
$lang['db_error_heading'] = 'Der opstod en Databasefejl';
|
||||
30
vendor/codeigniter/framework/system/language/danish/email_lang.php
vendored
Normal file
30
vendor/codeigniter/framework/system/language/danish/email_lang.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['email_must_be_array'] = 'Email valideringsmetoden kræver at modtage et array.';
|
||||
$lang['email_invalid_address'] = 'Ugyldig email adresse: %s';
|
||||
$lang['email_attachment_missing'] = 'Fandt ikke følgende email vedhæftning: %s';
|
||||
$lang['email_attachment_unreadable'] = 'Kan ikke åbne denne vedhæftning: %s';
|
||||
$lang['email_no_from'] = 'Kan ikke sende mail uden "From"-header.';
|
||||
$lang['email_no_recipients'] = 'Du skal angive for modtager: To, Cc, or Bcc';
|
||||
$lang['email_send_failure_phpmail'] = 'Kan ikke sende email med PHP mail(). Din server er måske ikke konfigurerettil at sende mail med denne metode.';
|
||||
$lang['email_send_failure_sendmail'] = 'Kan ikke sende email med PHP Sendmail. Din server er måske ikke konfigurerettil at sende mail med denne metode.';
|
||||
$lang['email_send_failure_smtp'] = 'Kan ikke sende email med PHP SMTP. Din server er måske ikke konfigurerettil at sende mail med denne metode.';
|
||||
$lang['email_sent'] = 'Din meddelelse blev sendt med denne protokol: %s';
|
||||
$lang['email_no_socket'] = 'Kan ikke åbne kontakt til Sendmail. Prøv at checke dine indstillinger.';
|
||||
$lang['email_no_hostname'] = 'Du mangler at angive et SMTP værtsnavn.';
|
||||
$lang['email_smtp_error'] = 'Følgende SMTP-fejl opstod: %s';
|
||||
$lang['email_no_smtp_unpw'] = 'Fejl: Du skal angive et SMTP brugernavn og password.';
|
||||
$lang['email_failed_smtp_login'] = 'Fejl ved afsendelse af AUTH LOGIN kommando. Fejl: %s';
|
||||
$lang['email_smtp_auth_un'] = 'Fejl ved autentificering af brugernavn. Fejl: %s';
|
||||
$lang['email_smtp_auth_pw'] = 'Fejl ved autentificering af password. Fejl: %s';
|
||||
$lang['email_smtp_data_failure'] = 'Kunne ikke sende dataene: %s';
|
||||
$lang['email_exit_status'] = 'Afslutende statuskode: %s';
|
||||
40
vendor/codeigniter/framework/system/language/danish/form_validation_lang.php
vendored
Normal file
40
vendor/codeigniter/framework/system/language/danish/form_validation_lang.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['form_validation_required'] = '{field} feltet er påkrævet.';
|
||||
$lang['form_validation_isset'] = '{field} feltet skal have en værdi.';
|
||||
$lang['form_validation_valid_email'] = '{field} feltet skal have en gyldig email adresse.';
|
||||
$lang['form_validation_valid_emails'] = '{field} feltet skal have kun gyldige email adresser.';
|
||||
$lang['form_validation_valid_url'] = '{field} feltet skal have en gyldig URL internetadresse.';
|
||||
$lang['form_validation_valid_ip'] = '{field} feltet skal have en gyldig IP adresse.';
|
||||
$lang['form_validation_min_length'] = '{field} feltet skal være på mindst {param} tegn.';
|
||||
$lang['form_validation_max_length'] = '{field} feltet skal være på max. {param} tegn.';
|
||||
$lang['form_validation_exact_length'] = '{field} feltet skal være på nøjagtig {param} tegn.';
|
||||
$lang['form_validation_alpha'] = '{field} feltet må kun indeholde alfabetiske tegn.';
|
||||
$lang['form_validation_alpha_numeric'] = '{field} feltet må kun indeholde alfanumeriske tegn.';
|
||||
$lang['form_validation_alpha_numeric_spaces'] = '{field} feltet må kun indeholde alfanumeriske tegn og mellemrum.';
|
||||
$lang['form_validation_alpha_dash'] = '{field} feltet må kun indeholde alfanumeriske tegn, bindestreger og understregningstegn.';
|
||||
$lang['form_validation_numeric'] = '{field} feltet må kun indeholde tal.';
|
||||
$lang['form_validation_is_numeric'] = '{field} feltet må kun indeholde numeriske tegn.';
|
||||
$lang['form_validation_integer'] = '{field} feltet skal indeholde et heltal.';
|
||||
$lang['form_validation_regex_match'] = '{field} feltet er ikke i det rigtige format.';
|
||||
$lang['form_validation_matches'] = '{field} feltet passer ikke til {param} feltet.';
|
||||
$lang['form_validation_differs'] = '{field} feltet skal være forskellig fra {param} feltet.';
|
||||
$lang['form_validation_is_unique'] = '{field} feltet skal indeholde en unik værdi.';
|
||||
$lang['form_validation_is_natural'] = '{field} feltet må kun indeholde tal.';
|
||||
$lang['form_validation_is_natural_no_zero'] = '{field} feltet må kun indeholde tal og skal være større end nul.';
|
||||
$lang['form_validation_decimal'] = '{field} feltet skal indeholde et decimaltal.';
|
||||
$lang['form_validation_less_than'] = '{field} feltet skal indeholde et tal mindre end {param}.';
|
||||
$lang['form_validation_less_than_equal_to'] = '{field} feltet skal indeholde et tal mindre end eller lig med {param}.';
|
||||
$lang['form_validation_greater_than'] = '{field} feltet skal indeholde et tal større end {param}.';
|
||||
$lang['form_validation_greater_than_equal_to'] = '{field} feltet skal indeholde et tal større end eller lig med {param}.';
|
||||
$lang['form_validation_error_message_not_set'] = 'Finder ikke en fejlmeddelelse, der svarer til dit feltnavn {field}.';
|
||||
$lang['form_validation_in_list'] = '{field} feltet skal være en af: {param}.';
|
||||
23
vendor/codeigniter/framework/system/language/danish/ftp_lang.php
vendored
Normal file
23
vendor/codeigniter/framework/system/language/danish/ftp_lang.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['ftp_no_connection'] = 'Fandt ikke en gyldig forbindelse-ID. Sikre at du er tilsluttet, før du udfører filoperationern.';
|
||||
$lang['ftp_unable_to_connect'] = 'Kan ikke forbinde til din FTP-server ved hjælp af det angivne værtsnavn.';
|
||||
$lang['ftp_unable_to_login'] = 'Kan ikke login til din FTP-server. Kontroller dit brugernavn og kodeord.';
|
||||
$lang['ftp_unable_to_mkdir'] = 'Kan ikke oprette mappen du har angivet.';
|
||||
$lang['ftp_unable_to_changedir'] = 'Kan ikke ændre mapper.';
|
||||
$lang['ftp_unable_to_chmod'] = 'Kan ikke sæt filrettigheder. Kontroller din filsti.';
|
||||
$lang['ftp_unable_to_upload'] = 'Kan ikke uploade den angivne fil. Kontroller din filsti.';
|
||||
$lang['ftp_unable_to_download'] = 'Kan ikke downloade den angivne fil. Kontroller din filsti.';
|
||||
$lang['ftp_no_source_file'] = 'Kan ikke lokalisere kildefilen. Kontroller din filsti.';
|
||||
$lang['ftp_unable_to_rename'] = 'Kan ikke omdøbe filen.';
|
||||
$lang['ftp_unable_to_delete'] = 'Kan ikke slette filen.';
|
||||
$lang['ftp_unable_to_move'] = 'Kan ikke flytte filen. Kontroller destinationen mappe eksisterer.';
|
||||
28
vendor/codeigniter/framework/system/language/danish/imglib_lang.php
vendored
Normal file
28
vendor/codeigniter/framework/system/language/danish/imglib_lang.php
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['imglib_source_image_required'] = 'Du skal angive en kilde-billede i dine præferencer.';
|
||||
$lang['imglib_gd_required'] = 'GD image library er påkrævet for denne funktion.';
|
||||
$lang['imglib_gd_required_for_props'] = 'Din server skal understøtte GD image library for at bestemme billedets egenskaber.';
|
||||
$lang['imglib_unsupported_imagecreate'] = 'Din server understøtter ikke GD funktionen der kræves for at behandle denne type billede.';
|
||||
$lang['imglib_gif_not_supported'] = 'GIF-billeder er ofte ikke understøttet på grund af licensrestriktioner. Du kan være nødt til at bruge JPG eller PNG-billeder i stedet.';
|
||||
$lang['imglib_jpg_not_supported'] = 'JPG-billeder understøttes ikke.';
|
||||
$lang['imglib_png_not_supported'] = 'PNG-billeder understøttes ikke.';
|
||||
$lang['imglib_jpg_or_png_required'] = 'Billedet resize protokollen angivet i dine præferencer virker kun med JPEG eller PNG billedtyper.';
|
||||
$lang['imglib_copy_error'] = 'Der opstod en fejl under forsøget på at erstatte filen. Kontroller din filmappe er skrivbar.';
|
||||
$lang['imglib_rotate_unsupported'] = 'Billede rotation synes ikke at være understøttet af din server.';
|
||||
$lang['imglib_libpath_invalid'] = 'Stien til dit billede bibliotek er ikke korrekt. Indstil den korrekte sti i dine billede præferencer.';
|
||||
$lang['imglib_image_process_failed'] = 'Billedbehandling mislykkedes. Kontroller, at din server understøtter den valgte protokol, og at stien til dit billede bibliotek er korrekt.';
|
||||
$lang['imglib_rotation_angle_required'] = 'En rotationvinkel er påkrævet for at rotere billedet.';
|
||||
$lang['imglib_invalid_path'] = 'Stien til billedet er ikke korrekt.';
|
||||
$lang['imglib_copy_failed'] = 'Billedets kopiering mislykkedes.';
|
||||
$lang['imglib_missing_font'] = 'Kan ikke finde en skrifttype til at bruge.';
|
||||
$lang['imglib_save_failed'] = 'Kan ikke gemme billedet. Kontroller at billedet og filmappe er skrivbar.';
|
||||
11
vendor/codeigniter/framework/system/language/danish/index.html
vendored
Normal file
11
vendor/codeigniter/framework/system/language/danish/index.html
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
19
vendor/codeigniter/framework/system/language/danish/migration_lang.php
vendored
Normal file
19
vendor/codeigniter/framework/system/language/danish/migration_lang.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['migration_none_found'] = 'Ingen migrationer blev fundet.';
|
||||
$lang['migration_not_found'] = 'Ingen migrationer blev fundet med versionsnummeret: %s.';
|
||||
$lang['migration_sequence_gap'] = 'Der er et gab i migrationsekvensen i version nummer: %s.';
|
||||
$lang['migration_multiple_version'] = 'Der er flere migrationer med samme versionsnummer: %s.';
|
||||
$lang['migration_class_doesnt_exist'] = 'Migration klassen "%s" kunne ikke findes.';
|
||||
$lang['migration_missing_up_method'] = 'Migration klassen "%s" mangler "up" metoden.';
|
||||
$lang['migration_missing_down_method'] = 'Migration klassen "%s" mangler "down" metoden.';
|
||||
$lang['migration_invalid_filename'] = 'Migration "%s" har et ugyldigt filnavn.';
|
||||
16
vendor/codeigniter/framework/system/language/danish/number_lang.php
vendored
Normal file
16
vendor/codeigniter/framework/system/language/danish/number_lang.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['terabyte_abbr'] = 'TB';
|
||||
$lang['gigabyte_abbr'] = 'GB';
|
||||
$lang['megabyte_abbr'] = 'MB';
|
||||
$lang['kilobyte_abbr'] = 'KB';
|
||||
$lang['bytes'] = 'Bytes';
|
||||
15
vendor/codeigniter/framework/system/language/danish/pagination_lang.php
vendored
Normal file
15
vendor/codeigniter/framework/system/language/danish/pagination_lang.php
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['pagination_first_link'] = '‹ Første';
|
||||
$lang['pagination_next_link'] = '>';
|
||||
$lang['pagination_prev_link'] = '<';
|
||||
$lang['pagination_last_link'] = 'Sidste ›';
|
||||
32
vendor/codeigniter/framework/system/language/danish/profiler_lang.php
vendored
Normal file
32
vendor/codeigniter/framework/system/language/danish/profiler_lang.php
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['profiler_database'] = 'DATABASE';
|
||||
$lang['profiler_controller_info'] = 'KLASSE/METODE';
|
||||
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
||||
$lang['profiler_queries'] = 'FORESPØRGSLER';
|
||||
$lang['profiler_get_data'] = 'GET DATA';
|
||||
$lang['profiler_post_data'] = 'POST DATA';
|
||||
$lang['profiler_uri_string'] = 'URI STRENG';
|
||||
$lang['profiler_memory_usage'] = 'MEMORY FORBRUG';
|
||||
$lang['profiler_config'] = 'CONFIG VARIABLER';
|
||||
$lang['profiler_session_data'] = 'SESSION DATA';
|
||||
$lang['profiler_headers'] = 'HTTP HEADERS';
|
||||
$lang['profiler_no_db'] = 'Database driver er ikke indlæst i øjeblikket';
|
||||
$lang['profiler_no_queries'] = 'Ingen forespørgsler blev kørt';
|
||||
$lang['profiler_no_post'] = 'Ingen POST data eksisterer';
|
||||
$lang['profiler_no_get'] = 'Ingen GET data eksisterer';
|
||||
$lang['profiler_no_uri'] = 'Ingen URI data eksisterer';
|
||||
$lang['profiler_no_memory'] = 'Memory forbrug ikke tilgængelig';
|
||||
$lang['profiler_no_profiles'] = 'Ingen profil data - alle profil-sektioner er blevet deaktiveret.';
|
||||
$lang['profiler_section_hide'] = 'Skjul';
|
||||
$lang['profiler_section_show'] = 'Vis';
|
||||
$lang['profiler_seconds'] = 'Sekunder';
|
||||
30
vendor/codeigniter/framework/system/language/danish/unit_test_lang.php
vendored
Normal file
30
vendor/codeigniter/framework/system/language/danish/unit_test_lang.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['ut_test_name'] = 'Test Navn';
|
||||
$lang['ut_test_datatype'] = 'Test Datatype';
|
||||
$lang['ut_res_datatype'] = 'Forventet Datatype';
|
||||
$lang['ut_result'] = 'Resultat';
|
||||
$lang['ut_undefined'] = 'Undefineret Test Navn';
|
||||
$lang['ut_file'] = 'File Navn';
|
||||
$lang['ut_line'] = 'Linie Nummer';
|
||||
$lang['ut_passed'] = 'Bestået';
|
||||
$lang['ut_failed'] = 'Mislykket';
|
||||
$lang['ut_boolean'] = 'Boolean';
|
||||
$lang['ut_integer'] = 'Integer';
|
||||
$lang['ut_float'] = 'Float';
|
||||
$lang['ut_double'] = 'Float'; // can be the same as float
|
||||
$lang['ut_string'] = 'String';
|
||||
$lang['ut_array'] = 'Array';
|
||||
$lang['ut_object'] = 'Object';
|
||||
$lang['ut_resource'] = 'Resource';
|
||||
$lang['ut_null'] = 'Null';
|
||||
$lang['ut_notes'] = 'Notater';
|
||||
27
vendor/codeigniter/framework/system/language/danish/upload_lang.php
vendored
Normal file
27
vendor/codeigniter/framework/system/language/danish/upload_lang.php
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['upload_userfile_not_set'] = 'Kan ikke finde en postvariablen kaldet userfile.';
|
||||
$lang['upload_file_exceeds_limit'] = 'Den uploadede fil overskrider maksimalt tilladte størrelse i din PHP-konfiguration fil.';
|
||||
$lang['upload_file_exceeds_form_limit'] = 'Den uploadede fil overskrider den maksimale tilladte størrelse af indsendelse formular.';
|
||||
$lang['upload_file_partial'] = 'Filen blev kun delvist uploadet.';
|
||||
$lang['upload_no_temp_directory'] = 'Den midlertidige mappe mangler.';
|
||||
$lang['upload_unable_to_write_file'] = 'Filen kunne ikke skrives til disk.';
|
||||
$lang['upload_stopped_by_extension'] = 'Filoverførslen blev stoppet ved udvidelse.';
|
||||
$lang['upload_no_file_selected'] = 'Du valgte ikke en fil til upload.';
|
||||
$lang['upload_invalid_filetype'] = 'Filtypen du forsøger at uploade er ikke tilladt.';
|
||||
$lang['upload_invalid_filesize'] = 'Filendu forsøger at uploade, er større end den tilladte størrelse.';
|
||||
$lang['upload_invalid_dimensions'] = 'Billedet du forsøger at uploade overskrider de tilladte dimensioner.';
|
||||
$lang['upload_destination_error'] = 'Der opstod et problem under forsøget på at flytte den uploadede fil til slut-destinationen.';
|
||||
$lang['upload_no_filepath'] = 'Uploadstien synes ikke at være gyldig.';
|
||||
$lang['upload_no_file_types'] = 'Du har ikke angivet tilladte filtyper.';
|
||||
$lang['upload_bad_filename'] = 'Filnavnet du angav findes allerede på serveren.';
|
||||
$lang['upload_not_writable'] = 'Upload destinationsmappen synes ikke at være skrivbar.';
|
||||
@@ -24,7 +24,7 @@ $lang['imglib_libpath_invalid'] = 'Het pad naar de image library is niet corre
|
||||
$lang['imglib_image_process_failed'] = 'Het verwerken van de afbeelding is mislukt. Controleer of de server het gekozen protocol ondersteunt, en of het pad naar de image library klopt.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Om te afbeelding te kunnen roteren, dient een rotatiehoek opgegeven te worden.';
|
||||
$lang['imglib_invalid_path'] = 'Het pad naar de afbeelding klopt niet.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'De verstrekte afbeelding is niet geldig.';
|
||||
$lang['imglib_copy_failed'] = 'De kopieerroutine werkte niet.';
|
||||
$lang['imglib_missing_font'] = 'Het systeem kon geen bruikbaar lettertype vinden.';
|
||||
$lang['imglib_save_failed'] = 'Het opslaan van de afbeelding is mislukt. Controleer of er voldoende rechten zijn om te kunnen schrijven naar de bestandsdirectories';
|
||||
|
||||
@@ -22,8 +22,8 @@ $lang['imglib_rotate_unsupported'] = 'Ang pag-ikot ng imahe ay tila hindi suport
|
||||
$lang['imglib_libpath_invalid'] = 'Ang path sa iyong image library ay hindi tama. Mangyaring i-set ang tamang path sa iyong image preferences.';
|
||||
$lang['imglib_image_process_failed'] = 'Nabigo ang pagproseso ng imahe. Mangyaring siguraduhin na sinusuportahan ng iyong server ang napiling protocol at tama ang path tungo sa iyong image library.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Ang isang anggulo ng pag-ikot ang kinakailangan upang i-rotate ang larawan.';
|
||||
$lang['imglib_invalid_path'] = 'Ang path tungo sa imahe ay di wasto.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_path'] = 'Ang path tungo sa imahe ay hindi wasto.';
|
||||
$lang['imglib_invalid_image'] = 'Ang binigay na imahe ay hindi balido.';
|
||||
$lang['imglib_copy_failed'] = 'Nabigo ang routine ng pagkopya ng imahe.';
|
||||
$lang['imglib_missing_font'] = 'Hindi makahanap ng isang font na gagamitin.';
|
||||
$lang['imglib_save_failed'] = 'Hindi magawang i-save ang imahe. Mangyaring siguraduhin na ang mga directory ng imahe at file ay writable.';
|
||||
|
||||
@@ -22,7 +22,7 @@ $lang['imglib_libpath_invalid'] = "Le chemin vers votre librairie d'imag
|
||||
$lang['imglib_image_process_failed'] = "Le traintement de l'image a échoué. Veuillez vous assurer que votre serveur prend en charge le protocole choisi et que le chemin vers votre librairie d'images est correct.";
|
||||
$lang['imglib_rotation_angle_required'] = "Un angle de rotation est nécéssaire pour faire tourner l'image.";
|
||||
$lang['imglib_invalid_path'] = "Le chemin vers l'image est incorrect.";
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = "L'image fournie n'est pas valide.";
|
||||
$lang['imglib_copy_failed'] = "La routine de copie d'image a échouée.";
|
||||
$lang['imglib_missing_font'] = "Impossible de trouver une police de caractères.";
|
||||
$lang['imglib_save_failed'] = "Impossible de sauvegarder l'image. Veuillez vous assurer que l'image et le répertoire sont accessibles en écriture.";
|
||||
|
||||
@@ -23,7 +23,7 @@ $lang['imglib_libpath_invalid'] = 'Der Pfad zu Ihrem Bilder-Verzeichnis ist fals
|
||||
$lang['imglib_image_process_failed'] = 'Die Bildbearbeitung schlug fehl. Bitte überprüfen Sie, dass Ihr Server das gewählte Protokoll unterstützt und dass der Pfad zu den Bildern korrekt ist.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Es muss ein Winkel zur Drehung des Bildes angegeben werden.';
|
||||
$lang['imglib_invalid_path'] = 'Der Pfad zum Bild ist falsch.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'Das angegebene Bild ist ungültig.';
|
||||
$lang['imglib_copy_failed'] = 'Die Routine zum Kopieren des Bildes schlug fehl.';
|
||||
$lang['imglib_missing_font'] = 'Es konnte kein geeigneter Zeichensatz gefunden werden.';
|
||||
$lang['imglib_save_failed'] = 'Das Bild konnte nicht gespeichert werden. Stellen Sie sicher, dass die benötigten Verzeichnis beschreibbar ist.';
|
||||
|
||||
@@ -28,3 +28,4 @@ $lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_copy_failed'] = 'Η ρουτίνα αντίγραφο της εικόνας απέτυχε.';
|
||||
$lang['imglib_missing_font'] = 'Αδυναμία να βρεθεί η γραμματοσειρά που χρησιμοποιείται.';
|
||||
$lang['imglib_save_failed'] = 'Αδυναμία στην αποθήκευση εικόνας. Παρακαλώ βεβαιωθείτε οτι η εικόνα και ο κατάλογος είναι εγγράψιμοι.';
|
||||
$lang['imglib_invalid_image'] = 'Η παρεχόμενη εικόνα δεν είναι έγκυρη.';
|
||||
|
||||
@@ -24,7 +24,7 @@ $lang['imglib_libpath_invalid'] = 'તમારી છબી (ઈમેજ) લ
|
||||
$lang['imglib_image_process_failed'] = 'ચિત્ર પ્રક્રિયા નિષ્ફળ. તમારા સર્વર પસંદ કરેલ પ્રોટોકોલ આધાર આપે છે કે નહી તે તપાસો અને તમારી છબી (ઈમેજ) લાઇબ્રેરી પાથ યોગ્ય છે કે નહીં તે તપાસો.';
|
||||
$lang['imglib_rotation_angle_required'] = 'રોટેશન છબી (ઈમેજ) નો ખૂણો ફેરવવા જરૂરી છે.';
|
||||
$lang['imglib_invalid_path'] = 'છબી (ઈમેજ) નો પાથ સાચો નથી.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'પૂરી પાડવામાં આવેલ છબી માન્ય નથી.';
|
||||
$lang['imglib_copy_failed'] = 'છબી (ઈમેજ) નકલ કાર્ય નિષ્ફળ.';
|
||||
$lang['imglib_missing_font'] = 'વાપરવા માટે એક ફોન્ટ શોધવામાં નિષ્ફળતા.';
|
||||
$lang['imglib_save_failed'] = 'છબી સાચવો (સેવ) નિષ્ફળ. છબી અને ફાઇલ ડિરેક્ટરી લખી શકાય હોય તેની ખાતરી કરો.';
|
||||
|
||||
@@ -23,7 +23,7 @@ $lang['imglib_libpath_invalid'] = 'अपनी छवि पुस्तका
|
||||
$lang['imglib_image_process_failed'] = 'इमेज प्रोसेसिंग में विफल रहा है। आपके सर्वर चुना प्रोटोकॉल का समर्थन करता है कि सत्यापित करने और अपनी छवि पुस्तकालय के लिए रास्ता सही है कि कृपया।';
|
||||
$lang['imglib_rotation_angle_required'] = 'रोटेशन के कोण छवि को घुमाने के लिए आवश्यक है।';
|
||||
$lang['imglib_invalid_path'] = 'छवि के लिए रास्ता सही नहीं है।';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'प्रदान की छवि मान्य नहीं है।';
|
||||
$lang['imglib_copy_failed'] = 'छवि प्रतिलिपि दिनचर्या में विफल रहा है।';
|
||||
$lang['imglib_missing_font'] = 'उपयोग करने के लिए एक फ़ॉन्ट ढूंढने में असमर्थ।';
|
||||
$lang['imglib_save_failed'] = 'छवि को बचाने में असमर्थ। छवि और फाइल निर्देशिका लिखने योग्य हैं सुनिश्चित करें।';
|
||||
|
||||
@@ -23,7 +23,7 @@ $lang['imglib_libpath_invalid'] = '画像ライブラリのパスが間違って
|
||||
$lang['imglib_image_process_failed'] = '画像処理が失敗しました。サーバで指定した処理がサポートされているか、また画像ライブラリのパスが正しいかを確認してください。';
|
||||
$lang['imglib_rotation_angle_required'] = '画像を回転するには、回転する角度を指定する必要があります。';
|
||||
$lang['imglib_invalid_path'] = '画像のパスが間違っています。';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = '提供された画像は無効です。';
|
||||
$lang['imglib_copy_failed'] = '画像のコピーに失敗しました。';
|
||||
$lang['imglib_missing_font'] = '使用するフォントが見つかりません。';
|
||||
$lang['imglib_save_failed'] = '画像を保存できません。画像と保存先のディレクトリを書き込み可能にしてください。';
|
||||
|
||||
@@ -24,7 +24,7 @@ $lang['imglib_libpath_invalid'] = 'ទីតាំងទៅកាន
|
||||
$lang['imglib_image_process_failed'] = 'ដំណើរការរូបភាពបរាជ័យ។ សូមផ្ទៀងផ្ទាត់ថាម៉ាស៊ីនរបស់អ្នកស្គាល់ នូវតម្រូវការដែលបានជ្រើស ហើយទីតាំងទៅបណ្ណាល័យរូបភាពរបស់អ្នកគឺត្រឹមត្រូវ។';
|
||||
$lang['imglib_rotation_angle_required'] = 'មុំនៃការបង្វិលគឺតម្រូវឲ្យមានដើម្បីបង្វិលរូបភាព។';
|
||||
$lang['imglib_invalid_path'] = 'ទីតាំងទៅកាន់រូបភាពគឺមិនត្រឹមត្រូវ។';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'រូបភាពដែលបានផ្ដល់គឺមិនត្រឹមត្រូវ។';
|
||||
$lang['imglib_copy_failed'] = 'ថតចម្លងរូបភាពបានបរាជ័យ។';
|
||||
$lang['imglib_missing_font'] = 'កមិនឃើញពុម្ពអក្សរដែលត្រូវប្រើនោះបានទេ។';
|
||||
$lang['imglib_save_failed'] = 'មិនអាចរក្សាទុករូបភាព។ សូមបញ្ជាក់ថារូបភាពនិងថតឯកសារគឺអាចកែតម្រូវបាន។';
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
@@ -51,7 +23,7 @@ $lang['imglib_libpath_invalid'] = 'Jūsų paveikslėlių bibliotekos kelias nete
|
||||
$lang['imglib_image_process_failed'] = 'Paveikslėlių apdorojimas nepavyko. Prašome patikrinti, ar serveris palaiko pasirinktą protokolą, ir kad kelias iki paveikslėlių bibliotekos yra teisingas.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Norint pasukti paveikslėlį reikia nurodyti pasukimo kampą.';
|
||||
$lang['imglib_invalid_path'] = 'Kelias iki paveikslėlio nurodytas neteisingai.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'Numatyta paveikslėlis negalioja.';
|
||||
$lang['imglib_copy_failed'] = 'Paveikslėlio kopijavimo veiksmas neteisingas.';
|
||||
$lang['imglib_missing_font'] = 'Nepavyksta rasti naudotino šrifto.';
|
||||
$lang['imglib_save_failed'] = 'Nepavyko įrašyti paveikslėlio. Prašome įsitikinti, kad į paveikslėlį ir failų direktoriją galima rašyti.';
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 3.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -9,7 +9,8 @@
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['ftp_no_connection'] = 'شناسه ارتباطی معتبری یافت نشد. لطفاً پیش از انجام هر فعالیت مربوط به فایل، از وجود اتصال مطمئن شوید.';$lang['ftp_unable_to_connect'] = 'عدم موفقیت در وصل شدن به سرور FTP.';
|
||||
$lang['ftp_no_connection'] = 'شناسه ارتباطی معتبری یافت نشد. لطفاً پیش از انجام هر فعالیت مربوط به فایل، از وجود اتصال مطمئن شوید.';
|
||||
$lang['ftp_unable_to_connect'] = 'عدم موفقیت در وصل شدن به سرور FTP.';
|
||||
$lang['ftp_unable_to_connect'] = 'اتصال به سرور فایل(FTP) با استفاده از میزبان(hostname) معرفی شده امکانپذیر نیست.';
|
||||
$lang['ftp_unable_to_login'] = 'ورود به سرور فایل(FTP) امکانپذیر نیست. لطفاً نام کاربری و کلمه خود را بررسی کنید.';
|
||||
$lang['ftp_unable_to_mkdir'] = 'ساخت پوشه مورد نظر شما امکانپذیر نیست.';
|
||||
|
||||
@@ -23,7 +23,7 @@ $lang['imglib_libpath_invalid'] = 'آدرس کتابخانه تصویر صحیح
|
||||
$lang['imglib_image_process_failed'] = 'پردازش تصویر با خطا مواجه شده. لطفا اطمینان حاصل کنید که سرور شما پروتوکل انتخاب شده را پشتیبانی کرده و آدرس کتابخانه تصویر درست است.';
|
||||
$lang['imglib_rotation_angle_required'] = 'برای چرخاندن تصویر نیاز به یک زاویه چرخش است.';
|
||||
$lang['imglib_invalid_path'] = 'آدرس تصویر صحیح نیست.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'تصویر داده شده معتبر نیست.';
|
||||
$lang['imglib_copy_failed'] = 'عملیات کپی تصویر با شکست مواجه شد.';
|
||||
$lang['imglib_missing_font'] = 'فونتی برای استفاده پیدا نشد.';
|
||||
$lang['imglib_save_failed'] = 'عدم موفقیت در ذخیره تصویر. لطفاً اطمینان حاصل کنید پوشه مقصد قابل نوشتن است.';
|
||||
|
||||
@@ -23,7 +23,7 @@ $lang['imglib_libpath_invalid'] = 'O caminho para a biblioteca de imagens não e
|
||||
$lang['imglib_image_process_failed'] = 'Falha ao processar a imagem.Por favor verifique que seu servidor suporta o protocolo escolhido e que o caminho para sua biblioteca de imagens esteja correto.';
|
||||
$lang['imglib_rotation_angle_required'] = 'O ângulo de rotação é obrigatório para rodar a imagem.';
|
||||
$lang['imglib_invalid_path'] = 'O caminho para a imagem não está correto';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'A imagem fornecida não é válida.';
|
||||
$lang['imglib_copy_failed'] = 'A rotina de cópia da imagem falhou.';
|
||||
$lang['imglib_missing_font'] = 'Não é possível encontrar a fonte para usar.';
|
||||
$lang['imglib_save_failed'] = 'Não é possível salvar a imagem. Por favor tenha certeza que a imagem e o diretório são graváveis.';
|
||||
|
||||
@@ -24,7 +24,7 @@ $lang['imglib_libpath_invalid'] = 'Calea către biblioteca de imagine nu este co
|
||||
$lang['imglib_image_process_failed'] = 'Procesarea imaginii a eșuat. Verificați dacă serverul dvs. suportă protocolul ales și dacă este corectă calea către biblioteca de imagine.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Este necesar un unghi de rotație petru a roti imaginea.';
|
||||
$lang['imglib_invalid_path'] = 'Calea către imagine nu este corectă.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'Imaginea furnizată nu este validă.';
|
||||
$lang['imglib_copy_failed'] = 'Copierea imaginii de rutină a eșuat.';
|
||||
$lang['imglib_missing_font'] = 'Nu s-a putut găsi un font pentru a fi folosit.';
|
||||
$lang['imglib_save_failed'] = 'Imaginea nu a putut fi salvată. Asigurați-vă că imaginea și fișierul director au permisiuni de scriere.';
|
||||
|
||||
@@ -23,7 +23,7 @@ $lang['imglib_libpath_invalid'] = 'Неверный путь к библиоте
|
||||
$lang['imglib_image_process_failed'] = 'Обработка изображения закончилась неудачей. Пожалуйста, убедитесь что Ваш сервер поддерживает выбранный протокол и что путь к вашей библиотеке для обработки изображений является правильным.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Необходимо указать угол поворота.';
|
||||
$lang['imglib_invalid_path'] = 'Неверный путь к изображению.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'Предоставленное изображение не является действительным.';
|
||||
$lang['imglib_copy_failed'] = 'Копирование изображения закончилось неудачей.';
|
||||
$lang['imglib_missing_font'] = 'Невозможно найти шрифт.';
|
||||
$lang['imglib_save_failed'] = 'Невозможно сохранить изображение. Пожалуйста, убедитесь что изображение и каталог доступны для записи.';
|
||||
|
||||
@@ -24,7 +24,7 @@ $lang['imglib_libpath_invalid'] = 'Putanja do vaše biblioteke za slike nije isp
|
||||
$lang['imglib_image_process_failed'] = 'Neuspešna obrada slike. Proverite da li vaš server podržava izabrani protokol i da li je putanja do biblioteke za slike ispravna.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Potreban je ugao rotacije da bi se rotacija izvršila.';
|
||||
$lang['imglib_invalid_path'] = 'Putanja do slike nije ispravna.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'Priloženi slika nije važeća.';
|
||||
$lang['imglib_copy_failed'] = 'Kopiranje slike je neuspešno.';
|
||||
$lang['imglib_missing_font'] = 'Ne može se locirati font za upotrebu.';
|
||||
$lang['imglib_save_failed'] = 'Ne može se snimiti slika. Proverite da slika i direktorijum u kom se nalazi fajl imaju dozvolu za pisanje.';
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 3.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,39 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ $lang['imglib_libpath_invalid'] = 'Sökvägen till bildmappen är felaktig. Ang
|
||||
$lang['imglib_image_process_failed'] = 'Bildbehandlingen misslyckades. Kontrollera att server stöder valt protokoll och att sökvägen till bildmappen är korrekt.';
|
||||
$lang['imglib_rotation_angle_required'] = 'En rotationsvinkel måste anges för att rotera bilden.';
|
||||
$lang['imglib_invalid_path'] = 'Sökvägen till bild-filen är inte korrekt.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'Den angivna bilden är ogiltig.';
|
||||
$lang['imglib_copy_failed'] = 'Kunde inte kopiera bilden.';
|
||||
$lang['imglib_missing_font'] = 'Teckensnitt saknas.';
|
||||
$lang['imglib_save_failed'] = 'Kunde inte spara bilden. Kontrollera skrivrättigheterna för filen och mappen.';
|
||||
|
||||
@@ -24,43 +24,43 @@ $lang['date_minutes'] = 'นาที';
|
||||
$lang['date_second'] = 'วินาที';
|
||||
$lang['date_seconds'] = 'วินาที';
|
||||
|
||||
$lang['UM12'] = '(UTC -12:00) Baker/Howland Island';
|
||||
$lang['UM11'] = '(UTC -11:00) Niue';
|
||||
$lang['UM10'] = '(UTC -10:00) Hawaii-Aleutian Standard Time, Cook Islands, Tahiti';
|
||||
$lang['UM95'] = '(UTC -9:30) Marquesas Islands';
|
||||
$lang['UM9'] = '(UTC -9:00) Alaska Standard Time, Gambier Islands';
|
||||
$lang['UM8'] = '(UTC -8:00) Pacific Standard Time, Clipperton Island';
|
||||
$lang['UM7'] = '(UTC -7:00) Mountain Standard Time';
|
||||
$lang['UM6'] = '(UTC -6:00) Central Standard Time';
|
||||
$lang['UM5'] = '(UTC -5:00) Eastern Standard Time, Western Caribbean Standard Time';
|
||||
$lang['UM45'] = '(UTC -4:30) Venezuelan Standard Time';
|
||||
$lang['UM4'] = '(UTC -4:00) Atlantic Standard Time, Eastern Caribbean Standard Time';
|
||||
$lang['UM35'] = '(UTC -3:30) Newfoundland Standard Time';
|
||||
$lang['UM3'] = '(UTC -3:00) Argentina, Brazil, French Guiana, Uruguay';
|
||||
$lang['UM2'] = '(UTC -2:00) South Georgia/South Sandwich Islands';
|
||||
$lang['UM1'] = '(UTC -1:00) Azores, Cape Verde Islands';
|
||||
$lang['UTC'] = '(UTC) Greenwich Mean Time, Western European Time';
|
||||
$lang['UP1'] = '(UTC +1:00) Central European Time, West Africa Time';
|
||||
$lang['UP2'] = '(UTC +2:00) Central Africa Time, Eastern European Time, Kaliningrad Time';
|
||||
$lang['UP3'] = '(UTC +3:00) Moscow Time, East Africa Time, Arabia Standard Time';
|
||||
$lang['UP35'] = '(UTC +3:30) Iran Standard Time';
|
||||
$lang['UP4'] = '(UTC +4:00) Azerbaijan Standard Time, Samara Time';
|
||||
$lang['UP45'] = '(UTC +4:30) Afghanistan';
|
||||
$lang['UP5'] = '(UTC +5:00) Pakistan Standard Time, Yekaterinburg Time';
|
||||
$lang['UP55'] = '(UTC +5:30) Indian Standard Time, Sri Lanka Time';
|
||||
$lang['UP575'] = '(UTC +5:45) Nepal Time';
|
||||
$lang['UP6'] = '(UTC +6:00) Bangladesh Standard Time, Bhutan Time, Omsk Time';
|
||||
$lang['UP65'] = '(UTC +6:30) Cocos Islands, Myanmar';
|
||||
$lang['UP7'] = '(UTC +7:00) Krasnoyarsk Time, Cambodia, Laos, Thailand, Vietnam';
|
||||
$lang['UP8'] = '(UTC +8:00) Australian Western Standard Time, Beijing Time, Irkutsk Time';
|
||||
$lang['UP875'] = '(UTC +8:45) Australian Central Western Standard Time';
|
||||
$lang['UP9'] = '(UTC +9:00) Japan Standard Time, Korea Standard Time, Yakutsk Time';
|
||||
$lang['UP95'] = '(UTC +9:30) Australian Central Standard Time';
|
||||
$lang['UP10'] = '(UTC +10:00) Australian Eastern Standard Time, Vladivostok Time';
|
||||
$lang['UP105'] = '(UTC +10:30) Lord Howe Island';
|
||||
$lang['UP11'] = '(UTC +11:00) Srednekolymsk Time, Solomon Islands, Vanuatu';
|
||||
$lang['UP115'] = '(UTC +11:30) Norfolk Island';
|
||||
$lang['UP12'] = '(UTC +12:00) Fiji, Gilbert Islands, Kamchatka Time, New Zealand Standard Time';
|
||||
$lang['UP1275'] = '(UTC +12:45) Chatham Islands Standard Time';
|
||||
$lang['UP13'] = '(UTC +13:00) Samoa Time Zone, Phoenix Islands Time, Tonga';
|
||||
$lang['UP14'] = '(UTC +14:00) Line Islands';
|
||||
$lang['UM12'] = '(UTC -12:00) เบเกอร์ / เกาะฮาวแลนด์';
|
||||
$lang['UM11'] = '(UTC -11:00) นีอูเอ';
|
||||
$lang['UM10'] = '(UTC -10:00) เวลามาตรฐานฮาวาย-อะลูเชียน, หมู่เกาะคุก, ตาฮิติ';
|
||||
$lang['UM95'] = '(UTC -9:30) หมู่เกาะมาร์เคซัส';
|
||||
$lang['UM9'] = '(UTC -9:00) เวลามาตรฐานอลาสก้า, หมู่เกาะชาดำ';
|
||||
$lang['UM8'] = '(UTC -8:00) เวลามาตรฐานแปซิฟิก,เกาะคลิปเปอร์ตัน';
|
||||
$lang['UM7'] = '(UTC -7:00) เวลามาตรฐานของภูเขา';
|
||||
$lang['UM6'] = '(UTC -6:00) เวลามาตรฐานกลาง';
|
||||
$lang['UM5'] = '(UTC -5:00) เวลามาตรฐานตะวันออก, เวลามาตรฐานแคริบเบียนตะวันตก';
|
||||
$lang['UM45'] = '(UTC -4:30) เวลามาตรฐานของเวเนซุเอลา';
|
||||
$lang['UM4'] = '(UTC -4:00) เวลามาตรฐานแอตแลนติก, เวลามาตรฐานแคริบเบียนตะวันออก';
|
||||
$lang['UM35'] = '(UTC -3:30) เวลามาตรฐานของ Newfoundland';
|
||||
$lang['UM3'] = '(UTC -3:00) อาร์เจนตินา, บราซิล, เฟรนช์เกียนา, อุรุกวัย';
|
||||
$lang['UM2'] = '(UTC -2:00) หมู่เกาะเซาท์จอร์เจีย / หมู่เกาะเซาท์แซนด์วิช';
|
||||
$lang['UM1'] = '(UTC -1:00) อะซอเรส, หมู่เกาะเคปเวิร์ด';
|
||||
$lang['UTC'] = '(UTC) เวลามาตรฐานกรีนิช, เวลายุโรปตะวันตก';
|
||||
$lang['UP1'] = '(UTC +1:00) เวลายุโรปกลาง, เวลาแอฟริกาตะวันตก';
|
||||
$lang['UP2'] = '(UTC +2:00) เวลาแอฟริกากลาง, เวลายุโรปตะวันออก, เวลาคาลินินกราด';
|
||||
$lang['UP3'] = '(UTC +3:00) เวลามอสโก, เวลาแอฟริกาตะวันออก, เวลามาตรฐานของอาระเบีย';
|
||||
$lang['UP35'] = '(UTC +3:30) เวลามาตรฐานของอิหร่าน';
|
||||
$lang['UP4'] = '(UTC +4:00) เวลามาตรฐานอาเซอร์ไบจาน, เวลา Samara';
|
||||
$lang['UP45'] = '(UTC +4:30) อัฟกานิสถาน';
|
||||
$lang['UP5'] = '(UTC +5:00) เวลามาตรฐานปากีสถาน, เวลา Yekaterinburg';
|
||||
$lang['UP55'] = '(UTC +5:30) เวลามาตรฐานของอินเดีย, เวลาศรีลังกา';
|
||||
$lang['UP575'] = '(UTC +5:45) เวลาเนปาล';
|
||||
$lang['UP6'] = '(UTC +6:00) เวลามาตรฐานของบังกลาเทศ, เวลาภูฏาน, เวลา Omsk';
|
||||
$lang['UP65'] = '(UTC +6:30) หมู่เกาะโคโคส, พม่า';
|
||||
$lang['UP7'] = '(UTC +7:00) เวลา Krasnoyarsk, กัมพูชา, ลาว, ไทย, เวียดนาม';
|
||||
$lang['UP8'] = '(UTC +8:00) เวลามาตรฐานออสเตรเลียตะวันตก, เวลาปักกิ่ง, เวลาอีร์คุตสก์';
|
||||
$lang['UP875'] = '(UTC +8:45) เวลามาตรฐานของออสเตรเลียตะวันตกตอนกลาง';
|
||||
$lang['UP9'] = '(UTC +9:00) วลามาตรฐานของประเทศญี่ปุ่น, เวลามาตรฐานของประเทศเกาหลี, เวลา Yakutsk';
|
||||
$lang['UP95'] = '(UTC +9:30) เวลามาตรฐานของออสเตรเลียกลาง';
|
||||
$lang['UP10'] = '(UTC +10:00) เวลามาตรฐานตะวันออกของออสเตรเลีย, เวลา Vladivostok';
|
||||
$lang['UP105'] = '(UTC +10:30) เกาะ Lord Howe';
|
||||
$lang['UP11'] = '(UTC +11:00) เวลา Srednekolymsk, หมู่เกาะโซโลมอน, วานูอาตู';
|
||||
$lang['UP115'] = '(UTC +11:30) เกาะนอร์ฟอล์ก';
|
||||
$lang['UP12'] = '(UTC +12:00) ฟิจิ, หมู่เกาะ Gilbert, เวลา Kamchatka, เวลามาตรฐานของนิวซีแลนด์';
|
||||
$lang['UP1275'] = '(UTC +12:45) เวลามาตรฐานหมู่เกาะ Chatham';
|
||||
$lang['UP13'] = '(UTC +13:00) โซนเวลาซามัว, เวลาเกาะฟีนิกซ์, ตองกา';
|
||||
$lang['UP14'] = '(UTC +14:00) หมู่เกาะไลน์';
|
||||
|
||||
@@ -23,7 +23,7 @@ $lang['imglib_libpath_invalid'] = 'Path ไปยัง image libraryของ
|
||||
$lang['imglib_image_process_failed'] = 'ล้มเหลวในการประมวลผลภาพ กรุณาตรวจสอบว่าเซิร์ฟเวอร์ของคุณรองรับโปรโตคอลที่ใช้และเส้นทางไปยัง image library ของคุณถูกต้อง';
|
||||
$lang['imglib_rotation_angle_required'] = 'โปรดระบุมุุมสำหรับการหมุนภาพ';
|
||||
$lang['imglib_invalid_path'] = 'ตำแหน่งของภาพไม่ถูกต้อง';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'ภาพที่ระบุไม่ถูกต้อง';
|
||||
$lang['imglib_copy_failed'] = 'การคัดลอกภาพล้มเหลว';
|
||||
$lang['imglib_missing_font'] = 'ไม่พบแบบอัษร]ต้องการ';
|
||||
$lang['imglib_save_failed'] = 'ไม่สามารถบันทึกภาพได้กรุณาตรวจสอบภาพและไดเรกทอรี่ว่าสามารถเขียนได้หรือไม่';
|
||||
|
||||
@@ -24,7 +24,7 @@ $lang['imglib_libpath_invalid'] = '.آپکی تصویر کی لائبریری
|
||||
$lang['imglib_image_process_failed'] = '.تصوی کی پروسیسنگ میں ناکامی ہوگی. آپ اس بات کی تصدیق کریں کے آپکے سرور کو منتخب کردہ پروٹوکول کی حمایت حاصل ہے اور آپکی امیج لائبریری کا پاتھ درست ہے.';
|
||||
$lang['imglib_rotation_angle_required'] = '.تصویر کو گھومنے کیلئے زاویے کی ضرورت ہوتی ہے';
|
||||
$lang['imglib_invalid_path'] = '.تصویر کا پاتھ درست نہیں';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'فراہم کی تصویر درست نہیں ہے.';
|
||||
$lang['imglib_copy_failed'] = '.تصویر کو کاپی کرنے کی روٹین ناکام رہی';
|
||||
$lang['imglib_missing_font'] = '.استعمال کرنے کے لئے ایک فونٹ تلاش کرنے میں ناکامی ہی';
|
||||
$lang['imglib_save_failed'] = '.تصویر کو محفوظ کرنے میں ناکامی. گزارش ہے کہ اس بات کی تسدیک کرلیں کے تصویر اور فائل کی ڈائرکٹری پر لکھنا ممکن ہے';
|
||||
|
||||
@@ -23,7 +23,7 @@ $lang['imglib_libpath_invalid'] = 'Đường dẫn "image library" không chính
|
||||
$lang['imglib_image_process_failed'] = 'Xử lý hình ảnh thất bại. Bạn hãy kiểm tra lại máy chủ của bạn có hỗ trợ giao thức xử lý và đường dẫn "image library" là chính xác.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Thiếu gốc xoay (angle of rotation) để xoay hình.';
|
||||
$lang['imglib_invalid_path'] = 'Đường dẫn hình ảnh không chính xác.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_invalid_image'] = 'Các hình ảnh được cung cấp không hợp lệ.';
|
||||
$lang['imglib_copy_failed'] = 'Sao chép hình ảnh thất bại';
|
||||
$lang['imglib_missing_font'] = 'Không tìm thấy font.';
|
||||
$lang['imglib_save_failed'] = 'Không thể lưu hình ảnh. Bạn hãy chắc rằng đường dẫn đến thư mục chứ ảnh đúng và thư mục cho phép ghi.';
|
||||
|
||||
@@ -913,18 +913,13 @@ class CI_Email {
|
||||
/**
|
||||
* Get Mail Protocol
|
||||
*
|
||||
* @param bool
|
||||
* @return mixed
|
||||
*/
|
||||
protected function _get_protocol($return = TRUE)
|
||||
protected function _get_protocol()
|
||||
{
|
||||
$this->protocol = strtolower($this->protocol);
|
||||
in_array($this->protocol, $this->_protocols, TRUE) OR $this->protocol = 'mail';
|
||||
|
||||
if ($return === TRUE)
|
||||
{
|
||||
return $this->protocol;
|
||||
}
|
||||
return $this->protocol;
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------
|
||||
@@ -932,25 +927,21 @@ class CI_Email {
|
||||
/**
|
||||
* Get Mail Encoding
|
||||
*
|
||||
* @param bool
|
||||
* @return string
|
||||
*/
|
||||
protected function _get_encoding($return = TRUE)
|
||||
protected function _get_encoding()
|
||||
{
|
||||
in_array($this->_encoding, $this->_bit_depths) OR $this->_encoding = '8bit';
|
||||
|
||||
foreach ($this->_base_charsets as $charset)
|
||||
{
|
||||
if (strpos($charset, $this->charset) === 0)
|
||||
if (strpos($this->charset, $charset) === 0)
|
||||
{
|
||||
$this->_encoding = '7bit';
|
||||
}
|
||||
}
|
||||
|
||||
if ($return === TRUE)
|
||||
{
|
||||
return $this->_encoding;
|
||||
}
|
||||
return $this->_encoding;
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------
|
||||
@@ -1829,14 +1820,15 @@ class CI_Email {
|
||||
{
|
||||
$this->_unwrap_specials();
|
||||
|
||||
$method = '_send_with_'.$this->_get_protocol();
|
||||
$protocol = $this->_get_protocol();
|
||||
$method = '_send_with_'.$protocol;
|
||||
if ( ! $this->$method())
|
||||
{
|
||||
$this->_set_error_message('lang:email_send_failure_'.($this->_get_protocol() === 'mail' ? 'phpmail' : $this->_get_protocol()));
|
||||
$this->_set_error_message('lang:email_send_failure_'.($protocol === 'mail' ? 'phpmail' : $protocol));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
$this->_set_error_message('lang:email_sent', $this->_get_protocol());
|
||||
$this->_set_error_message('lang:email_sent', $protocol);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
@@ -1229,9 +1229,9 @@ class CI_Form_validation {
|
||||
*/
|
||||
public function valid_email($str)
|
||||
{
|
||||
if (function_exists('idn_to_ascii') && sscanf($str, '%[^@]@%s', $name, $domain) === 2)
|
||||
if (function_exists('idn_to_ascii') && preg_match('#\A([^@]+)@(.+)\z#', $str, $matches))
|
||||
{
|
||||
$str = $name.'@'.idn_to_ascii($domain);
|
||||
$str = $matches[1].'@'.idn_to_ascii($matches[2]);
|
||||
}
|
||||
|
||||
return (bool) filter_var($str, FILTER_VALIDATE_EMAIL);
|
||||
|
||||
@@ -51,7 +51,7 @@ class CI_Session_redis_driver extends CI_Session_driver implements SessionHandle
|
||||
/**
|
||||
* phpRedis instance
|
||||
*
|
||||
* @var resource
|
||||
* @var Redis
|
||||
*/
|
||||
protected $_redis;
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user