mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-02-01 21:21:08 -05:00
Merge branch 'master' into feature/receipt_config
This commit is contained in:
@@ -58,7 +58,7 @@ class Config extends Secure_area
|
||||
|
||||
if (!empty($upload_data['orig_name']))
|
||||
{
|
||||
$batch_save_data['company_logo'] = $upload_data['raw_name'];
|
||||
$batch_save_data['company_logo'] = $upload_data['raw_name'] . $upload_data['file_ext'];
|
||||
}
|
||||
|
||||
$result = $this->Appconfig->batch_save( $batch_save_data );
|
||||
|
||||
@@ -93,6 +93,12 @@ class Customers extends Person_controller
|
||||
}
|
||||
}
|
||||
|
||||
function check_account_number()
|
||||
{
|
||||
$exists = $this->Customer->account_number_exists($this->input->post('account_number'),$this->input->post('person_id'));
|
||||
echo json_encode(array('success'=>!$exists,'message'=>$this->lang->line('customers_account_number_duplicate')));
|
||||
}
|
||||
|
||||
/*
|
||||
This deletes customers from the customers table
|
||||
*/
|
||||
@@ -159,11 +165,18 @@ class Customers extends Person_controller
|
||||
);
|
||||
|
||||
$customer_data=array(
|
||||
'account_number'=>$data[12]=='' ? null:$data[12],
|
||||
'taxable'=>$data[13]=='' ? 0:1,
|
||||
'taxable'=>$data[13]=='' ? 0:1
|
||||
);
|
||||
|
||||
if(!$this->Customer->save($person_data,$customer_data))
|
||||
$account_number = $data[12];
|
||||
$invalidated = false;
|
||||
if ($account_number != "")
|
||||
{
|
||||
$customer_data['account_number'] = $account_number;
|
||||
$invalidated = $this->Customer->account_number_exists($account_number);
|
||||
}
|
||||
|
||||
if($invalidated || !$this->Customer->save($person_data,$customer_data))
|
||||
{
|
||||
$failCodes[] = $i;
|
||||
}
|
||||
@@ -179,7 +192,7 @@ class Customers extends Person_controller
|
||||
}
|
||||
|
||||
$success = true;
|
||||
if(count($failCodes) > 1)
|
||||
if(count($failCodes) > 0)
|
||||
{
|
||||
$msg = "Most customers imported. But some were not, here is list of their CODE (" .count($failCodes) ."): ".implode(", ", $failCodes);
|
||||
$success = false;
|
||||
|
||||
@@ -613,11 +613,12 @@ class Items extends Secure_area implements iData_controller
|
||||
'custom10' => $data[23] /** GARRISON ADDED 5/6/2013 **/
|
||||
);
|
||||
$item_number = $data[0];
|
||||
$invalidated = false;
|
||||
if ($item_number != "")
|
||||
{
|
||||
$item_data['item_number'] = $item_number;
|
||||
$invalidated = $this->Item->item_number_exists($item_number);
|
||||
}
|
||||
$invalidated = $this->Item->item_number_exists($item_number);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -663,7 +664,7 @@ class Items extends Secure_area implements iData_controller
|
||||
'location_id' => $location_id,
|
||||
'quantity' => $data[$col + 1],
|
||||
);
|
||||
$this->Item_quantities->save($item_quantity_data, $item_data['item_id'], $data[$col]);
|
||||
$this->Item_quantities->save($item_quantity_data, $item_data['item_id'], $location_id);
|
||||
|
||||
$excel_data = array (
|
||||
'trans_items'=>$item_data['item_id'],
|
||||
|
||||
90
application/core/MY_Lang.php
Normal file
90
application/core/MY_Lang.php
Normal file
@@ -0,0 +1,90 @@
|
||||
<?php (defined('BASEPATH')) OR exit('No direct script access allowed');
|
||||
|
||||
class MY_Lang extends CI_Lang
|
||||
{
|
||||
|
||||
function MY_Lang()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
function switch_to( $idiom )
|
||||
{
|
||||
$CI =& get_instance();
|
||||
if( is_string( $idiom ) )
|
||||
{
|
||||
$CI->config->set_item( 'language', $idiom );
|
||||
$loaded = $this->is_loaded;
|
||||
$this->is_loaded = array();
|
||||
|
||||
foreach($loaded as $file)
|
||||
{
|
||||
$this->load( str_replace( '_lang.php', '', $file ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a single line of text from the language array. Takes variable number
|
||||
* of arguments and supports wildcards in the form of '%1', '%2', etc.
|
||||
* Overloaded function.
|
||||
*
|
||||
* @access public
|
||||
* @return mixed false if not found or the language string
|
||||
*/
|
||||
function line($line = '')
|
||||
{
|
||||
//get the arguments passed to the function
|
||||
$args = func_get_args();
|
||||
|
||||
//count the number of arguments
|
||||
$c = count($args);
|
||||
|
||||
//if one or more arguments, perform the necessary processing
|
||||
if ($c)
|
||||
{
|
||||
//first argument should be the actual language line key
|
||||
//so remove it from the array (pop from front)
|
||||
$line = array_shift($args);
|
||||
|
||||
//check to make sure the key is valid and load the line
|
||||
if ($line == '')
|
||||
{
|
||||
$line = FALSE;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (isset($this->language[$line]))
|
||||
{
|
||||
$line = $this->language[$line];
|
||||
//if the line exists and more function arguments remain
|
||||
//perform wildcard replacements
|
||||
if ($args)
|
||||
{
|
||||
$i = 1;
|
||||
foreach ($args as $arg)
|
||||
{
|
||||
$line = preg_replace('/\%'.$i.'/', $arg, $line);
|
||||
$i++;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// just return label name (with TBD)
|
||||
$line = $line . ' (TBD)';
|
||||
log_message('error', 'Could not find the language line "'.$line.'"');
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
//if no arguments given, no language line available
|
||||
$line = false;
|
||||
}
|
||||
|
||||
return $line;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
@@ -14,16 +14,22 @@ function load_config()
|
||||
if ( $CI->config->item( 'language' ) )
|
||||
{
|
||||
$CI->config->set_item( 'language', $CI->config->item( 'language' ) );
|
||||
|
||||
$map = directory_map('./application/language/' . $CI->config->item( 'language' ));
|
||||
// fallback to english if language folder does not exist
|
||||
$language = $CI->config->item( 'language' );
|
||||
if (!file_exists('./application/language/' . $language))
|
||||
{
|
||||
$language = 'en';
|
||||
}
|
||||
|
||||
$map = directory_map('./application/language/' . $language);
|
||||
foreach($map as $file)
|
||||
{
|
||||
if ( substr(strrchr($file,'.'),1) == "php")
|
||||
{
|
||||
$CI->lang->load( str_replace( '_lang.php', '', $file ) );
|
||||
$CI->lang->load( str_replace( '_lang.php', '', $file ), $language);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//Set timezone from config database
|
||||
|
||||
@@ -14,3 +14,4 @@ $lang["customers_successful_deleted"] = "You have successfully deleted";
|
||||
$lang["customers_successful_updating"] = "You have successfully updated customer";
|
||||
$lang["customers_taxable"] = "Taxable";
|
||||
$lang["customers_update"] = "Update Customer";
|
||||
$lang["customers_account_number_duplicate"] = "This account number is already present in the database";
|
||||
|
||||
@@ -14,3 +14,4 @@ $lang["customers_successful_deleted"] = "Has borrado satisfactoriamente a";
|
||||
$lang["customers_successful_updating"] = "No se ha podido agregar el cliente";
|
||||
$lang["customers_taxable"] = "Gravable";
|
||||
$lang["customers_update"] = "Actualizar Cliente";
|
||||
$lang["customers_account_number_duplicate"] = "This account number is already present in the database";
|
||||
|
||||
@@ -14,3 +14,4 @@ $lang["customers_successful_deleted"] = "Suppréssion réussie";
|
||||
$lang["customers_successful_updating"] = "Édition client réussie";
|
||||
$lang["customers_taxable"] = "Imposable";
|
||||
$lang["customers_update"] = "Éditer Client";
|
||||
$lang["customers_account_number_duplicate"] = "This account number is already present in the database";
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
<?php
|
||||
|
||||
$lang["alpha_dash"] = "Le champ %s ne peut que contenir que des caractères alpha-numeriques, des barres(_), et des tirets(-).";
|
||||
$lang["alpha_numeric"] = "Le champ %s ne peut que contenir que des caractères alpha-numeriques.";
|
||||
$lang["exact_length"] = "Le champ %s doit etre long d'exactement %s caractères.";
|
||||
$lang["greater_than"] = "Le champ %s doit contenir un nombre supérieur à %s.";
|
||||
$lang["is_natural"] = "Le champ %s ne doit contenir que des nombres positifs.";
|
||||
$lang["is_natural_no_zero"] = "Le champ %s doit contenir un nombre supérier à zéro.";
|
||||
$lang["is_numeric"] = "Le champ %s ne doit contenir que des chiffres.";
|
||||
$lang["is_unique"] = "Le champ %s doit contenir une valeur unique.";
|
||||
$lang["less_than"] = "Le champ %s doit contenir un nombre inférieur à %s.";
|
||||
$lang["max_length"] = "Le champ %s ne doit pas etre plus long que %s caractères.";
|
||||
$lang["min_length"] = "Le champ %s doit etre long d'au moins %s caractères.";
|
||||
$lang["regex_match"] = "Le format du champ %s n'est pas correcte.";
|
||||
$lang["valid_email"] = "Le champ %s doit contenir une adresse mail valide.";
|
||||
$lang["valid_emails"] = "Le champ %s doit contenir toutes adresses mail valides.";
|
||||
$lang["valid_ip"] = "Le champ %s doit contenir une adresse IP.";
|
||||
$lang["valid_url"] = "Le champ %s doit contenir une URL valide..";
|
||||
@@ -14,3 +14,4 @@ $lang["customers_successful_deleted"] = "Anda telah berhasil menghapus pelanggan
|
||||
$lang["customers_successful_updating"] = "Anda telah berhasil memperbarui pelanggan";
|
||||
$lang["customers_taxable"] = "Dapat dikenakan pajak";
|
||||
$lang["customers_update"] = "Ubah Pelanggan";
|
||||
$lang["customers_account_number_duplicate"] = "This account number is already present in the database";
|
||||
|
||||
@@ -14,3 +14,4 @@ $lang["customers_successful_deleted"] = "Er werd(en)";
|
||||
$lang["customers_successful_updating"] = "Wijzigingen klantgegevens bewaard voor ";
|
||||
$lang["customers_taxable"] = "Belastbaar";
|
||||
$lang["customers_update"] = "Bewerk Klant";
|
||||
$lang["customers_account_number_duplicate"] = "Deze VAT nummer is reeds aanwezig in de database";
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
<?php
|
||||
|
||||
$lang["alpha_dash"] = "Het \\\\"%s\\\\" veld mag alleen letters, cijfers, underscores(_) en strepen(-) bevatten.";
|
||||
$lang["alpha_numeric"] = "Het \\\\"%s\\\\" veld mag alleen letters en cijfers bevatten.";
|
||||
$lang["exact_length"] = "Het \\\\"%s\\\\" veld moet precies %s tekens bevatten.";
|
||||
$lang["greater_than"] = "Het %s veld moet een getal zijn groter dan s.";
|
||||
$lang["is_natural"] = "Het \\\\"%s\\\\" veld mag alleen een getal bevatten dat niet kleiner is dan nul.";
|
||||
$lang["is_natural_no_zero"] = "Het \\\\"%s\\\\" veld moet een getal bevatten dat groter is dan nul.";
|
||||
$lang["is_numeric"] = "Het \\\\"%s\\\\" veld mag alleen een getal bevatten.";
|
||||
$lang["is_unique"] = "Het %s veld moet een unieke waarde bevatten.";
|
||||
$lang["less_than"] = "Het %s veld moet een getal zijn kleiner dan %s.";
|
||||
$lang["max_length"] = "Het \\\\"%s\\\\" veld mag niet meer dan %s tekens bevatten.";
|
||||
$lang["min_length"] = "Het \\\\"%s\\\\" veld moet tenminste %s tekens bevatten.";
|
||||
$lang["regex_match"] = "Het %s veld werd niet in het correcte formaat ingevuld.";
|
||||
$lang["valid_email"] = "Het \\\\"%s\\\\" veld moet een geldig e-mail adres bevatten.";
|
||||
$lang["valid_emails"] = "Het \\\\"%s\\\\" veld moet geldige e-mail adressen bevatten.";
|
||||
$lang["valid_ip"] = "Het \\\\"%s\\\\" veld moet een correct IP adres bevatten.";
|
||||
$lang["valid_url"] = "Het \\\\"%s\\\\" veld moet een correcte URL bevatten.";
|
||||
@@ -14,3 +14,4 @@ $lang["customers_successful_deleted"] = "Вы успешно удалили";
|
||||
$lang["customers_successful_updating"] = "Вы успешно обновили клиент";
|
||||
$lang["customers_taxable"] = "облагаемый";
|
||||
$lang["customers_update"] = "Обновлять Клиент";
|
||||
$lang["customers_account_number_duplicate"] = "This account number is already present in the database";
|
||||
|
||||
@@ -14,3 +14,4 @@ $lang["customers_successful_deleted"] = "คุณได้ทำการลบ
|
||||
$lang["customers_successful_updating"] = "คุณได้ทำการแก้ไขข้อมูลลูกค้าเรียบร้อยแล้ว";
|
||||
$lang["customers_taxable"] = "ต้องเสียภาษี";
|
||||
$lang["customers_update"] = "แก้ไขข้อมูลลูกค้า";
|
||||
$lang["customers_account_number_duplicate"] = "This account number is already present in the database";
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
<?php
|
||||
|
||||
$lang["alpha_dash"] = "";
|
||||
$lang["alpha_numeric"] = "";
|
||||
$lang["exact_length"] = "";
|
||||
$lang["greater_than"] = "";
|
||||
$lang["is_natural"] = "";
|
||||
$lang["is_natural_no_zero"] = "";
|
||||
$lang["is_numeric"] = "";
|
||||
$lang["is_unique"] = "";
|
||||
$lang["less_than"] = "";
|
||||
$lang["max_length"] = "";
|
||||
$lang["min_length"] = "";
|
||||
$lang["regex_match"] = "";
|
||||
$lang["valid_email"] = "";
|
||||
$lang["valid_emails"] = "";
|
||||
$lang["valid_ip"] = "";
|
||||
$lang["valid_url"] = "";
|
||||
@@ -14,3 +14,4 @@ $lang["customers_successful_deleted"] = "Silme başarılı";
|
||||
$lang["customers_successful_updating"] = "Müşteri güncellendi";
|
||||
$lang["customers_taxable"] = "Vergilendirilebilir";
|
||||
$lang["customers_update"] = "Müşteri Güncelle";
|
||||
$lang["customers_account_number_duplicate"] = "This account number is already present in the database";
|
||||
|
||||
@@ -14,3 +14,4 @@ $lang["customers_successful_deleted"] = "成功刪除";
|
||||
$lang["customers_successful_updating"] = "成功更新顧客";
|
||||
$lang["customers_taxable"] = "應課稅";
|
||||
$lang["customers_update"] = "更新客戶";
|
||||
$lang["customers_account_number_duplicate"] = "This account number is already present in the database";
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
class MY_Form_validation extends CI_Form_validation
|
||||
{
|
||||
function MY_Form_validation($rules = array())
|
||||
{
|
||||
parent::__construct($rules);
|
||||
}
|
||||
|
||||
function get_error_message()
|
||||
{
|
||||
return $this->error_string;
|
||||
}
|
||||
|
||||
function get_error_messages()
|
||||
{
|
||||
return $this->_error_array;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
@@ -1,26 +0,0 @@
|
||||
<?php
|
||||
class MY_Language extends Lang
|
||||
{
|
||||
function MY_Language()
|
||||
{
|
||||
parent::Lang();
|
||||
}
|
||||
|
||||
function switch_to( $idiom )
|
||||
{
|
||||
$CI =& get_instance();
|
||||
if( is_string( $idiom ) )
|
||||
{
|
||||
$CI->config->set_item( 'language', $idiom );
|
||||
$loaded = $this->is_loaded;
|
||||
$this->is_loaded = array();
|
||||
|
||||
foreach($loaded as $file)
|
||||
{
|
||||
$this->load( str_replace( '_lang.php', '', $file ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
@@ -14,6 +14,19 @@ class Customer extends Person
|
||||
return ($query->num_rows()==1);
|
||||
}
|
||||
|
||||
function account_number_exists($account_number,$person_id='')
|
||||
{
|
||||
$this->db->from('customers');
|
||||
$this->db->where('account_number', $account_number);
|
||||
if (!empty($person_id))
|
||||
{
|
||||
$this->db->where('person_id !=', $person_id);
|
||||
}
|
||||
$query=$this->db->get();
|
||||
return ($query->num_rows()==1);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
Returns all the customers
|
||||
*/
|
||||
|
||||
@@ -12,6 +12,7 @@ echo form_open('customers/save/'.$person_info->person_id,array('id'=>'customer_f
|
||||
<?php echo form_input(array(
|
||||
'name'=>'account_number',
|
||||
'id'=>'account_number',
|
||||
'class'=>'account_number',
|
||||
'value'=>$person_info->account_number)
|
||||
);?>
|
||||
</div>
|
||||
@@ -41,6 +42,24 @@ echo form_close();
|
||||
//validation and submit handling
|
||||
$(document).ready(function()
|
||||
{
|
||||
|
||||
$.validator.addMethod("account_number", function(value, element)
|
||||
{
|
||||
return JSON.parse($.ajax(
|
||||
{
|
||||
type: 'POST',
|
||||
url: '<?php echo site_url($controller_name . "/check_account_number")?>',
|
||||
data: {'person_id' : '<?php echo $person_info->person_id; ?>', 'account_number' : $(element).val() },
|
||||
success: function(response)
|
||||
{
|
||||
success=response.success;
|
||||
},
|
||||
async:false,
|
||||
dataType: 'json'
|
||||
}).responseText).success;
|
||||
|
||||
}, '<?php echo $this->lang->line("customers_account_number_duplicate"); ?>');
|
||||
|
||||
$('#customer_form').validate({
|
||||
submitHandler:function(form)
|
||||
{
|
||||
@@ -60,7 +79,8 @@ $(document).ready(function()
|
||||
{
|
||||
first_name: "required",
|
||||
last_name: "required",
|
||||
email: "email"
|
||||
email: "email",
|
||||
account_number: { account_number: true }
|
||||
},
|
||||
messages:
|
||||
{
|
||||
|
||||
@@ -47,9 +47,9 @@ if (isset($error_message))
|
||||
|
||||
<table id="receipt_items">
|
||||
<tr>
|
||||
<th style="width:40%;"><?php echo $this->lang->line('sales_item_name_short'); ?></th>
|
||||
<th style="width:20%;"><?php echo $this->lang->line('sales_taxed_price_short'); ?></th>
|
||||
<th style="width:20%;"><?php echo $this->lang->line('sales_quantity_short'); ?></th>
|
||||
<th style="width:40%;"><?php echo $this->lang->line('sales_description_abbrv'); ?></th>
|
||||
<th style="width:20%;"><?php echo $this->lang->line('sales_price'); ?></th>
|
||||
<th style="width:20%;"><?php echo $this->lang->line('sales_quantity'); ?></th>
|
||||
<th style="width:20%;text-align:right;"><?php echo $this->lang->line('sales_total'); ?></th>
|
||||
</tr>
|
||||
<?php
|
||||
@@ -64,7 +64,7 @@ if (isset($error_message))
|
||||
<td style='text-align:center;'><?php
|
||||
echo $item['quantity'] . " " . ($show_stock_locations ? " [" . $item['stock_name'] . "]" : "");
|
||||
?></td>
|
||||
<td><div class="total-value"><?php echo to_currency($item['taxed_total']); ?></td>
|
||||
<td><div class="total-value"><?php echo to_currency($item['total']); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" align="center"><?php echo $item['description']; ?></td>
|
||||
@@ -101,10 +101,11 @@ if (isset($error_message))
|
||||
|
||||
<?php
|
||||
$only_sale_check = TRUE;
|
||||
|
||||
$show_gifcard_remainder = FALSE;
|
||||
foreach($payments as $payment_id=>$payment)
|
||||
{
|
||||
$only_sale_check &= $payment[ SALE_PAYMENT_PAYMENT_TYPE ] == $this->lang->line('sales_check');
|
||||
$only_sale_check &= $payment[ 'payment_type' ] == $this->lang->line('sales_check');
|
||||
$show_gifcard_remainder &= $payment[ 'payment_type' ] == $this->lang->line('sales_giftcard');
|
||||
?>
|
||||
<tr>
|
||||
<td colspan="2" style="text-align:right;"><?php $splitpayment=explode(':',$payment['payment_type']); echo $splitpayment[0]; ?> </td>
|
||||
@@ -117,7 +118,7 @@ if (isset($error_message))
|
||||
<tr><td colspan="4"> </td></tr>
|
||||
|
||||
<?php
|
||||
if (isset($cur_giftcard_value))
|
||||
if (isset($cur_giftcard_value) && $show_gifcard_remainder)
|
||||
{
|
||||
?>
|
||||
<tr>
|
||||
|
||||
@@ -292,7 +292,7 @@ function update_row(row_id,url,callback)
|
||||
reinit_row(row_id);
|
||||
hightlight_row(row_id);
|
||||
callback && typeof(callback) == "function" && callback();
|
||||
});
|
||||
}, 'html');
|
||||
}
|
||||
|
||||
function reinit_row(checkbox_id)
|
||||
|
||||
24
system/language/es/email_lang.php
Normal file
24
system/language/es/email_lang.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
$lang['email_must_be_array'] = "The email validation method must be passed an array.";
|
||||
$lang['email_invalid_address'] = "Invalid email address: %s";
|
||||
$lang['email_attachment_missing'] = "Unable to locate the following email attachment: %s";
|
||||
$lang['email_attachment_unreadable'] = "Unable to open this attachment: %s";
|
||||
$lang['email_no_recipients'] = "You must include recipients: To, Cc, or Bcc";
|
||||
$lang['email_send_failure_phpmail'] = "Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_sendmail'] = "Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_smtp'] = "Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_sent'] = "Your message has been successfully sent using the following protocol: %s";
|
||||
$lang['email_no_socket'] = "Unable to open a socket to Sendmail. Please check settings.";
|
||||
$lang['email_no_hostname'] = "You did not specify a SMTP hostname.";
|
||||
$lang['email_smtp_error'] = "The following SMTP error was encountered: %s";
|
||||
$lang['email_no_smtp_unpw'] = "Error: You must assign a SMTP username and password.";
|
||||
$lang['email_failed_smtp_login'] = "Failed to send AUTH LOGIN command. Error: %s";
|
||||
$lang['email_smtp_auth_un'] = "Failed to authenticate username. Error: %s";
|
||||
$lang['email_smtp_auth_pw'] = "Failed to authenticate password. Error: %s";
|
||||
$lang['email_smtp_data_failure'] = "Unable to send data: %s";
|
||||
$lang['email_exit_status'] = "Exit status code: %s";
|
||||
|
||||
|
||||
/* End of file email_lang.php */
|
||||
/* Location: ./system/language/english/email_lang.php */
|
||||
22
system/language/es/upload_lang.php
Normal file
22
system/language/es/upload_lang.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
$lang['upload_userfile_not_set'] = "Unable to find a post variable called userfile.";
|
||||
$lang['upload_file_exceeds_limit'] = "The uploaded file exceeds the maximum allowed size in your PHP configuration file.";
|
||||
$lang['upload_file_exceeds_form_limit'] = "The uploaded file exceeds the maximum size allowed by the submission form.";
|
||||
$lang['upload_file_partial'] = "The file was only partially uploaded.";
|
||||
$lang['upload_no_temp_directory'] = "The temporary folder is missing.";
|
||||
$lang['upload_unable_to_write_file'] = "The file could not be written to disk.";
|
||||
$lang['upload_stopped_by_extension'] = "The file upload was stopped by extension.";
|
||||
$lang['upload_no_file_selected'] = "You did not select a file to upload.";
|
||||
$lang['upload_invalid_filetype'] = "The filetype you are attempting to upload is not allowed.";
|
||||
$lang['upload_invalid_filesize'] = "The file you are attempting to upload is larger than the permitted size.";
|
||||
$lang['upload_invalid_dimensions'] = "The image you are attempting to upload exceeds the maximum height or width.";
|
||||
$lang['upload_destination_error'] = "A problem was encountered while attempting to move the uploaded file to the final destination.";
|
||||
$lang['upload_no_filepath'] = "The upload path does not appear to be valid.";
|
||||
$lang['upload_no_file_types'] = "You have not specified any allowed file types.";
|
||||
$lang['upload_bad_filename'] = "The file name you submitted already exists on the server.";
|
||||
$lang['upload_not_writable'] = "The upload destination folder does not appear to be writable.";
|
||||
|
||||
|
||||
/* End of file upload_lang.php */
|
||||
/* Location: ./system/language/english/upload_lang.php */
|
||||
24
system/language/id/email_lang.php
Normal file
24
system/language/id/email_lang.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
$lang['email_must_be_array'] = "The email validation method must be passed an array.";
|
||||
$lang['email_invalid_address'] = "Invalid email address: %s";
|
||||
$lang['email_attachment_missing'] = "Unable to locate the following email attachment: %s";
|
||||
$lang['email_attachment_unreadable'] = "Unable to open this attachment: %s";
|
||||
$lang['email_no_recipients'] = "You must include recipients: To, Cc, or Bcc";
|
||||
$lang['email_send_failure_phpmail'] = "Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_sendmail'] = "Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_smtp'] = "Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_sent'] = "Your message has been successfully sent using the following protocol: %s";
|
||||
$lang['email_no_socket'] = "Unable to open a socket to Sendmail. Please check settings.";
|
||||
$lang['email_no_hostname'] = "You did not specify a SMTP hostname.";
|
||||
$lang['email_smtp_error'] = "The following SMTP error was encountered: %s";
|
||||
$lang['email_no_smtp_unpw'] = "Error: You must assign a SMTP username and password.";
|
||||
$lang['email_failed_smtp_login'] = "Failed to send AUTH LOGIN command. Error: %s";
|
||||
$lang['email_smtp_auth_un'] = "Failed to authenticate username. Error: %s";
|
||||
$lang['email_smtp_auth_pw'] = "Failed to authenticate password. Error: %s";
|
||||
$lang['email_smtp_data_failure'] = "Unable to send data: %s";
|
||||
$lang['email_exit_status'] = "Exit status code: %s";
|
||||
|
||||
|
||||
/* End of file email_lang.php */
|
||||
/* Location: ./system/language/english/email_lang.php */
|
||||
22
system/language/id/upload_lang.php
Normal file
22
system/language/id/upload_lang.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
$lang['upload_userfile_not_set'] = "Unable to find a post variable called userfile.";
|
||||
$lang['upload_file_exceeds_limit'] = "The uploaded file exceeds the maximum allowed size in your PHP configuration file.";
|
||||
$lang['upload_file_exceeds_form_limit'] = "The uploaded file exceeds the maximum size allowed by the submission form.";
|
||||
$lang['upload_file_partial'] = "The file was only partially uploaded.";
|
||||
$lang['upload_no_temp_directory'] = "The temporary folder is missing.";
|
||||
$lang['upload_unable_to_write_file'] = "The file could not be written to disk.";
|
||||
$lang['upload_stopped_by_extension'] = "The file upload was stopped by extension.";
|
||||
$lang['upload_no_file_selected'] = "You did not select a file to upload.";
|
||||
$lang['upload_invalid_filetype'] = "The filetype you are attempting to upload is not allowed.";
|
||||
$lang['upload_invalid_filesize'] = "The file you are attempting to upload is larger than the permitted size.";
|
||||
$lang['upload_invalid_dimensions'] = "The image you are attempting to upload exceeds the maximum height or width.";
|
||||
$lang['upload_destination_error'] = "A problem was encountered while attempting to move the uploaded file to the final destination.";
|
||||
$lang['upload_no_filepath'] = "The upload path does not appear to be valid.";
|
||||
$lang['upload_no_file_types'] = "You have not specified any allowed file types.";
|
||||
$lang['upload_bad_filename'] = "The file name you submitted already exists on the server.";
|
||||
$lang['upload_not_writable'] = "The upload destination folder does not appear to be writable.";
|
||||
|
||||
|
||||
/* End of file upload_lang.php */
|
||||
/* Location: ./system/language/english/upload_lang.php */
|
||||
@@ -1,10 +1,24 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
<?php
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
$lang['email_must_be_array'] = "The email validation method must be passed an array.";
|
||||
$lang['email_invalid_address'] = "Invalid email address: %s";
|
||||
$lang['email_attachment_missing'] = "Unable to locate the following email attachment: %s";
|
||||
$lang['email_attachment_unreadable'] = "Unable to open this attachment: %s";
|
||||
$lang['email_no_recipients'] = "You must include recipients: To, Cc, or Bcc";
|
||||
$lang['email_send_failure_phpmail'] = "Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_sendmail'] = "Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_smtp'] = "Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_sent'] = "Your message has been successfully sent using the following protocol: %s";
|
||||
$lang['email_no_socket'] = "Unable to open a socket to Sendmail. Please check settings.";
|
||||
$lang['email_no_hostname'] = "You did not specify a SMTP hostname.";
|
||||
$lang['email_smtp_error'] = "The following SMTP error was encountered: %s";
|
||||
$lang['email_no_smtp_unpw'] = "Error: You must assign a SMTP username and password.";
|
||||
$lang['email_failed_smtp_login'] = "Failed to send AUTH LOGIN command. Error: %s";
|
||||
$lang['email_smtp_auth_un'] = "Failed to authenticate username. Error: %s";
|
||||
$lang['email_smtp_auth_pw'] = "Failed to authenticate password. Error: %s";
|
||||
$lang['email_smtp_data_failure'] = "Unable to send data: %s";
|
||||
$lang['email_exit_status'] = "Exit status code: %s";
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
/* End of file email_lang.php */
|
||||
/* Location: ./system/language/english/email_lang.php */
|
||||
24
system/language/ru/email_lang.php
Normal file
24
system/language/ru/email_lang.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
$lang['email_must_be_array'] = "The email validation method must be passed an array.";
|
||||
$lang['email_invalid_address'] = "Invalid email address: %s";
|
||||
$lang['email_attachment_missing'] = "Unable to locate the following email attachment: %s";
|
||||
$lang['email_attachment_unreadable'] = "Unable to open this attachment: %s";
|
||||
$lang['email_no_recipients'] = "You must include recipients: To, Cc, or Bcc";
|
||||
$lang['email_send_failure_phpmail'] = "Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_sendmail'] = "Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_smtp'] = "Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_sent'] = "Your message has been successfully sent using the following protocol: %s";
|
||||
$lang['email_no_socket'] = "Unable to open a socket to Sendmail. Please check settings.";
|
||||
$lang['email_no_hostname'] = "You did not specify a SMTP hostname.";
|
||||
$lang['email_smtp_error'] = "The following SMTP error was encountered: %s";
|
||||
$lang['email_no_smtp_unpw'] = "Error: You must assign a SMTP username and password.";
|
||||
$lang['email_failed_smtp_login'] = "Failed to send AUTH LOGIN command. Error: %s";
|
||||
$lang['email_smtp_auth_un'] = "Failed to authenticate username. Error: %s";
|
||||
$lang['email_smtp_auth_pw'] = "Failed to authenticate password. Error: %s";
|
||||
$lang['email_smtp_data_failure'] = "Unable to send data: %s";
|
||||
$lang['email_exit_status'] = "Exit status code: %s";
|
||||
|
||||
|
||||
/* End of file email_lang.php */
|
||||
/* Location: ./system/language/english/email_lang.php */
|
||||
22
system/language/ru/upload_lang.php
Normal file
22
system/language/ru/upload_lang.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
$lang['upload_userfile_not_set'] = "Unable to find a post variable called userfile.";
|
||||
$lang['upload_file_exceeds_limit'] = "The uploaded file exceeds the maximum allowed size in your PHP configuration file.";
|
||||
$lang['upload_file_exceeds_form_limit'] = "The uploaded file exceeds the maximum size allowed by the submission form.";
|
||||
$lang['upload_file_partial'] = "The file was only partially uploaded.";
|
||||
$lang['upload_no_temp_directory'] = "The temporary folder is missing.";
|
||||
$lang['upload_unable_to_write_file'] = "The file could not be written to disk.";
|
||||
$lang['upload_stopped_by_extension'] = "The file upload was stopped by extension.";
|
||||
$lang['upload_no_file_selected'] = "You did not select a file to upload.";
|
||||
$lang['upload_invalid_filetype'] = "The filetype you are attempting to upload is not allowed.";
|
||||
$lang['upload_invalid_filesize'] = "The file you are attempting to upload is larger than the permitted size.";
|
||||
$lang['upload_invalid_dimensions'] = "The image you are attempting to upload exceeds the maximum height or width.";
|
||||
$lang['upload_destination_error'] = "A problem was encountered while attempting to move the uploaded file to the final destination.";
|
||||
$lang['upload_no_filepath'] = "The upload path does not appear to be valid.";
|
||||
$lang['upload_no_file_types'] = "You have not specified any allowed file types.";
|
||||
$lang['upload_bad_filename'] = "The file name you submitted already exists on the server.";
|
||||
$lang['upload_not_writable'] = "The upload destination folder does not appear to be writable.";
|
||||
|
||||
|
||||
/* End of file upload_lang.php */
|
||||
/* Location: ./system/language/english/upload_lang.php */
|
||||
24
system/language/th/email_lang.php
Normal file
24
system/language/th/email_lang.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
$lang['email_must_be_array'] = "The email validation method must be passed an array.";
|
||||
$lang['email_invalid_address'] = "Invalid email address: %s";
|
||||
$lang['email_attachment_missing'] = "Unable to locate the following email attachment: %s";
|
||||
$lang['email_attachment_unreadable'] = "Unable to open this attachment: %s";
|
||||
$lang['email_no_recipients'] = "You must include recipients: To, Cc, or Bcc";
|
||||
$lang['email_send_failure_phpmail'] = "Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_sendmail'] = "Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_smtp'] = "Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_sent'] = "Your message has been successfully sent using the following protocol: %s";
|
||||
$lang['email_no_socket'] = "Unable to open a socket to Sendmail. Please check settings.";
|
||||
$lang['email_no_hostname'] = "You did not specify a SMTP hostname.";
|
||||
$lang['email_smtp_error'] = "The following SMTP error was encountered: %s";
|
||||
$lang['email_no_smtp_unpw'] = "Error: You must assign a SMTP username and password.";
|
||||
$lang['email_failed_smtp_login'] = "Failed to send AUTH LOGIN command. Error: %s";
|
||||
$lang['email_smtp_auth_un'] = "Failed to authenticate username. Error: %s";
|
||||
$lang['email_smtp_auth_pw'] = "Failed to authenticate password. Error: %s";
|
||||
$lang['email_smtp_data_failure'] = "Unable to send data: %s";
|
||||
$lang['email_exit_status'] = "Exit status code: %s";
|
||||
|
||||
|
||||
/* End of file email_lang.php */
|
||||
/* Location: ./system/language/english/email_lang.php */
|
||||
22
system/language/th/upload_lang.php
Normal file
22
system/language/th/upload_lang.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
$lang['upload_userfile_not_set'] = "Unable to find a post variable called userfile.";
|
||||
$lang['upload_file_exceeds_limit'] = "The uploaded file exceeds the maximum allowed size in your PHP configuration file.";
|
||||
$lang['upload_file_exceeds_form_limit'] = "The uploaded file exceeds the maximum size allowed by the submission form.";
|
||||
$lang['upload_file_partial'] = "The file was only partially uploaded.";
|
||||
$lang['upload_no_temp_directory'] = "The temporary folder is missing.";
|
||||
$lang['upload_unable_to_write_file'] = "The file could not be written to disk.";
|
||||
$lang['upload_stopped_by_extension'] = "The file upload was stopped by extension.";
|
||||
$lang['upload_no_file_selected'] = "You did not select a file to upload.";
|
||||
$lang['upload_invalid_filetype'] = "The filetype you are attempting to upload is not allowed.";
|
||||
$lang['upload_invalid_filesize'] = "The file you are attempting to upload is larger than the permitted size.";
|
||||
$lang['upload_invalid_dimensions'] = "The image you are attempting to upload exceeds the maximum height or width.";
|
||||
$lang['upload_destination_error'] = "A problem was encountered while attempting to move the uploaded file to the final destination.";
|
||||
$lang['upload_no_filepath'] = "The upload path does not appear to be valid.";
|
||||
$lang['upload_no_file_types'] = "You have not specified any allowed file types.";
|
||||
$lang['upload_bad_filename'] = "The file name you submitted already exists on the server.";
|
||||
$lang['upload_not_writable'] = "The upload destination folder does not appear to be writable.";
|
||||
|
||||
|
||||
/* End of file upload_lang.php */
|
||||
/* Location: ./system/language/english/upload_lang.php */
|
||||
24
system/language/tr/email_lang.php
Normal file
24
system/language/tr/email_lang.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
$lang['email_must_be_array'] = "The email validation method must be passed an array.";
|
||||
$lang['email_invalid_address'] = "Invalid email address: %s";
|
||||
$lang['email_attachment_missing'] = "Unable to locate the following email attachment: %s";
|
||||
$lang['email_attachment_unreadable'] = "Unable to open this attachment: %s";
|
||||
$lang['email_no_recipients'] = "You must include recipients: To, Cc, or Bcc";
|
||||
$lang['email_send_failure_phpmail'] = "Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_sendmail'] = "Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_smtp'] = "Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_sent'] = "Your message has been successfully sent using the following protocol: %s";
|
||||
$lang['email_no_socket'] = "Unable to open a socket to Sendmail. Please check settings.";
|
||||
$lang['email_no_hostname'] = "You did not specify a SMTP hostname.";
|
||||
$lang['email_smtp_error'] = "The following SMTP error was encountered: %s";
|
||||
$lang['email_no_smtp_unpw'] = "Error: You must assign a SMTP username and password.";
|
||||
$lang['email_failed_smtp_login'] = "Failed to send AUTH LOGIN command. Error: %s";
|
||||
$lang['email_smtp_auth_un'] = "Failed to authenticate username. Error: %s";
|
||||
$lang['email_smtp_auth_pw'] = "Failed to authenticate password. Error: %s";
|
||||
$lang['email_smtp_data_failure'] = "Unable to send data: %s";
|
||||
$lang['email_exit_status'] = "Exit status code: %s";
|
||||
|
||||
|
||||
/* End of file email_lang.php */
|
||||
/* Location: ./system/language/english/email_lang.php */
|
||||
22
system/language/tr/upload_lang.php
Normal file
22
system/language/tr/upload_lang.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
$lang['upload_userfile_not_set'] = "Unable to find a post variable called userfile.";
|
||||
$lang['upload_file_exceeds_limit'] = "The uploaded file exceeds the maximum allowed size in your PHP configuration file.";
|
||||
$lang['upload_file_exceeds_form_limit'] = "The uploaded file exceeds the maximum size allowed by the submission form.";
|
||||
$lang['upload_file_partial'] = "The file was only partially uploaded.";
|
||||
$lang['upload_no_temp_directory'] = "The temporary folder is missing.";
|
||||
$lang['upload_unable_to_write_file'] = "The file could not be written to disk.";
|
||||
$lang['upload_stopped_by_extension'] = "The file upload was stopped by extension.";
|
||||
$lang['upload_no_file_selected'] = "You did not select a file to upload.";
|
||||
$lang['upload_invalid_filetype'] = "The filetype you are attempting to upload is not allowed.";
|
||||
$lang['upload_invalid_filesize'] = "The file you are attempting to upload is larger than the permitted size.";
|
||||
$lang['upload_invalid_dimensions'] = "The image you are attempting to upload exceeds the maximum height or width.";
|
||||
$lang['upload_destination_error'] = "A problem was encountered while attempting to move the uploaded file to the final destination.";
|
||||
$lang['upload_no_filepath'] = "The upload path does not appear to be valid.";
|
||||
$lang['upload_no_file_types'] = "You have not specified any allowed file types.";
|
||||
$lang['upload_bad_filename'] = "The file name you submitted already exists on the server.";
|
||||
$lang['upload_not_writable'] = "The upload destination folder does not appear to be writable.";
|
||||
|
||||
|
||||
/* End of file upload_lang.php */
|
||||
/* Location: ./system/language/english/upload_lang.php */
|
||||
24
system/language/zh/email_lang.php
Normal file
24
system/language/zh/email_lang.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
$lang['email_must_be_array'] = "The email validation method must be passed an array.";
|
||||
$lang['email_invalid_address'] = "Invalid email address: %s";
|
||||
$lang['email_attachment_missing'] = "Unable to locate the following email attachment: %s";
|
||||
$lang['email_attachment_unreadable'] = "Unable to open this attachment: %s";
|
||||
$lang['email_no_recipients'] = "You must include recipients: To, Cc, or Bcc";
|
||||
$lang['email_send_failure_phpmail'] = "Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_sendmail'] = "Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_send_failure_smtp'] = "Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.";
|
||||
$lang['email_sent'] = "Your message has been successfully sent using the following protocol: %s";
|
||||
$lang['email_no_socket'] = "Unable to open a socket to Sendmail. Please check settings.";
|
||||
$lang['email_no_hostname'] = "You did not specify a SMTP hostname.";
|
||||
$lang['email_smtp_error'] = "The following SMTP error was encountered: %s";
|
||||
$lang['email_no_smtp_unpw'] = "Error: You must assign a SMTP username and password.";
|
||||
$lang['email_failed_smtp_login'] = "Failed to send AUTH LOGIN command. Error: %s";
|
||||
$lang['email_smtp_auth_un'] = "Failed to authenticate username. Error: %s";
|
||||
$lang['email_smtp_auth_pw'] = "Failed to authenticate password. Error: %s";
|
||||
$lang['email_smtp_data_failure'] = "Unable to send data: %s";
|
||||
$lang['email_exit_status'] = "Exit status code: %s";
|
||||
|
||||
|
||||
/* End of file email_lang.php */
|
||||
/* Location: ./system/language/english/email_lang.php */
|
||||
22
system/language/zh/upload_lang.php
Normal file
22
system/language/zh/upload_lang.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
$lang['upload_userfile_not_set'] = "Unable to find a post variable called userfile.";
|
||||
$lang['upload_file_exceeds_limit'] = "The uploaded file exceeds the maximum allowed size in your PHP configuration file.";
|
||||
$lang['upload_file_exceeds_form_limit'] = "The uploaded file exceeds the maximum size allowed by the submission form.";
|
||||
$lang['upload_file_partial'] = "The file was only partially uploaded.";
|
||||
$lang['upload_no_temp_directory'] = "The temporary folder is missing.";
|
||||
$lang['upload_unable_to_write_file'] = "The file could not be written to disk.";
|
||||
$lang['upload_stopped_by_extension'] = "The file upload was stopped by extension.";
|
||||
$lang['upload_no_file_selected'] = "You did not select a file to upload.";
|
||||
$lang['upload_invalid_filetype'] = "The filetype you are attempting to upload is not allowed.";
|
||||
$lang['upload_invalid_filesize'] = "The file you are attempting to upload is larger than the permitted size.";
|
||||
$lang['upload_invalid_dimensions'] = "The image you are attempting to upload exceeds the maximum height or width.";
|
||||
$lang['upload_destination_error'] = "A problem was encountered while attempting to move the uploaded file to the final destination.";
|
||||
$lang['upload_no_filepath'] = "The upload path does not appear to be valid.";
|
||||
$lang['upload_no_file_types'] = "You have not specified any allowed file types.";
|
||||
$lang['upload_bad_filename'] = "The file name you submitted already exists on the server.";
|
||||
$lang['upload_not_writable'] = "The upload destination folder does not appear to be writable.";
|
||||
|
||||
|
||||
/* End of file upload_lang.php */
|
||||
/* Location: ./system/language/english/upload_lang.php */
|
||||
@@ -1,15 +1,16 @@
|
||||
"label","nl-BE","es","en","fr","zh","ru","th","tr","id"
|
||||
"customers_account_number","Btwnummer","Cuenta #","Account #","# Compte","帳號 #","Номер счота","บัญชี #","Hesap No","No.Pelanggan"
|
||||
"customers_basic_information","Klantgegevens","Información de Clientes","Customer Information","Informations Client","客戶資訊","Информация о клиенте","ข้อมูลลูกค้า","Müşteri bilgisi","Informasi Pelanggan"
|
||||
"customers_cannot_be_deleted","De geselecteerde klanten konden niet worden verwijderd. Eén of meerdere klanten hebben verkoopsgegevens in de database zitten.","No se pudo borrar los clientes seleccionados. Uno o más de éstos tiene ventas.","Could not deleted selected customers, one or more of the selected customers has sales.","Impossible de supprimer. Un ou plusiers client(s) sélectionné(s) ont des ventes.","無法刪除選定的客戶,選定的客戶存有銷售紀錄。","Невозможно удалить выбранных клиентов, один или более из них имеет продаж.","ไม่สามารลบลูกค้าที่ถูกเลือก, ลูกค้าที่ถูกเลือกถูขายไปแล้ว.","Seçili müşteriler silinemedi, müşterilerin satışları var.","pelanggan terpilih tidak bisa dihapus; satu atau lebih dari pelanggan yang dipilih memiliki penjualan."
|
||||
"customers_confirm_delete","Bent u zeker dat u de geselecteerde klanten wil verwijderen?","¿Estás seguro(a) de que quieres borrar a los clientes seleccionados?","Are you sure you want to delete the selected customers?","Etes vous sûr(e) de vouloir supprimer ces clients?","你確定要刪除選定的客戶?","Вы уверены, что хотите удалить выбранных клиентов?","ยืนยันลบข้อมูลลูกค้า?","Seçili müşteriyi silmek istediğinize emin misiniz?","Apakah Anda yakin ingin menghapus pelanggan yang dipilih?"
|
||||
"customers_customer","Klant","Cliente","Customer","Client","客戶","Клиент","ลูกค้า","Müşteri","Pelanggan"
|
||||
"customers_error_adding_updating","Fout bij het toevoegen/bewerken van een klant","Error agregando/actualizando cliente","Error adding/updating customer","Érreur lors de l\'ajout/suppression de client","添加/更新客戶錯誤","Ошибка при добавлении/обновлении клиента","แก้ไขข้อมูลลูกค้าผิดพลาด","Müşteri ekleme/güncelleme hatası","Menambah / Memperbarui Pelanggan Salah"
|
||||
"customers_new","Nieuwe Klant","Nuevo Cliente","New Customer","Nouveau Client","新客戶","Новый Клиент","ลูกค้าใหม่","Yeni Müşteri","Pelanggan Baru"
|
||||
"customers_none_selected","U hebt geen klanten geselecteerd","No has selccionado clientes para ser borrados","You have not selected any customers to delete","Vous n\\\'avez pas sélectionné de client à supprimer","您還沒有選擇任何客戶進行刪除","Вы не выбрали ни клиентов, чтобы удалить.","คุณยังไม่ได้ทำการเลือกลูกค้า","Silmek için müşteri seçmediniz","Anda belum memilih pelanggan untuk dihapus"
|
||||
"customers_one_or_multiple","klant(en) verwijderd","cliente(s)","customer(s)","client(s)","客戶","клиент(ов)","ลูกค้า","müşteri","pelanggan"
|
||||
"customers_successful_adding","Klant succesvol aangemaakt","Has agregado satisfactoriamente el cliente","You have successfully added customer","Vous avez ajouté un nouveau client","成功新增顧客","Вы успешно добавили клиентов","คุณได้ทำการเพิ่มลูกค้าเรียบร้อยแล้ว","Müşteri eklendi","Anda telah berhasil menambah pelanggan"
|
||||
"customers_successful_deleted","Er werd(en)","Has borrado satisfactoriamente a","You have successfully deleted","Suppréssion réussie","成功刪除","Вы успешно удалили","คุณได้ทำการลบข้อมูลเรียบร้อยแล้ว","Silme başarılı","Anda telah berhasil menghapus pelanggan"
|
||||
"customers_successful_updating","Wijzigingen klantgegevens bewaard voor ","No se ha podido agregar el cliente","You have successfully updated customer","Édition client réussie","成功更新顧客","Вы успешно обновили клиент","คุณได้ทำการแก้ไขข้อมูลลูกค้าเรียบร้อยแล้ว","Müşteri güncellendi","Anda telah berhasil memperbarui pelanggan"
|
||||
"customers_taxable","Belastbaar","Gravable","Taxable","Imposable","應課稅","облагаемый","ต้องเสียภาษี","Vergilendirilebilir","Dapat dikenakan pajak"
|
||||
"customers_update","Bewerk Klant","Actualizar Cliente","Update Customer","Éditer Client","更新客戶","Обновлять Клиент","แก้ไขข้อมูลลูกค้า","Müşteri Güncelle","Ubah Pelanggan"
|
||||
label,nl-BE,es,en,fr,zh,ru,th,tr,id
|
||||
customers_account_number,Btwnummer,Cuenta #,Account #,# Compte,帳號 #,Номер счота,บัญชี #,Hesap No,No.Pelanggan
|
||||
customers_basic_information,Klantgegevens,Información de Clientes,Customer Information,Informations Client,客戶資訊,Информация о клиенте,ข้อมูลลูกค้า,Müşteri bilgisi,Informasi Pelanggan
|
||||
customers_cannot_be_deleted,De geselecteerde klanten konden niet worden verwijderd. Eén of meerdere klanten hebben verkoopsgegevens in de database zitten.,No se pudo borrar los clientes seleccionados. Uno o más de éstos tiene ventas.,"Could not deleted selected customers, one or more of the selected customers has sales.",Impossible de supprimer. Un ou plusiers client(s) sélectionné(s) ont des ventes.,無法刪除選定的客戶,選定的客戶存有銷售紀錄。,"Невозможно удалить выбранных клиентов, один или более из них имеет продаж.","ไม่สามารลบลูกค้าที่ถูกเลือก, ลูกค้าที่ถูกเลือกถูขายไปแล้ว.","Seçili müşteriler silinemedi, müşterilerin satışları var.",pelanggan terpilih tidak bisa dihapus; satu atau lebih dari pelanggan yang dipilih memiliki penjualan.
|
||||
customers_confirm_delete,Bent u zeker dat u de geselecteerde klanten wil verwijderen?,¿Estás seguro(a) de que quieres borrar a los clientes seleccionados?,Are you sure you want to delete the selected customers?,Etes vous sûr(e) de vouloir supprimer ces clients?,你確定要刪除選定的客戶?,"Вы уверены, что хотите удалить выбранных клиентов?",ยืนยันลบข้อมูลลูกค้า?,Seçili müşteriyi silmek istediğinize emin misiniz?,Apakah Anda yakin ingin menghapus pelanggan yang dipilih?
|
||||
customers_customer,Klant,Cliente,Customer,Client,客戶,Клиент,ลูกค้า,Müşteri,Pelanggan
|
||||
customers_error_adding_updating,Fout bij het toevoegen/bewerken van een klant,Error agregando/actualizando cliente,Error adding/updating customer,Érreur lors de l\'ajout/suppression de client,添加/更新客戶錯誤,Ошибка при добавлении/обновлении клиента,แก้ไขข้อมูลลูกค้าผิดพลาด,Müşteri ekleme/güncelleme hatası,Menambah / Memperbarui Pelanggan Salah
|
||||
customers_new,Nieuwe Klant,Nuevo Cliente,New Customer,Nouveau Client,新客戶,Новый Клиент,ลูกค้าใหม่,Yeni Müşteri,Pelanggan Baru
|
||||
customers_none_selected,U hebt geen klanten geselecteerd,No has selccionado clientes para ser borrados,You have not selected any customers to delete,Vous n\\\'avez pas sélectionné de client à supprimer,您還沒有選擇任何客戶進行刪除,"Вы не выбрали ни клиентов, чтобы удалить.",คุณยังไม่ได้ทำการเลือกลูกค้า,Silmek için müşteri seçmediniz,Anda belum memilih pelanggan untuk dihapus
|
||||
customers_one_or_multiple,klant(en) verwijderd,cliente(s),customer(s),client(s),客戶,клиент(ов),ลูกค้า,müşteri,pelanggan
|
||||
customers_successful_adding,Klant succesvol aangemaakt,Has agregado satisfactoriamente el cliente,You have successfully added customer,Vous avez ajouté un nouveau client,成功新增顧客,Вы успешно добавили клиентов,คุณได้ทำการเพิ่มลูกค้าเรียบร้อยแล้ว,Müşteri eklendi,Anda telah berhasil menambah pelanggan
|
||||
customers_successful_deleted,Er werd(en),Has borrado satisfactoriamente a,You have successfully deleted,Suppréssion réussie,成功刪除,Вы успешно удалили,คุณได้ทำการลบข้อมูลเรียบร้อยแล้ว,Silme başarılı,Anda telah berhasil menghapus pelanggan
|
||||
customers_successful_updating,Wijzigingen klantgegevens bewaard voor ,No se ha podido agregar el cliente,You have successfully updated customer,Édition client réussie,成功更新顧客,Вы успешно обновили клиент,คุณได้ทำการแก้ไขข้อมูลลูกค้าเรียบร้อยแล้ว,Müşteri güncellendi,Anda telah berhasil memperbarui pelanggan
|
||||
customers_taxable,Belastbaar,Gravable,Taxable,Imposable,應課稅,облагаемый,ต้องเสียภาษี,Vergilendirilebilir,Dapat dikenakan pajak
|
||||
customers_update,Bewerk Klant,Actualizar Cliente,Update Customer,Éditer Client,更新客戶,Обновлять Клиент,แก้ไขข้อมูลลูกค้า,Müşteri Güncelle,Ubah Pelanggan
|
||||
customers_account_number_duplicate,Deze VAT nummer is reeds aanwezig in de database,This account number is already present in the database,This account number is already present in the database,This account number is already present in the database,This account number is already present in the database,This account number is already present in the database,This account number is already present in the database,This account number is already present in the database,This account number is already present in the database
|
||||
|
||||
|
Reference in New Issue
Block a user