Add functionality to keep item edit form open for easier working (in

sales, receivings and items module)
Refactor duplicated custom field code in item form
This commit is contained in:
jekkos
2015-04-06 14:41:50 +02:00
parent b85b9d37a1
commit f45f75e458
14 changed files with 158 additions and 230 deletions

View File

@@ -27,6 +27,7 @@ $lang["common_last_page"] = "Last";
$lang["common_learn_about_project"] = "to learn the lastest information about the project";
$lang["common_list_of"] = "List of";
$lang["common_logout"] = "Logout";
$lang["common_new"] = "New";
$lang["common_no_persons_to_display"] = "There are no people to display";
$lang["common_or"] = "OR";
$lang["common_phone_number"] = "Phone Number";

View File

@@ -27,6 +27,7 @@ $lang["common_last_page"] = "Last";
$lang["common_learn_about_project"] = "para leer la información más reciente acerca del proyecto";
$lang["common_list_of"] = "Lista de";
$lang["common_logout"] = "Salir";
$lang["common_new"] = "New";
$lang["common_no_persons_to_display"] = "No hay gente que mostrar";
$lang["common_or"] = "Ó";
$lang["common_phone_number"] = "Teléfono";

View File

@@ -27,6 +27,7 @@ $lang["common_last_page"] = "Last";
$lang["common_learn_about_project"] = "pour les dernières informations sur le projet";
$lang["common_list_of"] = "Liste de";
$lang["common_logout"] = "Déconnexion";
$lang["common_new"] = "New";
$lang["common_no_persons_to_display"] = "Il n\'y a personne à afficher";
$lang["common_or"] = "OU";
$lang["common_phone_number"] = "Téléphone";

View File

@@ -27,6 +27,7 @@ $lang["common_last_page"] = "Last";
$lang["common_learn_about_project"] = "Untuk belajar informasi terbaru tentang proyek ini";
$lang["common_list_of"] = "Daftar";
$lang["common_logout"] = "Keluar";
$lang["common_new"] = "New";
$lang["common_no_persons_to_display"] = "Tidak ada orang untuk ditampilkan";
$lang["common_or"] = "ATAU";
$lang["common_phone_number"] = "Telepon";

View File

@@ -27,6 +27,7 @@ $lang["common_last_page"] = "Laatste";
$lang["common_learn_about_project"] = "om de laatste informatie te verkrijgen over het project";
$lang["common_list_of"] = "Lijst van";
$lang["common_logout"] = "Logout";
$lang["common_new"] = "Nieuw";
$lang["common_no_persons_to_display"] = "Er werden geen personen gevonden";
$lang["common_or"] = "Of";
$lang["common_phone_number"] = "Telefoon";

View File

@@ -27,6 +27,7 @@ $lang["common_last_page"] = "Last";
$lang["common_learn_about_project"] = ", чтобы узнать самую последнюю информацию о проекте";
$lang["common_list_of"] = "Список";
$lang["common_logout"] = "Выход";
$lang["common_new"] = "New";
$lang["common_no_persons_to_display"] = "Там нет людей, чтобы отобразить";
$lang["common_or"] = "ИЛИ";
$lang["common_phone_number"] = "Номер телефона";

View File

@@ -27,6 +27,7 @@ $lang["common_last_page"] = "Last";
$lang["common_learn_about_project"] = "เพื่อศึกษาข้อมูลล่าสุดของโครงการ";
$lang["common_list_of"] = "รายการ";
$lang["common_logout"] = "";
$lang["common_new"] = "New";
$lang["common_no_persons_to_display"] = "ไม่พบข้อมูลตัวบุคคล";
$lang["common_or"] = "";
$lang["common_phone_number"] = "โทรศัพท์";

View File

@@ -27,6 +27,7 @@ $lang["common_last_page"] = "Last";
$lang["common_learn_about_project"] = " ";
$lang["common_list_of"] = "Liste";
$lang["common_logout"] = "Çıkış";
$lang["common_new"] = "New";
$lang["common_no_persons_to_display"] = "Gösterecek kişi yok";
$lang["common_or"] = "Yada";
$lang["common_phone_number"] = "Telefon";

View File

@@ -27,6 +27,7 @@ $lang["common_last_page"] = "Last";
$lang["common_learn_about_project"] = "了解系統開展進度";
$lang["common_list_of"] = "列表";
$lang["common_logout"] = "登出";
$lang["common_new"] = "New";
$lang["common_no_persons_to_display"] = "沒有使用者資料可以顯示";
$lang["common_or"] = "";
$lang["common_phone_number"] = "電話";

View File

@@ -125,11 +125,12 @@ foreach($stock_locations as $key=>$location_detail)
<?php echo form_input(array(
'name'=>$key.'_quantity',
'id'=>$key.'_quantity',
'class'=>'quantity',
'size'=>'8',
'value'=>$location_detail['quantity'])
'value'=>isset($item_info->item_id)?0:$location_detail['quantity'])
);?>
</div>
</div>
</div>
<?php
}
?>
@@ -144,21 +145,21 @@ foreach($stock_locations as $key=>$location_detail)
'value'=>$item_info->receiving_quantity)
);?>
</div>
</div>
</div>
<div class="field_row clearfix">
<div class="field_row clearfix">
<?php echo form_label($this->lang->line('items_reorder_level').':', 'reorder_level',array('class'=>'required wide')); ?>
<div class='form_field'>
<?php echo form_input(array(
'name'=>'reorder_level',
'id'=>'reorder_level',
'size'=>'8',
'value'=>$item_info->reorder_level)
'value'=>isset($item_info->item_id)?0:$item_info->reorder_level)
);?>
</div>
</div>
</div>
<div class="field_row clearfix">
<div class="field_row clearfix">
<?php echo form_label($this->lang->line('items_description').':', 'description',array('class'=>'wide')); ?>
<div class='form_field'>
<?php echo form_textarea(array(
@@ -216,165 +217,44 @@ foreach($stock_locations as $key=>$location_detail)
</div>
<!-- Parq End -->
<!-- GARRISON ADDED 4/21/2013 -->
<div class="field_row clearfix">
<?php
if($this->config->item('custom1_name') != NULL)
{
echo form_label($this->config->item('custom1_name').':', 'custom1',array('class'=>'wide')); ?>
<div class='form_field'>
<?php echo form_input(array(
'name'=>'custom1',
'id'=>'custom1',
'value'=>$item_info->custom1)
);?>
<?php for ($i = 0; $i < 11; $i++)
{
?>
<?php
if($this->config->item('custom'.$i.'_name') != NULL)
{
$item_arr = (array)$item_info;
?>
<div class="field_row clearfix">
<?php
echo form_label($this->config->item('custom'.$i.'_name').':', 'custom'.$i,array('class'=>'wide')); ?>
<div class='form_field'>
<?php echo form_input(array(
'name'=>'custom'.$i,
'id'=>'custom'.$i,
'value'=>$item_arr['custom'.$i])
);?>
</div>
</div>
</div>
<?php }//end if?>
<?php
}
}
?>
<div class="field_row clearfix">
<?php
if($this->config->item('custom2_name') != NULL)
{
echo form_label($this->config->item('custom2_name').':', 'custom2',array('class'=>'wide')); ?>
<div class='form_field'>
<?php echo form_input(array(
'name'=>'custom2',
'id'=>'custom2',
'value'=>$item_info->custom2)
);?>
</div>
</div>
<?php }//end if?>
<div class="field_row clearfix">
<?php
if($this->config->item('custom3_name') != NULL)
{
echo form_label($this->config->item('custom3_name').':', 'custom3',array('class'=>'wide')); ?>
<div class='form_field'>
<?php echo form_input(array(
'name'=>'custom3',
'id'=>'custom3',
'value'=>$item_info->custom3)
);?>
</div>
</div>
<?php }//end if?>
<div class="field_row clearfix">
<?php
if($this->config->item('custom4_name') != NULL)
{
echo form_label($this->config->item('custom4_name').':', 'custom4',array('class'=>'wide')); ?>
<div class='form_field'>
<?php echo form_input(array(
'name'=>'custom4',
'id'=>'custom4',
'value'=>$item_info->custom4)
);?>
</div>
</div>
<?php }//end if?>
<div class="field_row clearfix">
<?php
if($this->config->item('custom5_name') != NULL)
{
echo form_label($this->config->item('custom5_name').':', 'custom5',array('class'=>'wide')); ?>
<div class='form_field'>
<?php echo form_input(array(
'name'=>'custom5',
'id'=>'custom5',
'value'=>$item_info->custom5)
);?>
</div>
</div>
<?php }//end if?>
<div class="field_row clearfix">
<?php
if($this->config->item('custom6_name') != NULL)
{
echo form_label($this->config->item('custom6_name').':', 'custom6',array('class'=>'wide')); ?>
<div class='form_field'>
<?php echo form_input(array(
'name'=>'custom6',
'id'=>'custom6',
'value'=>$item_info->custom6)
);?>
</div>
</div>
<?php }//end if?>
<div class="field_row clearfix">
<?php
if($this->config->item('custom7_name') != NULL)
{
echo form_label($this->config->item('custom7_name').':', 'custom7',array('class'=>'wide')); ?>
<div class='form_field'>
<?php echo form_input(array(
'name'=>'custom7',
'id'=>'custom7',
'value'=>$item_info->custom7)
);?>
</div>
</div>
<?php }//end if?>
<div class="field_row clearfix">
<?php
if($this->config->item('custom8_name') != NULL)
{
echo form_label($this->config->item('custom8_name').':', 'custom8',array('class'=>'wide')); ?>
<div class='form_field'>
<?php echo form_input(array(
'name'=>'custom8',
'id'=>'custom8',
'value'=>$item_info->custom8)
);?>
</div>
</div>
<?php }//end if?>
<div class="field_row clearfix">
<?php
if($this->config->item('custom9_name') != NULL)
{
echo form_label($this->config->item('custom9_name').':', 'custom9',array('class'=>'wide')); ?>
<div class='form_field'>
<?php echo form_input(array(
'name'=>'custom9',
'id'=>'custom9',
'value'=>$item_info->custom9)
);?>
</div>
</div>
<?php }//end if?>
<div class="field_row clearfix">
<?php
if($this->config->item('custom10_name') != NULL)
{
echo form_label($this->config->item('custom10_name').':', 'custom10',array('class'=>'wide')); ?>
<div class='form_field'>
<?php echo form_input(array(
'name'=>'custom10',
'id'=>'custom10',
'value'=>$item_info->custom10)
);?>
</div>
</div>
<?php }//end if?>
<!-- END GARRISON ADDED -->
<?php
echo form_submit(array(
'name'=>'submit_form',
'id'=>'submit_form',
'name'=>'continue',
'id'=>'continue',
'value'=>$this->lang->line('common_new'),
'class'=>'submit_button float_right')
);
echo form_submit(array(
'name'=>'submit',
'id'=>'submit',
'value'=>$this->lang->line('common_submit'),
'class'=>'submit_button float_right')
);
@@ -388,6 +268,16 @@ echo form_close();
//validation and submit handling
$(document).ready(function()
{
$("#continue").click(function()
{
stay_open = true;
});
$("#submit").click(function()
{
stay_open = false;
});
var no_op = function(event, data, formatted){};
$("#category").autocomplete("<?php echo site_url('items/suggest_category');?>",{max:100,minChars:0,delay:10}).result(no_op).search();
@@ -422,8 +312,21 @@ $(document).ready(function()
$(form).ajaxSubmit({
success:function(response)
{
tb_remove();
post_item_form_submit(response);
if (stay_open)
{
// set action of item_form to url without item id, so a new one can be created
$("#item_form").attr("action", "<?php echo site_url("items/save/")?>");
// use a whitelist of fields to minimize unintended side effects
$(':text, :password, :file, #description, #item_form').not('.quantity, #reorder_level, #tax_name_1,' +
'#tax_percent_name_1, #reference_number, #name, #cost_price, #unit_price, #taxed_cost_price, #taxed_unit_price').val('');
// de-select any checkboxes, radios and drop-down menus
$(':input', '#item_form').not('#item_category_id').removeAttr('checked').removeAttr('selected');
}
else
{
tb_remove();
}
post_item_form_submit(response, stay_open);
},
dataType:'json'
});

View File

@@ -48,7 +48,7 @@ if(isset($error))
</label>
<?php echo form_input(array('name'=>'item','id'=>'item','size'=>'40'));?>
<div id="new_item_button_register" >
<?php echo anchor("items/view/-1/width:400",
<?php echo anchor("items/view/-1/width:450",
"<div class='small_button'><span>".$this->lang->line('sales_new_item')."</span></div>",
array('class'=>'thickbox none','title'=>$this->lang->line('sales_new_item')));
?>
@@ -450,12 +450,19 @@ $(document).ready(function()
});
function post_item_form_submit(response)
function post_item_form_submit(response, stay_open)
{
if(response.success)
{
$("#item").attr("value",response.item_id);
$("#add_item_form").submit();
if (stay_open)
{
$("#add_item_form").ajaxSubmit();
}
else
{
$("#add_item_form").submit();
}
}
}

View File

@@ -45,7 +45,7 @@ echo $this->lang->line('sales_find_or_scan_item_or_receipt');
<?php echo form_input(array('name'=>'item','id'=>'item','size'=>'40'));?>
<div id="new_item_button_register" >
<?php echo anchor("items/view/-1/width:400",
<?php echo anchor("items/view/-1/width:450",
"<div class='small_button'><span>".$this->lang->line('sales_new_item')."</span></div>",
array('class'=>'thickbox none','title'=>$this->lang->line('sales_new_item')));
?>
@@ -552,14 +552,21 @@ $(document).ready(function()
});
});
function post_item_form_submit(response)
function post_item_form_submit(response, stay_open)
{
if(response.success)
{
var $stock_location = $("select[name='stock_location']").val();
$("#item_location").val($stock_location);
$("#item").val(response.item_id);
$("#add_item_form").submit();
if (stay_open)
{
$("#add_item_form").ajaxSubmit();
}
else
{
$("#add_item_form").submit();
}
}
}

View File

@@ -1,48 +1,49 @@
"label","nl-BE","es","en","fr","zh","ru","th","tr","id"
"common_address_1","Adres 1","Dirección 1","Address 1","Addresse 1","地址 1","Адрес 1","ที่อยู่","Adres 1","Alamat 1"
"common_address_2","Adres 2","Dirección 2","Address 2","Addresse 2","地址 2","Адрес 2","ที่อยู่ (เพิ่มเติม)","Adres 2","Alamat 2"
"common_city","Stad","Ciudad","City","Ville","城市","Город","อำเภอ","Şehir","Kota"
"common_comments","Commentaar","Comentarios","Comments","Commentaires","評論","Комментарии","หมายเหตุ","Yorumlar","Catatan"
"common_common","algemeen","común","common","commun","一般","общественно","ธรรมดา","genel","Biasa"
"common_confirm_search","U hebt een of meerdere rijen geselecteerd, deze zullen niet langer geselecteerd zijn na de zoekopdracht. Bent u zeker dat u wil verdergaan?","Has seleccionado una o más filas. Éstas no estarán seleccionadas después de tu búsqueda. ¿Seguro(a) que quieres hacer esta búsqueda?","You have selected one or more rows, these will no longer be selected after your search. Are you sure you want to submit this search?","Vous avez sélectionné une ou plusieurs ligne(s). Elles ne seront plus selectionnées apres cette recherche. Voulez-vous lancer cette recherche?","您已經選擇一行或多行,在搜索後這些紀錄將不能再被選取。您確定要提交這個搜索?","Вы выбрали одну или несколько строк, это больше не будет быть выбрано после поиска. Вы уверены, что хотите, чтобы представить этот поиск?","คุณเลือกมากกว่าหนึ่งแถว, สิ่งที่คุณเลือกจะถูกยกเลิกหลังการค้นหา. แน่ใจหรือไม่ที่จะค้นหา?","Birden fazla satır seçtiniz, arama yaptığınızda seçiminiz kaybolacak. Arama yapmak istediğinize emin misiniz?","Anda telah memilih satu atau lebih baris, ini tidak akan lagi dipilih setelah pencarian Anda. Apakah Anda yakin ingin mengirimkan pencarian ini?"
"common_country","Land","País","Country","Pays","國家","Страна","ประเทศ","Ülke","Negara"
"common_date","Datum","Date","Date","Date","Date","Date","Date","Date","Date"
"common_delete","Verwijder","Borrar","Delete","Effacer","刪除","Удалить","ลบ","Sil","Hapus"
"common_det","details","detalles","details","détails","更多","детали","สรุป","Detaylar","Detail"
"common_edit","bewerk","editar","edit","éditer","編輯","редактировать","แก้ไข","düzenle","Ubah"
"common_email","Email","E-Mail","E-Mail","E-Mail","E-Mail","Электронная почта","E-Mail","E-Posta","E-Mail"
"common_email_invalid_format","Je moet een geldig email adres invullen.","El e-mail no está en el formato requerido","The e-mail address is not in the proper format","Le format de l\'adresse électronique est incorrect","E-mail格式錯誤","Это электронная почта не в нужный формат","e-mail address ไม่ถูกต้อง","E-Posta adresi doğru formatta değil","Format alamat e-mail tidak benar"
"common_fields_required_message","Velden met een * moeten ingevuld worden","Los campos en rojo son requeridos","Fields in red are required","Les champs en rouge sont requis","紅色欄位為必填","Красные пробела обязательно","ช่องสีแดงต้องกรอก","Kırmızı alanlar zorunludur","Bagian yang ditandai warna merah wajib diisi"
"common_first_name","Voornaam","Nombre","First Name","Prénom","","Имя","ชื่อ","İsim","Nama Depan"
"common_first_name_required","De voornaam moet ingevuld worden.","Nombre es un campo requerido","The first name is a required field.","Le prénom est requis.","名為必填","Имя обязательный пробел","ชื่อต้องกรอก","İsim zorunlu alandır","Nama depan wajib diisi."
"common_first_page","Eerste","First","First","First","First","First","First","First","First"
"common_gender","Geslacht","Gender","Gender","Gender","Gender","Gender","","Gender","Gender"
"common_gender_female","V","F","F","F","V","V","V","V","V"
"common_gender_male","M","M","M","M","M","M","","M","M"
"common_inv","stock","inv","inv","inv","庫存","инв","ยอด","Stok","Persediaan"
"common_last_name","Achternaam","Apellidos","Last Name","Nom","","Фамилия","นามสกุล","Soy İsim","Nama Belakang"
"common_last_name_required","De achternaam moet ingevuld worden.","Apellidos es un campo requerido","The last name is a required field","Le nom est requis","姓氏為必填","Фамилия обязательный пробел","นามสกุลต้องกรอก","Soy isim zorunlu alandır.","Nama belakang wajib diisi."
"common_last_page","Laatste","Last","Last","Last","Last","Last","Last","Last","Last"
"common_learn_about_project","om de laatste informatie te verkrijgen over het project","para leer la información más reciente acerca del proyecto","to learn the lastest information about the project","pour les dernières informations sur le projet","了解系統開展進度",", чтобы узнать самую последнюю информацию о проекте","เพื่อศึกษาข้อมูลล่าสุดของโครงการ"," ","Untuk belajar informasi terbaru tentang proyek ini"
"common_list_of","Lijst van","Lista de","List of","Liste de","列表","Список","รายการ","Liste","Daftar"
"common_logout","Logout","Salir","Logout","Déconnexion","登出","Выход","","Çıkış","Keluar"
"common_no_persons_to_display","Er werden geen personen gevonden","No hay gente que mostrar","There are no people to display","Il n\'y a personne à afficher","沒有使用者資料可以顯示","Там нет людей, чтобы отобразить","ไม่พบข้อมูลตัวบุคคล","Gösterecek kişi yok","Tidak ada orang untuk ditampilkan"
"common_or","Of","Ó","OR","OU","","ИЛИ","","Yada","ATAU"
"common_phone_number","Telefoon","Teléfono","Phone Number","Téléphone","電話","Номер телефона","โทรศัพท์","Telefon","Telepon"
"common_phone_number_required","","","","Le numéro de téléphone est requis.","","","","","Nomer Telepon Wajib Diisi"
"common_please_visit_my","Bezoek mijn","Por favor, visita mi","Please visit my","SVP visitez le","請造訪","пожалуйста, посетите","เยี่ยมชมที่","ziyaret edin","Silahkan kunjungi"
"common_powered_by","Powered by","Potenciado por","Powered by","Animé par","Powered by","самоходные из","","Powered by","Diberdayakan oleh"
"common_price","Prijs","Precio","Price","Prix","價值","Цена","ราคา","Fiyat","Harga"
"common_remove","Verwijder","Eliminar","Remove","Enlever","移除","Снимать","ลบ","Kaldır","Hapus"
"common_return_policy","Retourvoorwaarden","Política de Devolución","Return Policy","Politique de Reprise","退貨政策","Возвратний полис","นโยบายคืนสินค้า","İade Politikası","Kebijakan Retur"
"common_search","Zoek","Buscar","Search","Recherche","搜尋","Пойск","ค้นหา","Arama","Cari"
"common_search_options","Zoek criteria","Search options","Search options","Search options","Search options","Search options","Search options","Search options","Search options"
"common_searched_for","Gezocht op","Buscaste","Searched for","Recherché","查找","Искали за","ค้นหาสำหรับ","Ara","Mencari untuk"
"common_state","Provincie","Estado","State","État","","Штат","จังหวัด","Bölge","Provinsi"
"common_submit","Verzend","Enviar","Submit","Envoyer","送出","Подавать","ส่งข้อมูล","Onayla","Kirim"
"common_view_recent_sales","Bekijk recente verkoop","Ver Ventas Recientes","View Recent Sales","Voir Ventes Récentes","最新的消售資訊","Посмотреть Недавние Продажи","สำรวจการขายเมื่อเร็วๆนี้","Yeni satışları göster","Lihat Penjualan Terkini"
"common_website","website","sitio","website","site-web","網站","веб-сайт","website","website","Situs"
"common_welcome","Welkom","Bienvenido(a)","Welcome","Bienvenue","歡迎","Добро пожаловать","","Hoşgeldiniz","Selamat Datang"
"common_welcome_message","Welkom in PHP Point Of Sale, klik beneden een module aan om te beginnen!","Bienvenido(a) a Open Source Point Of Sale. ¡Haz click en algún módulo debajo, para empezar!","Welcome to Open Source Point Of Sale, click a module below to get started!","Bienvenue à Open Source Point Of Sale, choisissez un module ci-dessous!","歡迎使用Open Source Point of Sale請點擊下面的模組以開始使用","Добро пожаловать в Open Source Point Of Sale, нажмите модуля ниже, чтобы начать!","Opensource Point of sale. กรุณาเลือกคำสั่งเมนูด้านล่าง ","Hoşgeldiniz, devam etmek için aşağıdan bir modül seçiniz!","Selamat Datang, klik modul di bawah ini untuk memulai"
"common_you_are_using_ospos","You are using Open Source Point Of Sale Version","Estás usando Open Source Point Of Sale Versión","You are using Open Source Point Of Sale Version","Vous utilisez Open Source Point Of Sale Version","您正在使用 Open Source Point of Sale 版本","Вы использоваете Open Source Point Of Sale Версия","คุณกำลังใช้ Opensource Point of Sales รุ่น","Kullandığınız sürüm","Anda menggunakan Open Source Point Of Sale Versi"
"common_zip","Postcode","C.P.","Zip","Zip","郵遞區號","Почтовый индекс","รหัสไปรษณีย์","Şehir Kodu","Kode POS"
label,nl-BE,es,en,fr,zh,ru,th,tr,id
common_address_1,Adres 1,Dirección 1,Address 1,Addresse 1,地址 1,Адрес 1,ที่อยู่,Adres 1,Alamat 1
common_address_2,Adres 2,Dirección 2,Address 2,Addresse 2,地址 2,Адрес 2,ที่อยู่ (เพิ่มเติม),Adres 2,Alamat 2
common_city,Stad,Ciudad,City,Ville,城市,Город,อำเภอ,Şehir,Kota
common_comments,Commentaar,Comentarios,Comments,Commentaires,評論,Комментарии,หมายเหตุ,Yorumlar,Catatan
common_common,algemeen,común,common,commun,一般,общественно,ธรรมดา,genel,Biasa
common_confirm_search,"U hebt een of meerdere rijen geselecteerd, deze zullen niet langer geselecteerd zijn na de zoekopdracht. Bent u zeker dat u wil verdergaan?",Has seleccionado una o más filas. Éstas no estarán seleccionadas después de tu búsqueda. ¿Seguro(a) que quieres hacer esta búsqueda?,"You have selected one or more rows, these will no longer be selected after your search. Are you sure you want to submit this search?",Vous avez sélectionné une ou plusieurs ligne(s). Elles ne seront plus selectionnées apres cette recherche. Voulez-vous lancer cette recherche?,您已經選擇一行或多行,在搜索後這些紀錄將不能再被選取。您確定要提交這個搜索?,"Вы выбрали одну или несколько строк, это больше не будет быть выбрано после поиска. Вы уверены, что хотите, чтобы представить этот поиск?","คุณเลือกมากกว่าหนึ่งแถว, สิ่งที่คุณเลือกจะถูกยกเลิกหลังการค้นหา. แน่ใจหรือไม่ที่จะค้นหา?","Birden fazla satır seçtiniz, arama yaptığınızda seçiminiz kaybolacak. Arama yapmak istediğinize emin misiniz?","Anda telah memilih satu atau lebih baris, ini tidak akan lagi dipilih setelah pencarian Anda. Apakah Anda yakin ingin mengirimkan pencarian ini?"
common_country,Land,País,Country,Pays,國家,Страна,ประเทศ,Ülke,Negara
common_date,Datum,Date,Date,Date,Date,Date,Date,Date,Date
common_delete,Verwijder,Borrar,Delete,Effacer,刪除,Удалить,ลบ,Sil,Hapus
common_det,details,detalles,details,détails,更多,детали,สรุป,Detaylar,Detail
common_edit,bewerk,editar,edit,éditer,編輯,редактировать,แก้ไข,düzenle,Ubah
common_email,Email,E-Mail,E-Mail,E-Mail,E-Mail,Электронная почта,E-Mail,E-Posta,E-Mail
common_email_invalid_format,Je moet een geldig email adres invullen.,El e-mail no está en el formato requerido,The e-mail address is not in the proper format,Le format de l\'adresse électronique est incorrect,E-mail格式錯誤,Это электронная почта не в нужный формат,e-mail address ไม่ถูกต้อง,E-Posta adresi doğru formatta değil,Format alamat e-mail tidak benar
common_fields_required_message,Velden met een * moeten ingevuld worden,Los campos en rojo son requeridos,Fields in red are required,Les champs en rouge sont requis,紅色欄位為必填,Красные пробела обязательно,ช่องสีแดงต้องกรอก,Kırmızı alanlar zorunludur,Bagian yang ditandai warna merah wajib diisi
common_first_name,Voornaam,Nombre,First Name,Prénom,,Имя,ชื่อ,İsim,Nama Depan
common_first_name_required,De voornaam moet ingevuld worden.,Nombre es un campo requerido,The first name is a required field.,Le prénom est requis.,名為必填,Имя обязательный пробел,ชื่อต้องกรอก,İsim zorunlu alandır,Nama depan wajib diisi.
common_first_page,Eerste,First,First,First,First,First,First,First,First
common_gender,Geslacht,Gender,Gender,Gender,Gender,Gender,,Gender,Gender
common_gender_female,V,F,F,F,V,V,V,V,V
common_gender_male,M,M,M,M,M,M,,M,M
common_inv,stock,inv,inv,inv,庫存,инв,ยอด,Stok,Persediaan
common_last_name,Achternaam,Apellidos,Last Name,Nom,,Фамилия,นามสกุล,Soy İsim,Nama Belakang
common_last_name_required,De achternaam moet ingevuld worden.,Apellidos es un campo requerido,The last name is a required field,Le nom est requis,姓氏為必填,Фамилия обязательный пробел,นามสกุลต้องกรอก,Soy isim zorunlu alandır.,Nama belakang wajib diisi.
common_last_page,Laatste,Last,Last,Last,Last,Last,Last,Last,Last
common_learn_about_project,om de laatste informatie te verkrijgen over het project,para leer la información más reciente acerca del proyecto,to learn the lastest information about the project,pour les dernières informations sur le projet,了解系統開展進度,", чтобы узнать самую последнюю информацию о проекте",เพื่อศึกษาข้อมูลล่าสุดของโครงการ, ,Untuk belajar informasi terbaru tentang proyek ini
common_list_of,Lijst van,Lista de,List of,Liste de,列表,Список,รายการ,Liste,Daftar
common_logout,Logout,Salir,Logout,Déconnexion,登出,Выход,,Çıkış,Keluar
common_new,Nieuw,New,New,New,New,New,New,New,New
common_no_persons_to_display,Er werden geen personen gevonden,No hay gente que mostrar,There are no people to display,Il n\'y a personne à afficher,沒有使用者資料可以顯示,"Там нет людей, чтобы отобразить",ไม่พบข้อมูลตัวบุคคล,Gösterecek kişi yok,Tidak ada orang untuk ditampilkan
common_or,Of,Ó,OR,OU,,ИЛИ,,Yada,ATAU
common_phone_number,Telefoon,Teléfono,Phone Number,Téléphone,電話,Номер телефона,โทรศัพท์,Telefon,Telepon
common_phone_number_required,,,,Le numéro de téléphone est requis.,,,,,Nomer Telepon Wajib Diisi
common_please_visit_my,Bezoek mijn,"Por favor, visita mi",Please visit my,SVP visitez le,請造訪,"пожалуйста, посетите",เยี่ยมชมที่,ziyaret edin,Silahkan kunjungi
common_powered_by,Powered by,Potenciado por,Powered by,Animé par,Powered by,самоходные из,,Powered by,Diberdayakan oleh
common_price,Prijs,Precio,Price,Prix,價值,Цена,ราคา,Fiyat,Harga
common_remove,Verwijder,Eliminar,Remove,Enlever,移除,Снимать,ลบ,Kaldır,Hapus
common_return_policy,Retourvoorwaarden,Política de Devolución,Return Policy,Politique de Reprise,退貨政策,Возвратний полис,นโยบายคืนสินค้า,İade Politikası,Kebijakan Retur
common_search,Zoek,Buscar,Search,Recherche,搜尋,Пойск,ค้นหา,Arama,Cari
common_search_options,Zoek criteria,Search options,Search options,Search options,Search options,Search options,Search options,Search options,Search options
common_searched_for,Gezocht op,Buscaste,Searched for,Recherché,查找,Искали за,ค้นหาสำหรับ,Ara,Mencari untuk
common_state,Provincie,Estado,State,État,,Штат,จังหวัด,Bölge,Provinsi
common_submit,Verzend,Enviar,Submit,Envoyer,送出,Подавать,ส่งข้อมูล,Onayla,Kirim
common_view_recent_sales,Bekijk recente verkoop,Ver Ventas Recientes,View Recent Sales,Voir Ventes Récentes,最新的消售資訊,Посмотреть Недавние Продажи,สำรวจการขายเมื่อเร็วๆนี้,Yeni satışları göster,Lihat Penjualan Terkini
common_website,website,sitio,website,site-web,網站,веб-сайт,website,website,Situs
common_welcome,Welkom,Bienvenido(a),Welcome,Bienvenue,歡迎,Добро пожаловать,,Hoşgeldiniz,Selamat Datang
common_welcome_message,"Welkom in PHP Point Of Sale, klik beneden een module aan om te beginnen!","Bienvenido(a) a Open Source Point Of Sale. ¡Haz click en algún módulo debajo, para empezar!","Welcome to Open Source Point Of Sale, click a module below to get started!","Bienvenue à Open Source Point Of Sale, choisissez un module ci-dessous!",歡迎使用Open Source Point of Sale,請點擊下面的模組以開始使用!,"Добро пожаловать в Open Source Point Of Sale, нажмите модуля ниже, чтобы начать!",Opensource Point of sale. กรุณาเลือกคำสั่งเมนูด้านล่าง ,"Hoşgeldiniz, devam etmek için aşağıdan bir modül seçiniz!","Selamat Datang, klik modul di bawah ini untuk memulai"
common_you_are_using_ospos,You are using Open Source Point Of Sale Version,Estás usando Open Source Point Of Sale Versión,You are using Open Source Point Of Sale Version,Vous utilisez Open Source Point Of Sale Version,您正在使用 Open Source Point of Sale 版本,Вы использоваете Open Source Point Of Sale Версия,คุณกำลังใช้ Opensource Point of Sales รุ่น,Kullandığınız sürüm,Anda menggunakan Open Source Point Of Sale Versi
common_zip,Postcode,C.P.,Zip,Zip,郵遞區號,Почтовый индекс,รหัสไปรษณีย์,Şehir Kodu,Kode POS
1 label nl-BE es en fr zh ru th tr id
2 common_address_1 Adres 1 Dirección 1 Address 1 Addresse 1 地址 1 Адрес 1 ที่อยู่ Adres 1 Alamat 1
3 common_address_2 Adres 2 Dirección 2 Address 2 Addresse 2 地址 2 Адрес 2 ที่อยู่ (เพิ่มเติม) Adres 2 Alamat 2
4 common_city Stad Ciudad City Ville 城市 Город อำเภอ Şehir Kota
5 common_comments Commentaar Comentarios Comments Commentaires 評論 Комментарии หมายเหตุ Yorumlar Catatan
6 common_common algemeen común common commun 一般 общественно ธรรมดา genel Biasa
7 common_confirm_search U hebt een of meerdere rijen geselecteerd, deze zullen niet langer geselecteerd zijn na de zoekopdracht. Bent u zeker dat u wil verdergaan? Has seleccionado una o más filas. Éstas no estarán seleccionadas después de tu búsqueda. ¿Seguro(a) que quieres hacer esta búsqueda? You have selected one or more rows, these will no longer be selected after your search. Are you sure you want to submit this search? Vous avez sélectionné une ou plusieurs ligne(s). Elles ne seront plus selectionnées apres cette recherche. Voulez-vous lancer cette recherche? 您已經選擇一行或多行,在搜索後這些紀錄將不能再被選取。您確定要提交這個搜索? Вы выбрали одну или несколько строк, это больше не будет быть выбрано после поиска. Вы уверены, что хотите, чтобы представить этот поиск? คุณเลือกมากกว่าหนึ่งแถว, สิ่งที่คุณเลือกจะถูกยกเลิกหลังการค้นหา. แน่ใจหรือไม่ที่จะค้นหา? Birden fazla satır seçtiniz, arama yaptığınızda seçiminiz kaybolacak. Arama yapmak istediğinize emin misiniz? Anda telah memilih satu atau lebih baris, ini tidak akan lagi dipilih setelah pencarian Anda. Apakah Anda yakin ingin mengirimkan pencarian ini?
8 common_country Land País Country Pays 國家 Страна ประเทศ Ülke Negara
9 common_date Datum Date Date Date Date Date Date Date Date
10 common_delete Verwijder Borrar Delete Effacer 刪除 Удалить ลบ Sil Hapus
11 common_det details detalles details détails 更多 детали สรุป Detaylar Detail
12 common_edit bewerk editar edit éditer 編輯 редактировать แก้ไข düzenle Ubah
13 common_email Email E-Mail E-Mail E-Mail E-Mail Электронная почта E-Mail E-Posta E-Mail
14 common_email_invalid_format Je moet een geldig email adres invullen. El e-mail no está en el formato requerido The e-mail address is not in the proper format Le format de l\'adresse électronique est incorrect E-mail格式錯誤 Это электронная почта не в нужный формат e-mail address ไม่ถูกต้อง E-Posta adresi doğru formatta değil Format alamat e-mail tidak benar
15 common_fields_required_message Velden met een * moeten ingevuld worden Los campos en rojo son requeridos Fields in red are required Les champs en rouge sont requis 紅色欄位為必填 Красные пробела обязательно ช่องสีแดงต้องกรอก Kırmızı alanlar zorunludur Bagian yang ditandai warna merah wajib diisi
16 common_first_name Voornaam Nombre First Name Prénom Имя ชื่อ İsim Nama Depan
17 common_first_name_required De voornaam moet ingevuld worden. Nombre es un campo requerido The first name is a required field. Le prénom est requis. 名為必填 Имя обязательный пробел ชื่อต้องกรอก İsim zorunlu alandır Nama depan wajib diisi.
18 common_first_page Eerste First First First First First First First First
19 common_gender Geslacht Gender Gender Gender Gender Gender Gender Gender
20 common_gender_female V F F F V V V V V
21 common_gender_male M M M M M M M M
22 common_inv stock inv inv inv 庫存 инв ยอด Stok Persediaan
23 common_last_name Achternaam Apellidos Last Name Nom Фамилия นามสกุล Soy İsim Nama Belakang
24 common_last_name_required De achternaam moet ingevuld worden. Apellidos es un campo requerido The last name is a required field Le nom est requis 姓氏為必填 Фамилия обязательный пробел นามสกุลต้องกรอก Soy isim zorunlu alandır. Nama belakang wajib diisi.
25 common_last_page Laatste Last Last Last Last Last Last Last Last
26 common_learn_about_project om de laatste informatie te verkrijgen over het project para leer la información más reciente acerca del proyecto to learn the lastest information about the project pour les dernières informations sur le projet 了解系統開展進度 , чтобы узнать самую последнюю информацию о проекте เพื่อศึกษาข้อมูลล่าสุดของโครงการ Untuk belajar informasi terbaru tentang proyek ini
27 common_list_of Lijst van Lista de List of Liste de 列表 Список รายการ Liste Daftar
28 common_logout Logout Salir Logout Déconnexion 登出 Выход Çıkış Keluar
29 common_no_persons_to_display common_new Er werden geen personen gevonden Nieuw No hay gente que mostrar New There are no people to display New Il n\'y a personne à afficher New 沒有使用者資料可以顯示 New Там нет людей, чтобы отобразить New ไม่พบข้อมูลตัวบุคคล New Gösterecek kişi yok New Tidak ada orang untuk ditampilkan New
30 common_or common_no_persons_to_display Of Er werden geen personen gevonden Ó No hay gente que mostrar OR There are no people to display OU Il n\'y a personne à afficher 沒有使用者資料可以顯示 ИЛИ Там нет людей, чтобы отобразить ไม่พบข้อมูลตัวบุคคล Yada Gösterecek kişi yok ATAU Tidak ada orang untuk ditampilkan
31 common_phone_number common_or Telefoon Of Teléfono Ó Phone Number OR Téléphone OU 電話 Номер телефона ИЛИ โทรศัพท์ Telefon Yada Telepon ATAU
32 common_phone_number_required common_phone_number Telefoon Teléfono Phone Number Le numéro de téléphone est requis. Téléphone 電話 Номер телефона โทรศัพท์ Telefon Nomer Telepon Wajib Diisi Telepon
33 common_please_visit_my common_phone_number_required Bezoek mijn Por favor, visita mi Please visit my SVP visitez le Le numéro de téléphone est requis. 請造訪 пожалуйста, посетите เยี่ยมชมที่ ziyaret edin Silahkan kunjungi Nomer Telepon Wajib Diisi
34 common_powered_by common_please_visit_my Powered by Bezoek mijn Potenciado por Por favor, visita mi Powered by Please visit my Animé par SVP visitez le Powered by 請造訪 самоходные из пожалуйста, посетите เยี่ยมชมที่ Powered by ziyaret edin Diberdayakan oleh Silahkan kunjungi
35 common_price common_powered_by Prijs Powered by Precio Potenciado por Price Powered by Prix Animé par 價值 Powered by Цена самоходные из ราคา Fiyat Powered by Harga Diberdayakan oleh
36 common_remove common_price Verwijder Prijs Eliminar Precio Remove Price Enlever Prix 移除 價值 Снимать Цена ลบ ราคา Kaldır Fiyat Hapus Harga
37 common_return_policy common_remove Retourvoorwaarden Verwijder Política de Devolución Eliminar Return Policy Remove Politique de Reprise Enlever 退貨政策 移除 Возвратний полис Снимать นโยบายคืนสินค้า ลบ İade Politikası Kaldır Kebijakan Retur Hapus
38 common_search common_return_policy Zoek Retourvoorwaarden Buscar Política de Devolución Search Return Policy Recherche Politique de Reprise 搜尋 退貨政策 Пойск Возвратний полис ค้นหา นโยบายคืนสินค้า Arama İade Politikası Cari Kebijakan Retur
39 common_search_options common_search Zoek criteria Zoek Search options Buscar Search options Search Search options Recherche Search options 搜尋 Search options Пойск Search options ค้นหา Search options Arama Search options Cari
40 common_searched_for common_search_options Gezocht op Zoek criteria Buscaste Search options Searched for Search options Recherché Search options 查找 Search options Искали за Search options ค้นหาสำหรับ Search options Ara Search options Mencari untuk Search options
41 common_state common_searched_for Provincie Gezocht op Estado Buscaste State Searched for État Recherché 查找 Штат Искали за จังหวัด ค้นหาสำหรับ Bölge Ara Provinsi Mencari untuk
42 common_submit common_state Verzend Provincie Enviar Estado Submit State Envoyer État 送出 Подавать Штат ส่งข้อมูล จังหวัด Onayla Bölge Kirim Provinsi
43 common_view_recent_sales common_submit Bekijk recente verkoop Verzend Ver Ventas Recientes Enviar View Recent Sales Submit Voir Ventes Récentes Envoyer 最新的消售資訊 送出 Посмотреть Недавние Продажи Подавать สำรวจการขายเมื่อเร็วๆนี้ ส่งข้อมูล Yeni satışları göster Onayla Lihat Penjualan Terkini Kirim
44 common_website common_view_recent_sales website Bekijk recente verkoop sitio Ver Ventas Recientes website View Recent Sales site-web Voir Ventes Récentes 網站 最新的消售資訊 веб-сайт Посмотреть Недавние Продажи website สำรวจการขายเมื่อเร็วๆนี้ website Yeni satışları göster Situs Lihat Penjualan Terkini
45 common_welcome common_website Welkom website Bienvenido(a) sitio Welcome website Bienvenue site-web 歡迎 網站 Добро пожаловать веб-сайт website Hoşgeldiniz website Selamat Datang Situs
46 common_welcome_message common_welcome Welkom in PHP Point Of Sale, klik beneden een module aan om te beginnen! Welkom Bienvenido(a) a Open Source Point Of Sale. ¡Haz click en algún módulo debajo, para empezar! Bienvenido(a) Welcome to Open Source Point Of Sale, click a module below to get started! Welcome Bienvenue à Open Source Point Of Sale, choisissez un module ci-dessous! Bienvenue 歡迎使用Open Source Point of Sale,請點擊下面的模組以開始使用! 歡迎 Добро пожаловать в Open Source Point Of Sale, нажмите модуля ниже, чтобы начать! Добро пожаловать Opensource Point of sale. กรุณาเลือกคำสั่งเมนูด้านล่าง Hoşgeldiniz, devam etmek için aşağıdan bir modül seçiniz! Hoşgeldiniz Selamat Datang, klik modul di bawah ini untuk memulai Selamat Datang
47 common_you_are_using_ospos common_welcome_message You are using Open Source Point Of Sale Version Welkom in PHP Point Of Sale, klik beneden een module aan om te beginnen! Estás usando Open Source Point Of Sale Versión Bienvenido(a) a Open Source Point Of Sale. ¡Haz click en algún módulo debajo, para empezar! You are using Open Source Point Of Sale Version Welcome to Open Source Point Of Sale, click a module below to get started! Vous utilisez Open Source Point Of Sale Version Bienvenue à Open Source Point Of Sale, choisissez un module ci-dessous! 您正在使用 Open Source Point of Sale 版本 歡迎使用Open Source Point of Sale,請點擊下面的模組以開始使用! Вы использоваете Open Source Point Of Sale Версия Добро пожаловать в Open Source Point Of Sale, нажмите модуля ниже, чтобы начать! คุณกำลังใช้ Opensource Point of Sales รุ่น Opensource Point of sale. กรุณาเลือกคำสั่งเมนูด้านล่าง Kullandığınız sürüm Hoşgeldiniz, devam etmek için aşağıdan bir modül seçiniz! Anda menggunakan Open Source Point Of Sale Versi Selamat Datang, klik modul di bawah ini untuk memulai
48 common_zip common_you_are_using_ospos Postcode You are using Open Source Point Of Sale Version C.P. Estás usando Open Source Point Of Sale Versión Zip You are using Open Source Point Of Sale Version Zip Vous utilisez Open Source Point Of Sale Version 郵遞區號 您正在使用 Open Source Point of Sale 版本 Почтовый индекс Вы использоваете Open Source Point Of Sale Версия รหัสไปรษณีย์ คุณกำลังใช้ Opensource Point of Sales รุ่น Şehir Kodu Kullandığınız sürüm Kode POS Anda menggunakan Open Source Point Of Sale Versi
49 common_zip Postcode C.P. Zip Zip 郵遞區號 Почтовый индекс รหัสไปรษณีย์ Şehir Kodu Kode POS

View File

@@ -1,16 +1,17 @@
"label","nl-BE","es","en","fr","zh","ru","th","tr","id"
"customers_account_number","Btwnummer","Cuenta #","Account #","# Compte","帳號 #","Номер счота","บัญชี #","Hesap No","No.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"
"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_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
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_company_name,Bedrijfsnaam,Company Name,Company Name,Company Name,Company Name,Company Name,Company Name,Company Name,Company Name
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
1 label nl-BE es en fr zh ru th tr id
2 customers_account_number Btwnummer Cuenta # Account # # Compte 帳號 # Номер счота บัญชี # Hesap No No.Pelanggan
3 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
4 customers_basic_information Klantgegevens Información de Clientes Customer Information Informations Client 客戶資訊 Информация о клиенте ข้อมูลลูกค้า Müşteri bilgisi Informasi Pelanggan
5 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.
6 customers_confirm_delete customers_company_name Bent u zeker dat u de geselecteerde klanten wil verwijderen? Bedrijfsnaam ¿Estás seguro(a) de que quieres borrar a los clientes seleccionados? Company Name Are you sure you want to delete the selected customers? Company Name Etes vous sûr(e) de vouloir supprimer ces clients? Company Name 你確定要刪除選定的客戶? Company Name Вы уверены, что хотите удалить выбранных клиентов? Company Name ยืนยันลบข้อมูลลูกค้า? Company Name Seçili müşteriyi silmek istediğinize emin misiniz? Company Name Apakah Anda yakin ingin menghapus pelanggan yang dipilih? Company Name
7 customers_customer customers_confirm_delete Klant Bent u zeker dat u de geselecteerde klanten wil verwijderen? Cliente ¿Estás seguro(a) de que quieres borrar a los clientes seleccionados? Customer Are you sure you want to delete the selected customers? Client Etes vous sûr(e) de vouloir supprimer ces clients? 客戶 你確定要刪除選定的客戶? Клиент Вы уверены, что хотите удалить выбранных клиентов? ลูกค้า ยืนยันลบข้อมูลลูกค้า? Müşteri Seçili müşteriyi silmek istediğinize emin misiniz? Pelanggan Apakah Anda yakin ingin menghapus pelanggan yang dipilih?
8 customers_error_adding_updating customers_customer Fout bij het toevoegen/bewerken van een klant Klant Error agregando/actualizando cliente Cliente Error adding/updating customer Customer Érreur lors de l\'ajout/suppression de client Client 添加/更新客戶錯誤 客戶 Ошибка при добавлении/обновлении клиента Клиент แก้ไขข้อมูลลูกค้าผิดพลาด ลูกค้า Müşteri ekleme/güncelleme hatası Müşteri Menambah / Memperbarui Pelanggan Salah Pelanggan
9 customers_new customers_error_adding_updating Nieuwe Klant Fout bij het toevoegen/bewerken van een klant Nuevo Cliente Error agregando/actualizando cliente New Customer Error adding/updating customer Nouveau Client Érreur lors de l\'ajout/suppression de client 新客戶 添加/更新客戶錯誤 Новый Клиент Ошибка при добавлении/обновлении клиента ลูกค้าใหม่ แก้ไขข้อมูลลูกค้าผิดพลาด Yeni Müşteri Müşteri ekleme/güncelleme hatası Pelanggan Baru Menambah / Memperbarui Pelanggan Salah
10 customers_none_selected customers_new U hebt geen klanten geselecteerd Nieuwe Klant No has selccionado clientes para ser borrados Nuevo Cliente You have not selected any customers to delete New Customer Vous n\\\'avez pas sélectionné de client à supprimer Nouveau Client 您還沒有選擇任何客戶進行刪除 新客戶 Вы не выбрали ни клиентов, чтобы удалить. Новый Клиент คุณยังไม่ได้ทำการเลือกลูกค้า ลูกค้าใหม่ Silmek için müşteri seçmediniz Yeni Müşteri Anda belum memilih pelanggan untuk dihapus Pelanggan Baru
11 customers_one_or_multiple customers_none_selected klant(en) verwijderd U hebt geen klanten geselecteerd cliente(s) No has selccionado clientes para ser borrados customer(s) You have not selected any customers to delete client(s) Vous n\\\'avez pas sélectionné de client à supprimer 客戶 您還沒有選擇任何客戶進行刪除 клиент(ов) Вы не выбрали ни клиентов, чтобы удалить. ลูกค้า คุณยังไม่ได้ทำการเลือกลูกค้า müşteri Silmek için müşteri seçmediniz pelanggan Anda belum memilih pelanggan untuk dihapus
12 customers_successful_adding customers_one_or_multiple Klant succesvol aangemaakt klant(en) verwijderd Has agregado satisfactoriamente el cliente cliente(s) You have successfully added customer customer(s) Vous avez ajouté un nouveau client client(s) 成功新增顧客 客戶 Вы успешно добавили клиентов клиент(ов) คุณได้ทำการเพิ่มลูกค้าเรียบร้อยแล้ว ลูกค้า Müşteri eklendi müşteri Anda telah berhasil menambah pelanggan pelanggan
13 customers_successful_deleted customers_successful_adding Er werd(en) Klant succesvol aangemaakt Has borrado satisfactoriamente a Has agregado satisfactoriamente el cliente You have successfully deleted You have successfully added customer Suppréssion réussie Vous avez ajouté un nouveau client 成功刪除 成功新增顧客 Вы успешно удалили Вы успешно добавили клиентов คุณได้ทำการลบข้อมูลเรียบร้อยแล้ว คุณได้ทำการเพิ่มลูกค้าเรียบร้อยแล้ว Silme başarılı Müşteri eklendi Anda telah berhasil menghapus pelanggan Anda telah berhasil menambah pelanggan
14 customers_successful_updating customers_successful_deleted Wijzigingen klantgegevens bewaard voor Er werd(en) No se ha podido agregar el cliente Has borrado satisfactoriamente a You have successfully updated customer You have successfully deleted Édition client réussie Suppréssion réussie 成功更新顧客 成功刪除 Вы успешно обновили клиент Вы успешно удалили คุณได้ทำการแก้ไขข้อมูลลูกค้าเรียบร้อยแล้ว คุณได้ทำการลบข้อมูลเรียบร้อยแล้ว Müşteri güncellendi Silme başarılı Anda telah berhasil memperbarui pelanggan Anda telah berhasil menghapus pelanggan
15 customers_taxable customers_successful_updating Belastbaar Wijzigingen klantgegevens bewaard voor Gravable No se ha podido agregar el cliente Taxable You have successfully updated customer Imposable Édition client réussie 應課稅 成功更新顧客 облагаемый Вы успешно обновили клиент ต้องเสียภาษี คุณได้ทำการแก้ไขข้อมูลลูกค้าเรียบร้อยแล้ว Vergilendirilebilir Müşteri güncellendi Dapat dikenakan pajak Anda telah berhasil memperbarui pelanggan
16 customers_update customers_taxable Bewerk Klant Belastbaar Actualizar Cliente Gravable Update Customer Taxable Éditer Client Imposable 更新客戶 應課稅 Обновлять Клиент облагаемый แก้ไขข้อมูลลูกค้า ต้องเสียภาษี Müşteri Güncelle Vergilendirilebilir Ubah Pelanggan Dapat dikenakan pajak
17 customers_update Bewerk Klant Actualizar Cliente Update Customer Éditer Client 更新客戶 Обновлять Клиент แก้ไขข้อมูลลูกค้า Müşteri Güncelle Ubah Pelanggan