diff --git a/application/controllers/Customers.php b/application/controllers/Customers.php index 8e8ebf1f4..5f446da76 100644 --- a/application/controllers/Customers.php +++ b/application/controllers/Customers.php @@ -347,25 +347,25 @@ class Customers extends Persons } /* - Customers import from excel spreadsheet + Customers import from csv spreadsheet */ - public function excel() + public function csv() { $name = 'import_customers.csv'; $data = file_get_contents('../' . $name); force_download($name, $data); } - public function excel_import() + public function csv_import() { - $this->load->view('customers/form_excel_import', NULL); + $this->load->view('customers/form_csv_import', NULL); } - public function do_excel_import() + public function do_csv_import() { if($_FILES['file_path']['error'] != UPLOAD_ERR_OK) { - echo json_encode(array('success' => FALSE, 'message' => $this->lang->line('customers_excel_import_failed'))); + echo json_encode(array('success' => FALSE, 'message' => $this->lang->line('customers_csv_import_failed'))); } else { @@ -446,18 +446,18 @@ class Customers extends Persons if(count($failCodes) > 0) { - $message = $this->lang->line('customers_excel_import_partially_failed') . ' (' . count($failCodes) . '): ' . implode(', ', $failCodes); + $message = $this->lang->line('customers_csv_import_partially_failed') . ' (' . count($failCodes) . '): ' . implode(', ', $failCodes); echo json_encode(array('success' => FALSE, 'message' => $message)); } else { - echo json_encode(array('success' => TRUE, 'message' => $this->lang->line('customers_excel_import_success'))); + echo json_encode(array('success' => TRUE, 'message' => $this->lang->line('customers_csv_import_success'))); } } else { - echo json_encode(array('success' => FALSE, 'message' => $this->lang->line('customers_excel_import_nodata_wrongformat'))); + echo json_encode(array('success' => FALSE, 'message' => $this->lang->line('customers_csv_import_nodata_wrongformat'))); } } } diff --git a/application/controllers/Items.php b/application/controllers/Items.php index ea01dd713..9025b8d75 100644 --- a/application/controllers/Items.php +++ b/application/controllers/Items.php @@ -785,9 +785,9 @@ class Items extends Secure_Controller } /* - Items import from excel spreadsheet + Items import from csv spreadsheet */ - public function excel() + public function csv() { $name = 'import_items.csv'; $allowed_locations = $this->Stock_location->get_allowed_locations(); @@ -796,19 +796,19 @@ class Items extends Secure_Controller force_download($name, $data, TRUE); } - public function excel_import() + public function csv_import() { - $this->load->view('items/form_excel_import', NULL); + $this->load->view('items/form_csv_import', NULL); } /** * Imports items from CSV formatted file. */ - public function do_excel_import() + public function do_csv_import() { if($_FILES['file_path']['error'] != UPLOAD_ERR_OK) { - echo json_encode(array('success' => FALSE, 'message' => $this->lang->line('items_excel_import_failed'))); + echo json_encode(array('success' => FALSE, 'message' => $this->lang->line('items_csv_import_failed'))); } else { @@ -876,19 +876,19 @@ class Items extends Secure_Controller if(count($failCodes) > 0) { - $message = $this->lang->line('items_excel_import_partially_failed', count($failCodes), implode(', ', $failCodes)); + $message = $this->lang->line('items_csv_import_partially_failed', count($failCodes), implode(', ', $failCodes)); $this->db->trans_rollback(); echo json_encode(array('success' => FALSE, 'message' => $message)); } else { $this->db->trans_commit(); - echo json_encode(array('success' => TRUE, 'message' => $this->lang->line('items_excel_import_success'))); + echo json_encode(array('success' => TRUE, 'message' => $this->lang->line('items_csv_import_success'))); } } else { - echo json_encode(array('success' => FALSE, 'message' => $this->lang->line('items_excel_import_nodata_wrongformat'))); + echo json_encode(array('success' => FALSE, 'message' => $this->lang->line('items_csv_import_nodata_wrongformat'))); } } } @@ -1035,7 +1035,7 @@ class Items extends Secure_Controller 'location_id' => $location_id ); - $excel_data = array( + $csv_data = array( 'trans_items' => $item_data['item_id'], 'trans_user' => $employee_id, 'trans_comment' => $comment, @@ -1047,16 +1047,16 @@ class Items extends Secure_Controller $item_quantity_data['quantity'] = $line['location_' . $location_name]; $this->Item_quantity->save($item_quantity_data, $item_data['item_id'], $location_id); - $excel_data['trans_inventory'] = $line['location_' . $location_name]; - $this->Inventory->insert($excel_data); + $csv_data['trans_inventory'] = $line['location_' . $location_name]; + $this->Inventory->insert($csv_data); } else { $item_quantity_data['quantity'] = 0; $this->Item_quantity->save($item_quantity_data, $item_data['item_id'], $line[$col]); - $excel_data['trans_inventory'] = 0; - $this->Inventory->insert($excel_data); + $csv_data['trans_inventory'] = 0; + $this->Inventory->insert($csv_data); } } } diff --git a/application/helpers/importfile_helper.php b/application/helpers/importfile_helper.php index 4914a758e..ff2dd878e 100644 --- a/application/helpers/importfile_helper.php +++ b/application/helpers/importfile_helper.php @@ -62,6 +62,12 @@ function get_csv_file($file_name) if(($csv_file = fopen($file_name,'r')) !== FALSE) { + //Skip Byte-Order Mark + if(bom_exists($csv_file) === TRUE) + { + fseek($csv_file, 3); + } + while (($data = fgetcsv($csv_file)) !== FALSE) { $line_array[] = $data; @@ -74,4 +80,27 @@ function get_csv_file($file_name) return $line_array; } + +/** + * Checks the first three characters of a file for the Byte-Order Mark then returns the file position to the first character. + * + * @param object $file_handle File handle to check + * @return bool Returns TRUE if the BOM exists and FALSE otherwise. + */ +function bom_exists(&$file_handle) +{ + $str = fread($file_handle,3); + rewind($file_handle); + + $bom = pack("CCC", 0xef, 0xbb, 0xbf); + + if (0 === strncmp($str, $bom, 3)) + { + return TRUE; + } + else + { + return FALSE; + } +} ?> \ No newline at end of file diff --git a/application/language/ar-EG/common_lang.php b/application/language/ar-EG/common_lang.php index 446ecd1d3..a7899d03b 100644 --- a/application/language/ar-EG/common_lang.php +++ b/application/language/ar-EG/common_lang.php @@ -16,9 +16,9 @@ $lang["common_download_import_template"] = "تنزيل قالب الاستيرا $lang["common_edit"] = "تحرير"; $lang["common_email"] = "بريد إلكتروني"; $lang["common_email_invalid_format"] = "شكل البريد الإلكتروني غير صحيح."; -$lang["common_export_excel"] = "تصدير إلى اكسل"; -$lang["common_export_excel_no"] = "لا"; -$lang["common_export_excel_yes"] = "نعم"; +$lang["common_export_csv"] = "تصدير إلى اكسل"; +$lang["common_export_csv_no"] = "لا"; +$lang["common_export_csv_yes"] = "نعم"; $lang["common_fields_required_message"] = "الحقول التي بالأحمر مطلوبة"; $lang["common_first_name"] = "الاسم الأول"; $lang["common_first_name_required"] = "الاسم الأول مطلوب."; @@ -29,7 +29,7 @@ $lang["common_gender_male"] = "ذكر"; $lang["common_id"] = "كود"; $lang["common_import"] = "استيراد"; $lang["common_import_change_file"] = "تغيير"; -$lang["common_import_excel"] = "استيراد من اكسل"; +$lang["common_import_csv"] = "استيراد من اكسل"; $lang["common_import_full_path"] = "المسار الكامل لملف اكسل مطلوب"; $lang["common_import_remove_file"] = "إزالة"; $lang["common_import_select_file"] = "اختار ملف"; diff --git a/application/language/ar-EG/customers_lang.php b/application/language/ar-EG/customers_lang.php index 20d06ab59..660b91b12 100644 --- a/application/language/ar-EG/customers_lang.php +++ b/application/language/ar-EG/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = "نوع الحسم"; $lang["customers_email_duplicate"] = "البريد الالكتروني مكرر."; $lang["customers_employee"] = "الموظف"; $lang["customers_error_adding_updating"] = "خطاء فى إضافة أو تحديث العميل."; -$lang["customers_excel_import_failed"] = "فشل الإستيراد من اكسل"; -$lang["customers_excel_import_nodata_wrongformat"] = "الملف الذى رفعته إما فارغ أو أنه مختلف البنية."; -$lang["customers_excel_import_partially_failed"] = "تم استيراد معظم العملاء. البعض لم يتم استيرادهم ، وهذه هى القائمة:"; -$lang["customers_excel_import_success"] = "تم استيراد العملاء بنجاح."; -$lang["customers_import_items_excel"] = "استيراد العملا ء من ورقة عمل اكسل"; +$lang["customers_csv_import_failed"] = "فشل الإستيراد من اكسل"; +$lang["customers_csv_import_nodata_wrongformat"] = "الملف الذى رفعته إما فارغ أو أنه مختلف البنية."; +$lang["customers_csv_import_partially_failed"] = "تم استيراد معظم العملاء. البعض لم يتم استيرادهم ، وهذه هى القائمة:"; +$lang["customers_csv_import_success"] = "تم استيراد العملاء بنجاح."; +$lang["customers_import_items_csv"] = "استيراد العملا ء من ورقة عمل اكسل"; $lang["customers_mailchimp_activity_click"] = "النقر على البريد الإلكتروني"; $lang["customers_mailchimp_activity_lastopen"] = "آخر رسالة إلكترونية مفتوحة"; $lang["customers_mailchimp_activity_open"] = "رسالة إلكترونية مفتوحة"; diff --git a/application/language/ar-EG/giftcards_lang.php b/application/language/ar-EG/giftcards_lang.php index ffdc2b6fa..9db438070 100644 --- a/application/language/ar-EG/giftcards_lang.php +++ b/application/language/ar-EG/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "قم بتحديث الحق $lang["giftcards_edit_multiple_giftcards"] = "تحرير مجموعة من بطاقات الهدايا."; $lang["giftcards_error_adding_updating"] = "خطاء فى إضافة/تحديث بطاقة هدية."; $lang["giftcards_error_updating_multiple"] = "خطاء فى تحديث بيانات بطاقات الهدايا."; -$lang["giftcards_excel_import_failed"] = "فشل الإستيراد من اكسل."; +$lang["giftcards_csv_import_failed"] = "فشل الإستيراد من اكسل."; $lang["giftcards_generate_barcodes"] = "توليد أكواد الباركود"; $lang["giftcards_giftcard"] = "بطاقة هدية"; $lang["giftcards_giftcard_number"] = "رقم بطاقة الهدية"; diff --git a/application/language/ar-EG/items_lang.php b/application/language/ar-EG/items_lang.php index 61df41280..84874f031 100644 --- a/application/language/ar-EG/items_lang.php +++ b/application/language/ar-EG/items_lang.php @@ -31,14 +31,14 @@ $lang["items_edit_multiple_items"] = "تحريد مجموعة اصناف"; $lang["items_empty_upc_items"] = "تفريغ اصناف UPC"; $lang["items_error_adding_updating"] = "خطاء فى إضافة/تحديث صنف"; $lang["items_error_updating_multiple"] = "خطاء فى تحديث بيانات أصناف"; -$lang["items_excel_import_failed"] = "فشل الإستيراد من اكسل"; -$lang["items_excel_import_nodata_wrongformat"] = "الملف الذى رفعته إما فارغ أو أنه مختلف البنية."; -$lang["items_excel_import_partially_failed"] = "يوجد خطأ بنسبة 1% في استيراد الاصناف في السطر: %2. لم يتم استيرادهم."; -$lang["items_excel_import_success"] = "تم استيراد الأصناف بنجاح."; +$lang["items_csv_import_failed"] = "فشل الإستيراد من اكسل"; +$lang["items_csv_import_nodata_wrongformat"] = "الملف الذى رفعته إما فارغ أو أنه مختلف البنية."; +$lang["items_csv_import_partially_failed"] = "يوجد خطأ بنسبة 1% في استيراد الاصناف في السطر: %2. لم يتم استيرادهم."; +$lang["items_csv_import_success"] = "تم استيراد الأصناف بنجاح."; $lang["items_generate_barcodes"] = "توليد أكواد الباركود"; $lang["items_hsn_code"] = "تسميات النظام المنسق"; $lang["items_image"] = "صورة"; -$lang["items_import_items_excel"] = "استيراد من اكسل"; +$lang["items_import_items_csv"] = "استيراد من اكسل"; $lang["items_info_provided_by"] = "المعلومات مقدمة بواسطة"; $lang["items_inventory"] = "المخزن"; $lang["items_inventory_comments"] = "تعليقات"; diff --git a/application/language/ar-LB/common_lang.php b/application/language/ar-LB/common_lang.php index 446ecd1d3..a7899d03b 100644 --- a/application/language/ar-LB/common_lang.php +++ b/application/language/ar-LB/common_lang.php @@ -16,9 +16,9 @@ $lang["common_download_import_template"] = "تنزيل قالب الاستيرا $lang["common_edit"] = "تحرير"; $lang["common_email"] = "بريد إلكتروني"; $lang["common_email_invalid_format"] = "شكل البريد الإلكتروني غير صحيح."; -$lang["common_export_excel"] = "تصدير إلى اكسل"; -$lang["common_export_excel_no"] = "لا"; -$lang["common_export_excel_yes"] = "نعم"; +$lang["common_export_csv"] = "تصدير إلى اكسل"; +$lang["common_export_csv_no"] = "لا"; +$lang["common_export_csv_yes"] = "نعم"; $lang["common_fields_required_message"] = "الحقول التي بالأحمر مطلوبة"; $lang["common_first_name"] = "الاسم الأول"; $lang["common_first_name_required"] = "الاسم الأول مطلوب."; @@ -29,7 +29,7 @@ $lang["common_gender_male"] = "ذكر"; $lang["common_id"] = "كود"; $lang["common_import"] = "استيراد"; $lang["common_import_change_file"] = "تغيير"; -$lang["common_import_excel"] = "استيراد من اكسل"; +$lang["common_import_csv"] = "استيراد من اكسل"; $lang["common_import_full_path"] = "المسار الكامل لملف اكسل مطلوب"; $lang["common_import_remove_file"] = "إزالة"; $lang["common_import_select_file"] = "اختار ملف"; diff --git a/application/language/ar-LB/customers_lang.php b/application/language/ar-LB/customers_lang.php index 20d06ab59..660b91b12 100644 --- a/application/language/ar-LB/customers_lang.php +++ b/application/language/ar-LB/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = "نوع الحسم"; $lang["customers_email_duplicate"] = "البريد الالكتروني مكرر."; $lang["customers_employee"] = "الموظف"; $lang["customers_error_adding_updating"] = "خطاء فى إضافة أو تحديث العميل."; -$lang["customers_excel_import_failed"] = "فشل الإستيراد من اكسل"; -$lang["customers_excel_import_nodata_wrongformat"] = "الملف الذى رفعته إما فارغ أو أنه مختلف البنية."; -$lang["customers_excel_import_partially_failed"] = "تم استيراد معظم العملاء. البعض لم يتم استيرادهم ، وهذه هى القائمة:"; -$lang["customers_excel_import_success"] = "تم استيراد العملاء بنجاح."; -$lang["customers_import_items_excel"] = "استيراد العملا ء من ورقة عمل اكسل"; +$lang["customers_csv_import_failed"] = "فشل الإستيراد من اكسل"; +$lang["customers_csv_import_nodata_wrongformat"] = "الملف الذى رفعته إما فارغ أو أنه مختلف البنية."; +$lang["customers_csv_import_partially_failed"] = "تم استيراد معظم العملاء. البعض لم يتم استيرادهم ، وهذه هى القائمة:"; +$lang["customers_csv_import_success"] = "تم استيراد العملاء بنجاح."; +$lang["customers_import_items_csv"] = "استيراد العملا ء من ورقة عمل اكسل"; $lang["customers_mailchimp_activity_click"] = "النقر على البريد الإلكتروني"; $lang["customers_mailchimp_activity_lastopen"] = "آخر رسالة إلكترونية مفتوحة"; $lang["customers_mailchimp_activity_open"] = "رسالة إلكترونية مفتوحة"; diff --git a/application/language/ar-LB/giftcards_lang.php b/application/language/ar-LB/giftcards_lang.php index ffdc2b6fa..9db438070 100644 --- a/application/language/ar-LB/giftcards_lang.php +++ b/application/language/ar-LB/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "قم بتحديث الحق $lang["giftcards_edit_multiple_giftcards"] = "تحرير مجموعة من بطاقات الهدايا."; $lang["giftcards_error_adding_updating"] = "خطاء فى إضافة/تحديث بطاقة هدية."; $lang["giftcards_error_updating_multiple"] = "خطاء فى تحديث بيانات بطاقات الهدايا."; -$lang["giftcards_excel_import_failed"] = "فشل الإستيراد من اكسل."; +$lang["giftcards_csv_import_failed"] = "فشل الإستيراد من اكسل."; $lang["giftcards_generate_barcodes"] = "توليد أكواد الباركود"; $lang["giftcards_giftcard"] = "بطاقة هدية"; $lang["giftcards_giftcard_number"] = "رقم بطاقة الهدية"; diff --git a/application/language/ar-LB/items_lang.php b/application/language/ar-LB/items_lang.php index 04c1bba76..0119e976e 100644 --- a/application/language/ar-LB/items_lang.php +++ b/application/language/ar-LB/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "تحريد مجموعة اصناف"; $lang["items_empty_upc_items"] = "تفريغ اصناف UPC"; $lang["items_error_adding_updating"] = "خطاء فى إضافة/تحديث صنف"; $lang["items_error_updating_multiple"] = "خطاء فى تحديث بيانات أصناف"; -$lang["items_excel_import_failed"] = "فشل الإستيراد من اكسل"; -$lang["items_excel_import_nodata_wrongformat"] = "الملف الذى رفعته إما فارغ أو أنه مختلف البنية."; -$lang["items_excel_import_partially_failed"] = "تم استيراد معظم الأصناف. البعض لم يتم استيرادهم ، وهذه هى القائمة:"; -$lang["items_excel_import_success"] = "تم استيراد الأصناف بنجاح."; +$lang["items_csv_import_failed"] = "فشل الإستيراد من اكسل"; +$lang["items_csv_import_nodata_wrongformat"] = "الملف الذى رفعته إما فارغ أو أنه مختلف البنية."; +$lang["items_csv_import_partially_failed"] = "تم استيراد معظم الأصناف. البعض لم يتم استيرادهم ، وهذه هى القائمة:"; +$lang["items_csv_import_success"] = "تم استيراد الأصناف بنجاح."; $lang["items_generate_barcodes"] = "توليد أكواد الباركود"; $lang["items_hsn_code"] = "تسميات النظام المنسق"; $lang["items_image"] = "صورة"; -$lang["items_import_items_excel"] = "استيراد من اكسل"; +$lang["items_import_items_csv"] = "استيراد من اكسل"; $lang["items_info_provided_by"] = "المعلومات مقدمة بواسطة"; $lang["items_inventory"] = "المخزن"; $lang["items_inventory_comments"] = "تعليقات"; @@ -109,3 +109,4 @@ $lang["items_unit_price_required"] = "السعر مطلوب."; $lang["items_upc_database"] = "UPC قاعدة بيانات"; $lang["items_update"] = "تحديث بيانات صنف"; $lang["items_use_inventory_menu"] = "استخدام تحديث المخزن"; +$lang["items_inventory_CSV_import_quantity"] = "العدد المستورد من ملفات ال CSV"; \ No newline at end of file diff --git a/application/language/az-AZ/common_lang.php b/application/language/az-AZ/common_lang.php index a5580f7e4..f9783101b 100644 --- a/application/language/az-AZ/common_lang.php +++ b/application/language/az-AZ/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Ölkə"; $lang["common_date"] = "Təqvim"; $lang["common_delete"] = "Sil"; $lang["common_det"] = "detallar"; -$lang["common_download_import_template"] = "İdxal Excel Şablonunu Yüklə (CSV)"; +$lang["common_download_import_template"] = "İdxal CSV Şablonunu Yüklə (CSV)"; $lang["common_edit"] = "Redaktə Et"; $lang["common_email"] = "E-poçt"; $lang["common_email_invalid_format"] = "E-poçt ünvanı düzgün formatda deyil."; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "Xeyir"; -$lang["common_export_excel_yes"] = "Bəli"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "Xeyir"; +$lang["common_export_csv_yes"] = "Bəli"; $lang["common_fields_required_message"] = "Qırmızı sahələr tələb olunur"; $lang["common_first_name"] = "Ad"; $lang["common_first_name_required"] = "Ad yazmağınız tələb olunur."; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "ID"; $lang["common_import"] = "İmport"; $lang["common_import_change_file"] = "Dəyiş"; -$lang["common_import_excel"] = "Excel Import"; -$lang["common_import_full_path"] = "Excel faylına tam yol tələb olunur"; +$lang["common_import_csv"] = "CSV Import"; +$lang["common_import_full_path"] = "CSV faylına tam yol tələb olunur"; $lang["common_import_remove_file"] = "Sil(Gizlət)"; $lang["common_import_select_file"] = "Fayl Seç"; $lang["common_inv"] = "Qaimə"; diff --git a/application/language/az-AZ/customers_lang.php b/application/language/az-AZ/customers_lang.php index 8485665b4..c23ea869b 100644 --- a/application/language/az-AZ/customers_lang.php +++ b/application/language/az-AZ/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = "Endirim növü"; $lang["customers_email_duplicate"] = "Məlumat bazasında artıq bu e-poçt ünvanı var."; $lang["customers_employee"] = "Əməkdaş"; $lang["customers_error_adding_updating"] = "Müştəri əlavəsində ya da yenilənməsində XƏTA."; -$lang["customers_excel_import_failed"] = "Excel idxalı alınmadı"; -$lang["customers_excel_import_nodata_wrongformat"] = "Yüklənmiş faylda məlumat yoxdur və ya düzgün formatda deyil."; -$lang["customers_excel_import_partially_failed"] = "Müştəri əlavəsi bəzi səhvlər olmaqla uğurla alındı:"; -$lang["customers_excel_import_success"] = "Müştəri Əlavəsi uğurla alındı."; -$lang["customers_import_items_excel"] = "Exceldən müştəri əlavə et"; +$lang["customers_csv_import_failed"] = "CSV idxalı alınmadı"; +$lang["customers_csv_import_nodata_wrongformat"] = "Yüklənmiş faylda məlumat yoxdur və ya düzgün formatda deyil."; +$lang["customers_csv_import_partially_failed"] = "Müştəri əlavəsi bəzi səhvlər olmaqla uğurla alındı:"; +$lang["customers_csv_import_success"] = "Müştəri Əlavəsi uğurla alındı."; +$lang["customers_import_items_csv"] = "CSVdən müştəri əlavə et"; $lang["customers_mailchimp_activity_click"] = "Elektron poçt düyməsi"; $lang["customers_mailchimp_activity_lastopen"] = "Son açılan məktub"; $lang["customers_mailchimp_activity_open"] = "Açıq məktub"; diff --git a/application/language/az-AZ/giftcards_lang.php b/application/language/az-AZ/giftcards_lang.php index 0c322dfc5..d3de1925a 100644 --- a/application/language/az-AZ/giftcards_lang.php +++ b/application/language/az-AZ/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Seçilmiş Hədiyyə Kartla $lang["giftcards_edit_multiple_giftcards"] = "Birneçə Hədiyyə Kartını redaktə et."; $lang["giftcards_error_adding_updating"] = "Hədiyyə Kartı əlavə və ya yenilənməsində XƏTA."; $lang["giftcards_error_updating_multiple"] = "Hədiyyə kartlarının yeniləməsi uğursuz oldu."; -$lang["giftcards_excel_import_failed"] = "Excel idxalı uğursuz oldu."; +$lang["giftcards_csv_import_failed"] = "CSV idxalı uğursuz oldu."; $lang["giftcards_generate_barcodes"] = "Barkodlar Yarat"; $lang["giftcards_giftcard"] = "Hədiyyə Kartı"; $lang["giftcards_giftcard_number"] = "Hədiyyə Kartı Nömrəsi"; diff --git a/application/language/az-AZ/items_lang.php b/application/language/az-AZ/items_lang.php index 1e66cae90..4b9f7de42 100644 --- a/application/language/az-AZ/items_lang.php +++ b/application/language/az-AZ/items_lang.php @@ -31,14 +31,14 @@ $lang["items_edit_multiple_items"] = "bir neçə malın redaktəsi"; $lang["items_empty_upc_items"] = "Boş Barkod Malları"; $lang["items_error_adding_updating"] = "mal əlavə etməkdə və ya yeniləməkdə səhv var"; $lang["items_error_updating_multiple"] = "malların yenilənməsində səhv var"; -$lang["items_excel_import_failed"] = "səhv excel import"; -$lang["items_excel_import_nodata_wrongformat"] = "Yüklənmiş faylda məlumat yoxdur və ya düzgün formatlanmır."; -$lang["items_excel_import_partially_failed"] = "Xətlərdə %1 element idxalı uğursuzluq (lar) var: %2. Heç bir sıra idxal edilmədi."; -$lang["items_excel_import_success"] = "Malların İdxalı Uğurla Həyata Keçdi."; +$lang["items_csv_import_failed"] = "səhv csv import"; +$lang["items_csv_import_nodata_wrongformat"] = "Yüklənmiş faylda məlumat yoxdur və ya düzgün formatlanmır."; +$lang["items_csv_import_partially_failed"] = "Xətlərdə %1 element idxalı uğursuzluq (lar) var: %2. Heç bir sıra idxal edilmədi."; +$lang["items_csv_import_success"] = "Malların İdxalı Uğurla Həyata Keçdi."; $lang["items_generate_barcodes"] = "şifrə yarat"; $lang["items_hsn_code"] = "Harmonize Sistem Nomenklaturası"; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Exceldən Malları İdxal Et"; +$lang["items_import_items_csv"] = "CSVdən Malları İdxal Et"; $lang["items_info_provided_by"] = "Məlumat təqdim olundu"; $lang["items_inventory"] = "inventor"; $lang["items_inventory_comments"] = "komentariyalar"; diff --git a/application/language/bg/common_lang.php b/application/language/bg/common_lang.php index 03e4767af..2769b4a4e 100644 --- a/application/language/bg/common_lang.php +++ b/application/language/bg/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Държава"; $lang["common_date"] = "Дата"; $lang["common_delete"] = "Изтриване"; $lang["common_det"] = "Детайли"; -$lang["common_download_import_template"] = "Изтегляне на шаблон за импортиране на Excel (CSV)"; +$lang["common_download_import_template"] = "Изтегляне на шаблон за импортиране на CSV (CSV)"; $lang["common_edit"] = "Редактиране"; $lang["common_email"] = "Електронна поща"; $lang["common_email_invalid_format"] = "Имейл адресът не е в правилния формат."; -$lang["common_export_excel"] = "Експорт на Excel"; -$lang["common_export_excel_no"] = "Не"; -$lang["common_export_excel_yes"] = "Да"; +$lang["common_export_csv"] = "Експорт на CSV"; +$lang["common_export_csv_no"] = "Не"; +$lang["common_export_csv_yes"] = "Да"; $lang["common_fields_required_message"] = "Полетата в червено са задължителни"; $lang["common_first_name"] = "Име"; $lang["common_first_name_required"] = "Име е задължително поле."; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "М"; $lang["common_id"] = "Номер"; $lang["common_import"] = "Внос"; $lang["common_import_change_file"] = "Промяна"; -$lang["common_import_excel"] = "Внос на Excel"; -$lang["common_import_full_path"] = "Необходим е пълен пътека към файл с Excel"; +$lang["common_import_csv"] = "Внос на CSV"; +$lang["common_import_full_path"] = "Необходим е пълен пътека към файл с CSV"; $lang["common_import_remove_file"] = "Премахване"; $lang["common_import_select_file"] = "Изберете файл"; $lang["common_inv"] = "Покана"; diff --git a/application/language/bg/customers_lang.php b/application/language/bg/customers_lang.php index 7d77c64d1..e8abf03f1 100644 --- a/application/language/bg/customers_lang.php +++ b/application/language/bg/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = "Имейл адресът вече е в базата данни."; $lang["customers_employee"] = "Служител"; $lang["customers_error_adding_updating"] = "Добавянето или актуализирането на клиента е неуспешно."; -$lang["customers_excel_import_failed"] = "Вносът от Excel не бе успешен"; -$lang["customers_excel_import_nodata_wrongformat"] = "Каченият файл няма данни или е неправилно форматиран."; -$lang["customers_excel_import_partially_failed"] = "Вносът на клиента е успешен с няколко грешки:"; -$lang["customers_excel_import_success"] = "Вносът на клиенти е успешен."; -$lang["customers_import_items_excel"] = "Импортиране на клиент от Excel"; +$lang["customers_csv_import_failed"] = "Вносът от CSV не бе успешен"; +$lang["customers_csv_import_nodata_wrongformat"] = "Каченият файл няма данни или е неправилно форматиран."; +$lang["customers_csv_import_partially_failed"] = "Вносът на клиента е успешен с няколко грешки:"; +$lang["customers_csv_import_success"] = "Вносът на клиенти е успешен."; +$lang["customers_import_items_csv"] = "Импортиране на клиент от CSV"; $lang["customers_mailchimp_activity_click"] = "Email click"; $lang["customers_mailchimp_activity_lastopen"] = "Последно отворен Имейл"; $lang["customers_mailchimp_activity_open"] = "Имейлът е отворен"; diff --git a/application/language/bg/giftcards_lang.php b/application/language/bg/giftcards_lang.php index 8f7876b96..f4f754fee 100644 --- a/application/language/bg/giftcards_lang.php +++ b/application/language/bg/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Edit desired fields for sel $lang["giftcards_edit_multiple_giftcards"] = "Edit Multiple Gift Cards."; $lang["giftcards_error_adding_updating"] = "Gift Card add or update failed."; $lang["giftcards_error_updating_multiple"] = "Gift Card(s) update failed."; -$lang["giftcards_excel_import_failed"] = "Excel import failed."; +$lang["giftcards_csv_import_failed"] = "CSV import failed."; $lang["giftcards_generate_barcodes"] = "Generate Barcodes"; $lang["giftcards_giftcard"] = "Gift Card"; $lang["giftcards_giftcard_number"] = "Gift Card Number"; diff --git a/application/language/bg/items_lang.php b/application/language/bg/items_lang.php index 5ed790973..ce79f2c23 100644 --- a/application/language/bg/items_lang.php +++ b/application/language/bg/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Editing Multiple Items"; $lang["items_empty_upc_items"] = "Empty Barcode Items"; $lang["items_error_adding_updating"] = "Error adding/updating item"; $lang["items_error_updating_multiple"] = "Error updating items"; -$lang["items_excel_import_failed"] = "Excel import failed"; -$lang["items_excel_import_nodata_wrongformat"] = "The uploaded file has no data or is formatted incorrectly."; -$lang["items_excel_import_partially_failed"] = "Item import successful with some failures:"; -$lang["items_excel_import_success"] = "Item import successful."; +$lang["items_csv_import_failed"] = "CSV import failed"; +$lang["items_csv_import_nodata_wrongformat"] = "The uploaded file has no data or is formatted incorrectly."; +$lang["items_csv_import_partially_failed"] = "Item import successful with some failures:"; +$lang["items_csv_import_success"] = "Item import successful."; $lang["items_generate_barcodes"] = "Generate Barcodes"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Item Import from Excel"; +$lang["items_import_items_csv"] = "Item Import from CSV"; $lang["items_info_provided_by"] = "Information provided by"; $lang["items_inventory"] = "Inventory"; $lang["items_inventory_comments"] = "Comments"; diff --git a/application/language/cs/common_lang.php b/application/language/cs/common_lang.php index 31b5611d9..83e0a51a2 100644 --- a/application/language/cs/common_lang.php +++ b/application/language/cs/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Země"; $lang["common_date"] = "Datum"; $lang["common_delete"] = "Smazat"; $lang["common_det"] = "podrobnosti"; -$lang["common_download_import_template"] = "Stáhnout šablonu pro Excel (CSV)"; +$lang["common_download_import_template"] = "Stáhnout šablonu pro CSV (CSV)"; $lang["common_edit"] = "upravit"; $lang["common_email"] = "Email"; $lang["common_email_invalid_format"] = "Emailová adresa má špatný formát."; -$lang["common_export_excel"] = "Export do Excelu"; -$lang["common_export_excel_no"] = "Ne"; -$lang["common_export_excel_yes"] = "Ano"; +$lang["common_export_csv"] = "Export do CSVu"; +$lang["common_export_csv_no"] = "Ne"; +$lang["common_export_csv_yes"] = "Ano"; $lang["common_fields_required_message"] = "Červená pole jsou vyžadována"; $lang["common_first_name"] = "Jméno"; $lang["common_first_name_required"] = "Jméno je vyžadováno."; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Změnit"; -$lang["common_import_excel"] = "Import z Excelu"; -$lang["common_import_full_path"] = "Úplná cesta k souboru Excel je vyžadována"; +$lang["common_import_csv"] = "Import z CSVu"; +$lang["common_import_full_path"] = "Úplná cesta k souboru CSV je vyžadována"; $lang["common_import_remove_file"] = "Vyjmout"; $lang["common_import_select_file"] = "Vybrat soubor"; $lang["common_inv"] = ""; diff --git a/application/language/cs/customers_lang.php b/application/language/cs/customers_lang.php index 2819d98ca..c07c3fcab 100644 --- a/application/language/cs/customers_lang.php +++ b/application/language/cs/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = ""; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = ""; -$lang["customers_excel_import_failed"] = ""; -$lang["customers_excel_import_nodata_wrongformat"] = ""; -$lang["customers_excel_import_partially_failed"] = ""; -$lang["customers_excel_import_success"] = ""; -$lang["customers_import_items_excel"] = ""; +$lang["customers_csv_import_failed"] = ""; +$lang["customers_csv_import_nodata_wrongformat"] = ""; +$lang["customers_csv_import_partially_failed"] = ""; +$lang["customers_csv_import_success"] = ""; +$lang["customers_import_items_csv"] = ""; $lang["customers_mailchimp_activity_click"] = ""; $lang["customers_mailchimp_activity_lastopen"] = ""; $lang["customers_mailchimp_activity_open"] = ""; diff --git a/application/language/cs/giftcards_lang.php b/application/language/cs/giftcards_lang.php index 251762795..604b32ce7 100644 --- a/application/language/cs/giftcards_lang.php +++ b/application/language/cs/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = ""; $lang["giftcards_edit_multiple_giftcards"] = ""; $lang["giftcards_error_adding_updating"] = ""; $lang["giftcards_error_updating_multiple"] = ""; -$lang["giftcards_excel_import_failed"] = ""; +$lang["giftcards_csv_import_failed"] = ""; $lang["giftcards_generate_barcodes"] = ""; $lang["giftcards_giftcard"] = ""; $lang["giftcards_giftcard_number"] = ""; diff --git a/application/language/cs/items_lang.php b/application/language/cs/items_lang.php index 2cb15918f..0e1d2b2c3 100644 --- a/application/language/cs/items_lang.php +++ b/application/language/cs/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Úpravy více položek"; $lang["items_empty_upc_items"] = "Položky bez čárového kódu"; $lang["items_error_adding_updating"] = "Chyba při přidávání či úpravě položek"; $lang["items_error_updating_multiple"] = "Chyba při úpravě položek"; -$lang["items_excel_import_failed"] = "Import z Excelu se nepovedl"; -$lang["items_excel_import_nodata_wrongformat"] = "Nahraný soubor neobsahuje žádná data nebo má špatný formát."; -$lang["items_excel_import_partially_failed"] = "Při importu položek došlo k několika chybám:"; -$lang["items_excel_import_success"] = "Import položek proběhl bez chyby."; +$lang["items_csv_import_failed"] = "Import z CSVu se nepovedl"; +$lang["items_csv_import_nodata_wrongformat"] = "Nahraný soubor neobsahuje žádná data nebo má špatný formát."; +$lang["items_csv_import_partially_failed"] = "Při importu položek došlo k několika chybám:"; +$lang["items_csv_import_success"] = "Import položek proběhl bez chyby."; $lang["items_generate_barcodes"] = "Vytvořit čárový kód"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Import položek z Excelu"; +$lang["items_import_items_csv"] = "Import položek z CSVu"; $lang["items_info_provided_by"] = ""; $lang["items_inventory"] = ""; $lang["items_inventory_comments"] = "Komentář"; diff --git a/application/language/de-CH/common_lang.php b/application/language/de-CH/common_lang.php index 13f3b391f..3de1131e2 100644 --- a/application/language/de-CH/common_lang.php +++ b/application/language/de-CH/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Land"; $lang["common_date"] = "Datum"; $lang["common_delete"] = "Löschen"; $lang["common_det"] = "Details"; -$lang["common_download_import_template"] = "Download Import Excel Voralge (CSV)"; +$lang["common_download_import_template"] = "Download Import CSV Voralge (CSV)"; $lang["common_edit"] = "Ändern"; $lang["common_email"] = "Email"; $lang["common_email_invalid_format"] = "Das Email Format ist nicht korrekt"; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "Yes"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "Yes"; $lang["common_fields_required_message"] = "Die Felder in rot sind erforderlich"; $lang["common_first_name"] = "Vorname"; $lang["common_first_name_required"] = "Vorname ist erforderlich"; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Change"; -$lang["common_import_excel"] = "Excel Import"; -$lang["common_import_full_path"] = "Voller Dateipfad zum Excel File notwendig"; +$lang["common_import_csv"] = "CSV Import"; +$lang["common_import_full_path"] = "Voller Dateipfad zum CSV File notwendig"; $lang["common_import_remove_file"] = "Remove"; $lang["common_import_select_file"] = "Select file"; $lang["common_inv"] = "Lag"; diff --git a/application/language/de-CH/customers_lang.php b/application/language/de-CH/customers_lang.php index 97d2b6ac5..9f6abc6e5 100644 --- a/application/language/de-CH/customers_lang.php +++ b/application/language/de-CH/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = ""; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = "Fehler beim Hinzufügen/Ändern"; -$lang["customers_excel_import_failed"] = "Excel Import fehlerhaft"; -$lang["customers_excel_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; -$lang["customers_excel_import_partially_failed"] = "Most Customers imported. But some were not, here is the list"; -$lang["customers_excel_import_success"] = "Import of Customers successful"; -$lang["customers_import_items_excel"] = "Importiere Kunden via Excel"; +$lang["customers_csv_import_failed"] = "CSV Import fehlerhaft"; +$lang["customers_csv_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; +$lang["customers_csv_import_partially_failed"] = "Most Customers imported. But some were not, here is the list"; +$lang["customers_csv_import_success"] = "Import of Customers successful"; +$lang["customers_import_items_csv"] = "Importiere Kunden via CSV"; $lang["customers_mailchimp_activity_click"] = ""; $lang["customers_mailchimp_activity_lastopen"] = ""; $lang["customers_mailchimp_activity_open"] = ""; diff --git a/application/language/de-CH/giftcards_lang.php b/application/language/de-CH/giftcards_lang.php index e35872ce8..3ef9555dc 100644 --- a/application/language/de-CH/giftcards_lang.php +++ b/application/language/de-CH/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Wollen Sie die Felder für $lang["giftcards_edit_multiple_giftcards"] = "Sammeländerung"; $lang["giftcards_error_adding_updating"] = "Fehler beim Hinzufügen/Ändern"; $lang["giftcards_error_updating_multiple"] = "Fehler beim Ändern"; -$lang["giftcards_excel_import_failed"] = "Excel Import fehlerhaft"; +$lang["giftcards_csv_import_failed"] = "CSV Import fehlerhaft"; $lang["giftcards_generate_barcodes"] = "Generiere Barcodes"; $lang["giftcards_giftcard"] = "Gutschein"; $lang["giftcards_giftcard_number"] = "Gutschein-Nr."; diff --git a/application/language/de-CH/items_lang.php b/application/language/de-CH/items_lang.php index aa33150d9..f72f88918 100644 --- a/application/language/de-CH/items_lang.php +++ b/application/language/de-CH/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Sammeländerung"; $lang["items_empty_upc_items"] = "Leere UPC Artikel"; $lang["items_error_adding_updating"] = "Fehler beim Hinzufügen/Ändern"; $lang["items_error_updating_multiple"] = "Fehler beim Ändern"; -$lang["items_excel_import_failed"] = "Excel Import fehlerhaft"; -$lang["items_excel_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; -$lang["items_excel_import_partially_failed"] = "Most Items imported. But some were not, here is the list"; -$lang["items_excel_import_success"] = "Import of Items successful"; +$lang["items_csv_import_failed"] = "CSV Import fehlerhaft"; +$lang["items_csv_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; +$lang["items_csv_import_partially_failed"] = "Most Items imported. But some were not, here is the list"; +$lang["items_csv_import_success"] = "Import of Items successful"; $lang["items_generate_barcodes"] = "Generiere Barcodes"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Bild"; -$lang["items_import_items_excel"] = "Importiere Artikel mit Excel Datei"; +$lang["items_import_items_csv"] = "Importiere Artikel mit CSV Datei"; $lang["items_info_provided_by"] = "Info provided by"; $lang["items_inventory"] = "Lagerbestand"; $lang["items_inventory_comments"] = "Bemerkungen"; diff --git a/application/language/de/common_lang.php b/application/language/de/common_lang.php index 1516e9481..6791062e6 100644 --- a/application/language/de/common_lang.php +++ b/application/language/de/common_lang.php @@ -11,13 +11,13 @@ $lang["common_country"] = "Land"; $lang["common_date"] = "Datum"; $lang["common_delete"] = "Löschen"; $lang["common_det"] = "Details"; -$lang["common_download_import_template"] = "Download Import Excel Voralge (CSV)"; +$lang["common_download_import_template"] = "Download Import CSV Voralge (CSV)"; $lang["common_edit"] = "Ändern"; $lang["common_email"] = "eMail"; $lang["common_email_invalid_format"] = "Die E-Mail Adresse ist nicht korrekt."; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "Nein"; -$lang["common_export_excel_yes"] = "Ja"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "Nein"; +$lang["common_export_csv_yes"] = "Ja"; $lang["common_fields_required_message"] = "Die Felder in rot sind erforderlich"; $lang["common_first_name"] = "Vorname"; $lang["common_first_name_required"] = "Vorname ist erforderlich."; @@ -28,8 +28,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "ID"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Ändern"; -$lang["common_import_excel"] = "Excel Import"; -$lang["common_import_full_path"] = "Voller Dateipfad zum Excel File notwendig"; +$lang["common_import_csv"] = "CSV Import"; +$lang["common_import_full_path"] = "Voller Dateipfad zum CSV File notwendig"; $lang["common_import_remove_file"] = "Löschen"; $lang["common_import_select_file"] = "Datei auswählen"; $lang["common_inv"] = "Lag"; diff --git a/application/language/de/customers_lang.php b/application/language/de/customers_lang.php index d7963601c..9e53061ec 100644 --- a/application/language/de/customers_lang.php +++ b/application/language/de/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = "Rabattart"; $lang["customers_email_duplicate"] = "E-Mail Adresse ist bereits in der Datenbank vorhanden."; $lang["customers_employee"] = "Mitarbeiter"; $lang["customers_error_adding_updating"] = "Fehler beim Hinzufügen/Ändern."; -$lang["customers_excel_import_failed"] = "Excel Import fehlerhaft"; -$lang["customers_excel_import_nodata_wrongformat"] = "Die hochgeladene Datei ist leer oder hat ein falsches Format."; -$lang["customers_excel_import_partially_failed"] = "Kundenimport mit Fehlern abgeschlossen:"; -$lang["customers_excel_import_success"] = "Kundenimport erfolgreich."; -$lang["customers_import_items_excel"] = "Importiere Kunden via Excel"; +$lang["customers_csv_import_failed"] = "CSV Import fehlerhaft"; +$lang["customers_csv_import_nodata_wrongformat"] = "Die hochgeladene Datei ist leer oder hat ein falsches Format."; +$lang["customers_csv_import_partially_failed"] = "Kundenimport mit Fehlern abgeschlossen:"; +$lang["customers_csv_import_success"] = "Kundenimport erfolgreich."; +$lang["customers_import_items_csv"] = "Importiere Kunden via CSV"; $lang["customers_mailchimp_activity_click"] = "E-Mail klick"; $lang["customers_mailchimp_activity_lastopen"] = "Letzte geöffnet E-Mail"; $lang["customers_mailchimp_activity_open"] = "E-Mail geöffnet"; diff --git a/application/language/de/giftcards_lang.php b/application/language/de/giftcards_lang.php index 1b6c2064a..6e1f96f1c 100644 --- a/application/language/de/giftcards_lang.php +++ b/application/language/de/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Felder für ausgewählte Gu $lang["giftcards_edit_multiple_giftcards"] = "Sammeländerung."; $lang["giftcards_error_adding_updating"] = "Fehler beim Hinzufügen/Ändern."; $lang["giftcards_error_updating_multiple"] = "Fehler beim Ändern."; -$lang["giftcards_excel_import_failed"] = "Excel Import fehlerhaft."; +$lang["giftcards_csv_import_failed"] = "CSV Import fehlerhaft."; $lang["giftcards_generate_barcodes"] = "Generiere Barcodes"; $lang["giftcards_giftcard"] = "Gutschein"; $lang["giftcards_giftcard_number"] = "Gutscheinnummer"; diff --git a/application/language/de/items_lang.php b/application/language/de/items_lang.php index a4f3fb78c..e0054620b 100644 --- a/application/language/de/items_lang.php +++ b/application/language/de/items_lang.php @@ -31,14 +31,14 @@ $lang["items_edit_multiple_items"] = "Mehrere Artikel bearbeiten"; $lang["items_empty_upc_items"] = "Artikel ohne Barcode"; $lang["items_error_adding_updating"] = "Fehler beim Hinzufügen/Ändern"; $lang["items_error_updating_multiple"] = "Fehler beim Ändern"; -$lang["items_excel_import_failed"] = "Excel Import fehlgeschlagen"; -$lang["items_excel_import_nodata_wrongformat"] = "Die hochgeladene Datei enthält keine Daten oder ist falsch formatiert."; -$lang["items_excel_import_partially_failed"] = "%1 Artikel-Import Fehler in Zeile: %2. Keine Reihen wurden importiert."; -$lang["items_excel_import_success"] = "Artikelimport erfolgreich."; +$lang["items_csv_import_failed"] = "CSV Import fehlgeschlagen"; +$lang["items_csv_import_nodata_wrongformat"] = "Die hochgeladene Datei enthält keine Daten oder ist falsch formatiert."; +$lang["items_csv_import_partially_failed"] = "%1 Artikel-Import Fehler in Zeile: %2. Keine Reihen wurden importiert."; +$lang["items_csv_import_success"] = "Artikelimport erfolgreich."; $lang["items_generate_barcodes"] = "Generiere Barcodes"; $lang["items_hsn_code"] = "Harmonisierte System Nomenklatur"; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Importiere Artikel mit Excel Datei"; +$lang["items_import_items_csv"] = "Importiere Artikel mit CSV Datei"; $lang["items_info_provided_by"] = "Informationen bereitgestellt von"; $lang["items_inventory"] = "Lagerbestand"; $lang["items_inventory_comments"] = "Bemerkungen"; diff --git a/application/language/el/common_lang.php b/application/language/el/common_lang.php index be39f02a5..0d6eeffc6 100644 --- a/application/language/el/common_lang.php +++ b/application/language/el/common_lang.php @@ -11,13 +11,13 @@ $lang["common_country"] = "Χώρα"; $lang["common_date"] = "Ημερομηνία"; $lang["common_delete"] = "Διαγραφή"; $lang["common_det"] = "λεπτομέρειες"; -$lang["common_download_import_template"] = "Λήψη Πρότυπου Εισαγωγής Excel (CSV)"; +$lang["common_download_import_template"] = "Λήψη Πρότυπου Εισαγωγής CSV (CSV)"; $lang["common_edit"] = "επεξεργασία"; $lang["common_email"] = "Email"; $lang["common_email_invalid_format"] = "Η διεύθυνση ηλ.ταχυδρομείου εχει λανθασμενη μορφή."; -$lang["common_export_excel"] = "Εξαγωγή Excel"; -$lang["common_export_excel_no"] = "Όχι"; -$lang["common_export_excel_yes"] = "Ναί"; +$lang["common_export_csv"] = "Εξαγωγή CSV"; +$lang["common_export_csv_no"] = "Όχι"; +$lang["common_export_csv_yes"] = "Ναί"; $lang["common_fields_required_message"] = "Τα κόκκινα πεδία απαιτούνται"; $lang["common_first_name"] = "Κύριο όνομα"; $lang["common_first_name_required"] = "Το κύριο όνομα απαιτείται."; @@ -28,8 +28,8 @@ $lang["common_gender_male"] = "Α"; $lang["common_id"] = "Id"; $lang["common_import"] = "Εισαγωγή"; $lang["common_import_change_file"] = "Αλλαγή"; -$lang["common_import_excel"] = "Εισαγωγή Excel"; -$lang["common_import_full_path"] = "Η πλήρης διαδρομή του αρχείου Excel απαιτείται"; +$lang["common_import_csv"] = "Εισαγωγή CSV"; +$lang["common_import_full_path"] = "Η πλήρης διαδρομή του αρχείου CSV απαιτείται"; $lang["common_import_remove_file"] = "Αφαίρεση"; $lang["common_import_select_file"] = "Επιλογή αρχείου"; $lang["common_inv"] = "αποθ"; diff --git a/application/language/el/customers_lang.php b/application/language/el/customers_lang.php index ca3266e62..3bc186d4d 100644 --- a/application/language/el/customers_lang.php +++ b/application/language/el/customers_lang.php @@ -20,11 +20,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = ""; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = ""; -$lang["customers_excel_import_failed"] = ""; -$lang["customers_excel_import_nodata_wrongformat"] = ""; -$lang["customers_excel_import_partially_failed"] = ""; -$lang["customers_excel_import_success"] = ""; -$lang["customers_import_items_excel"] = ""; +$lang["customers_csv_import_failed"] = ""; +$lang["customers_csv_import_nodata_wrongformat"] = ""; +$lang["customers_csv_import_partially_failed"] = ""; +$lang["customers_csv_import_success"] = ""; +$lang["customers_import_items_csv"] = ""; $lang["customers_mailchimp_activity_click"] = ""; $lang["customers_mailchimp_activity_lastopen"] = ""; $lang["customers_mailchimp_activity_open"] = ""; diff --git a/application/language/el/giftcards_lang.php b/application/language/el/giftcards_lang.php index 251762795..604b32ce7 100644 --- a/application/language/el/giftcards_lang.php +++ b/application/language/el/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = ""; $lang["giftcards_edit_multiple_giftcards"] = ""; $lang["giftcards_error_adding_updating"] = ""; $lang["giftcards_error_updating_multiple"] = ""; -$lang["giftcards_excel_import_failed"] = ""; +$lang["giftcards_csv_import_failed"] = ""; $lang["giftcards_generate_barcodes"] = ""; $lang["giftcards_giftcard"] = ""; $lang["giftcards_giftcard_number"] = ""; diff --git a/application/language/el/items_lang.php b/application/language/el/items_lang.php index ab2590f81..1d074c2f5 100644 --- a/application/language/el/items_lang.php +++ b/application/language/el/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = ""; $lang["items_empty_upc_items"] = ""; $lang["items_error_adding_updating"] = ""; $lang["items_error_updating_multiple"] = ""; -$lang["items_excel_import_failed"] = ""; -$lang["items_excel_import_nodata_wrongformat"] = ""; -$lang["items_excel_import_partially_failed"] = ""; -$lang["items_excel_import_success"] = ""; +$lang["items_csv_import_failed"] = ""; +$lang["items_csv_import_nodata_wrongformat"] = ""; +$lang["items_csv_import_partially_failed"] = ""; +$lang["items_csv_import_success"] = ""; $lang["items_generate_barcodes"] = ""; $lang["items_hsn_code"] = ""; $lang["items_image"] = ""; -$lang["items_import_items_excel"] = ""; +$lang["items_import_items_csv"] = ""; $lang["items_info_provided_by"] = ""; $lang["items_inventory"] = ""; $lang["items_inventory_comments"] = ""; diff --git a/application/language/en-GB/common_lang.php b/application/language/en-GB/common_lang.php index 5540bc0b1..f50bb4bbe 100644 --- a/application/language/en-GB/common_lang.php +++ b/application/language/en-GB/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Country"; $lang["common_date"] = "Date"; $lang["common_delete"] = "Delete"; $lang["common_det"] = "details"; -$lang["common_download_import_template"] = "Download Import Excel Template (CSV)"; +$lang["common_download_import_template"] = "Download Import CSV Template (CSV)"; $lang["common_edit"] = "edit"; $lang["common_email"] = "Email"; $lang["common_email_invalid_format"] = "The email address is not in the correct format"; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "Yes"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "Yes"; $lang["common_fields_required_message"] = "Fields in red are required"; $lang["common_first_name"] = "First Name"; $lang["common_first_name_required"] = "First Name is a required field"; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Change"; -$lang["common_import_excel"] = "Excel Import"; -$lang["common_import_full_path"] = "Full path to excel file required"; +$lang["common_import_csv"] = "CSV Import"; +$lang["common_import_full_path"] = "Full path to csv file required"; $lang["common_import_remove_file"] = "Remove"; $lang["common_import_select_file"] = "Select file"; $lang["common_inv"] = "inv"; diff --git a/application/language/en-GB/customers_lang.php b/application/language/en-GB/customers_lang.php index c3d484659..6e978b58f 100644 --- a/application/language/en-GB/customers_lang.php +++ b/application/language/en-GB/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = "Discount Type"; $lang["customers_email_duplicate"] = "Email address is already present in the database"; $lang["customers_employee"] = "Employee"; $lang["customers_error_adding_updating"] = "Error adding/updating Customer"; -$lang["customers_excel_import_failed"] = "The excel import failed"; -$lang["customers_excel_import_nodata_wrongformat"] = "The uploaded file has no data or is incorrectly formatted"; -$lang["customers_excel_import_partially_failed"] = "Customer import successful with some failures:"; -$lang["customers_excel_import_success"] = "Customer import successful"; -$lang["customers_import_items_excel"] = "Customer Import from Excel"; +$lang["customers_csv_import_failed"] = "The csv import failed"; +$lang["customers_csv_import_nodata_wrongformat"] = "The uploaded file has no data or is incorrectly formatted"; +$lang["customers_csv_import_partially_failed"] = "Customer import successful with some failures:"; +$lang["customers_csv_import_success"] = "Customer import successful"; +$lang["customers_import_items_csv"] = "Customer Import from CSV"; $lang["customers_mailchimp_activity_click"] = "Email click"; $lang["customers_mailchimp_activity_lastopen"] = "Last open email"; $lang["customers_mailchimp_activity_open"] = "Email open"; diff --git a/application/language/en-GB/giftcards_lang.php b/application/language/en-GB/giftcards_lang.php index 06caca7dc..c08c8c1b4 100644 --- a/application/language/en-GB/giftcards_lang.php +++ b/application/language/en-GB/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Edit desired fields for sel $lang["giftcards_edit_multiple_giftcards"] = "Edit multiple Gift Cards"; $lang["giftcards_error_adding_updating"] = "Gift Card add or update failed"; $lang["giftcards_error_updating_multiple"] = "Gift Card(s) update failed"; -$lang["giftcards_excel_import_failed"] = "Excel import failed"; +$lang["giftcards_csv_import_failed"] = "CSV import failed"; $lang["giftcards_generate_barcodes"] = "Generate Barcodes"; $lang["giftcards_giftcard"] = "Gift Card"; $lang["giftcards_giftcard_number"] = "Gift Card Number"; diff --git a/application/language/en-GB/items_lang.php b/application/language/en-GB/items_lang.php index 23514afab..4cec08122 100644 --- a/application/language/en-GB/items_lang.php +++ b/application/language/en-GB/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Editing Multiple Items"; $lang["items_empty_upc_items"] = "Empty Barcode Items"; $lang["items_error_adding_updating"] = "Error adding/updating item"; $lang["items_error_updating_multiple"] = "Error updating items"; -$lang["items_excel_import_failed"] = "The excel import failed"; -$lang["items_excel_import_nodata_wrongformat"] = "The uploaded file has no data or is formatted incorrectly"; -$lang["items_excel_import_partially_failed"] = "There were %1 item import failure(s) on line(s): %2. No rows were imported"; -$lang["items_excel_import_success"] = "Item import successful"; +$lang["items_csv_import_failed"] = "The csv import failed"; +$lang["items_csv_import_nodata_wrongformat"] = "The uploaded file has no data or is formatted incorrectly"; +$lang["items_csv_import_partially_failed"] = "There were %1 item import failure(s) on line(s): %2. No rows were imported"; +$lang["items_csv_import_success"] = "Item import successful"; $lang["items_generate_barcodes"] = "Generate Barcodes"; $lang["items_hsn_code"] = "Harmonised System Nomenclature"; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Item Import from Excel"; +$lang["items_import_items_csv"] = "Item Import from CSV"; $lang["items_info_provided_by"] = "Information provided by"; $lang["items_inventory"] = "Inventory"; $lang["items_inventory_comments"] = "Comments"; diff --git a/application/language/en-US/common_lang.php b/application/language/en-US/common_lang.php index d0e3effa3..11180db5f 100644 --- a/application/language/en-US/common_lang.php +++ b/application/language/en-US/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Country"; $lang["common_date"] = "Date"; $lang["common_delete"] = "Delete"; $lang["common_det"] = "details"; -$lang["common_download_import_template"] = "Download Import Excel Template (CSV)"; +$lang["common_download_import_template"] = "Download Import CSV Template (CSV)"; $lang["common_edit"] = "edit"; $lang["common_email"] = "Email"; $lang["common_email_invalid_format"] = "The email address is not in the correct format."; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "Yes"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "Yes"; $lang["common_fields_required_message"] = "Fields in red are required"; $lang["common_first_name"] = "First Name"; $lang["common_first_name_required"] = "First Name is a required field."; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Change"; -$lang["common_import_excel"] = "Excel Import"; -$lang["common_import_full_path"] = "Full path to excel file required"; +$lang["common_import_csv"] = "CSV Import"; +$lang["common_import_full_path"] = "Full path to csv file required"; $lang["common_import_remove_file"] = "Remove"; $lang["common_import_select_file"] = "Select file"; $lang["common_inv"] = "inv"; diff --git a/application/language/en-US/customers_lang.php b/application/language/en-US/customers_lang.php index a898de4f8..a1e33d9e0 100644 --- a/application/language/en-US/customers_lang.php +++ b/application/language/en-US/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = "Discount Type"; $lang["customers_email_duplicate"] = "Email Address is already present in the database."; $lang["customers_employee"] = "Employee"; $lang["customers_error_adding_updating"] = "Customer add or update failed."; -$lang["customers_excel_import_failed"] = "Excel import failed"; -$lang["customers_excel_import_nodata_wrongformat"] = "The uploaded file has no data or is incorrectly formatted."; -$lang["customers_excel_import_partially_failed"] = "Customer import successful with some failures:"; -$lang["customers_excel_import_success"] = "Customer import successful."; -$lang["customers_import_items_excel"] = "Customer Import from Excel"; +$lang["customers_csv_import_failed"] = "CSV import failed"; +$lang["customers_csv_import_nodata_wrongformat"] = "The uploaded file has no data or is incorrectly formatted."; +$lang["customers_csv_import_partially_failed"] = "Customer import successful with some failures:"; +$lang["customers_csv_import_success"] = "Customer import successful."; +$lang["customers_import_items_csv"] = "Customer Import from CSV"; $lang["customers_mailchimp_activity_click"] = "Email click"; $lang["customers_mailchimp_activity_lastopen"] = "Last open email"; $lang["customers_mailchimp_activity_open"] = "Email open"; diff --git a/application/language/en-US/giftcards_lang.php b/application/language/en-US/giftcards_lang.php index a6019e864..fd137543c 100644 --- a/application/language/en-US/giftcards_lang.php +++ b/application/language/en-US/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Edit desired fields for sel $lang["giftcards_edit_multiple_giftcards"] = "Edit Multiple Gift Cards."; $lang["giftcards_error_adding_updating"] = "Gift Card add or update failed."; $lang["giftcards_error_updating_multiple"] = "Gift Card(s) update failed."; -$lang["giftcards_excel_import_failed"] = "Excel import failed."; +$lang["giftcards_csv_import_failed"] = "CSV import failed."; $lang["giftcards_generate_barcodes"] = "Generate Barcodes"; $lang["giftcards_giftcard"] = "Gift Card"; $lang["giftcards_giftcard_number"] = "Gift Card Number"; diff --git a/application/language/en-US/items_lang.php b/application/language/en-US/items_lang.php index 7c4c842c0..bdf11676f 100644 --- a/application/language/en-US/items_lang.php +++ b/application/language/en-US/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Editing Multiple Items"; $lang["items_empty_upc_items"] = "Empty Barcode Items"; $lang["items_error_adding_updating"] = "Error adding/updating item"; $lang["items_error_updating_multiple"] = "Error updating items"; -$lang["items_excel_import_failed"] = "Excel import failed"; -$lang["items_excel_import_nodata_wrongformat"] = "The uploaded file has no data or is formatted incorrectly."; -$lang["items_excel_import_partially_failed"] = "There were %1 item import failure(s) on line(s): %2. No rows were imported."; -$lang["items_excel_import_success"] = "Item import successful."; +$lang["items_csv_import_failed"] = "CSV import failed"; +$lang["items_csv_import_nodata_wrongformat"] = "The uploaded CSV file has no data or is formatted incorrectly."; +$lang["items_csv_import_partially_failed"] = "There were %1 item import failure(s) on line(s): %2. No rows were imported."; +$lang["items_csv_import_success"] = "Item CSV import successful."; $lang["items_generate_barcodes"] = "Generate Barcodes"; $lang["items_hsn_code"] = "Harmonized System Nomenclature"; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Item Import from Excel"; +$lang["items_import_items_csv"] = "Item Import from CSV"; $lang["items_info_provided_by"] = "Information provided by"; $lang["items_inventory"] = "Inventory"; $lang["items_inventory_comments"] = "Comments"; diff --git a/application/language/es/common_lang.php b/application/language/es/common_lang.php index 7931abef8..3b545cf84 100644 --- a/application/language/es/common_lang.php +++ b/application/language/es/common_lang.php @@ -11,13 +11,13 @@ $lang["common_country"] = "País"; $lang["common_date"] = "Fecha"; $lang["common_delete"] = "Borrar"; $lang["common_det"] = "detalles"; -$lang["common_download_import_template"] = "Descargar Plantilla de Importación de Excel (CSV)"; +$lang["common_download_import_template"] = "Descargar Plantilla de Importación de CSV (CSV)"; $lang["common_edit"] = "editar"; $lang["common_email"] = "Email"; $lang["common_email_invalid_format"] = "El correo-e no está en el formato requerido."; -$lang["common_export_excel"] = "Reporte en Excel"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "Si"; +$lang["common_export_csv"] = "Reporte en CSV"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "Si"; $lang["common_fields_required_message"] = "Los campos en rojo son requeridos"; $lang["common_first_name"] = "Nombre"; $lang["common_first_name_required"] = "Nombre es un campo requerido."; @@ -28,7 +28,7 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Importar"; $lang["common_import_change_file"] = "Cambiar"; -$lang["common_import_excel"] = "Importar Excel"; +$lang["common_import_csv"] = "Importar CSV"; $lang["common_import_full_path"] = "Se requiere la ruta completa del archivo"; $lang["common_import_remove_file"] = "Quitar"; $lang["common_import_select_file"] = "Selecciona archivo"; diff --git a/application/language/es/customers_lang.php b/application/language/es/customers_lang.php index 6c328d880..5b1a79a94 100644 --- a/application/language/es/customers_lang.php +++ b/application/language/es/customers_lang.php @@ -20,11 +20,11 @@ $lang["customers_discount_type"] = "Tipo de Descuento"; $lang["customers_email_duplicate"] = "La dirección de correo electrónico ya existe en la base de datos."; $lang["customers_employee"] = "Empleado"; $lang["customers_error_adding_updating"] = "Error agregando/actualizando cliente."; -$lang["customers_excel_import_failed"] = "Falló la importación de Hoja de Cálculo"; -$lang["customers_excel_import_nodata_wrongformat"] = "El archivo subido no tiene informacion o el formato es incorrecto."; -$lang["customers_excel_import_partially_failed"] = "La mayoria de los clientes se importaron pero algunos no:"; -$lang["customers_excel_import_success"] = "Importacion de Clientes exitosa."; -$lang["customers_import_items_excel"] = "Importar Clientes desde Excel"; +$lang["customers_csv_import_failed"] = "Falló la importación de Hoja de Cálculo"; +$lang["customers_csv_import_nodata_wrongformat"] = "El archivo subido no tiene informacion o el formato es incorrecto."; +$lang["customers_csv_import_partially_failed"] = "La mayoria de los clientes se importaron pero algunos no:"; +$lang["customers_csv_import_success"] = "Importacion de Clientes exitosa."; +$lang["customers_import_items_csv"] = "Importar Clientes desde CSV"; $lang["customers_mailchimp_activity_click"] = "Email click"; $lang["customers_mailchimp_activity_lastopen"] = "Último correo abierto"; $lang["customers_mailchimp_activity_open"] = "Correo abierto"; diff --git a/application/language/es/giftcards_lang.php b/application/language/es/giftcards_lang.php index 93bb002aa..e701867b9 100644 --- a/application/language/es/giftcards_lang.php +++ b/application/language/es/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Edita los campos que quiera $lang["giftcards_edit_multiple_giftcards"] = "Editando Múltiples Tarjetas de Regalo."; $lang["giftcards_error_adding_updating"] = "Error agregando/actualizando tarjeta de regalo."; $lang["giftcards_error_updating_multiple"] = "Error actualizando tarjetas de regalo."; -$lang["giftcards_excel_import_failed"] = "Falló, se recomeinda usar LibreOffice."; +$lang["giftcards_csv_import_failed"] = "Falló, se recomeinda usar LibreOffice."; $lang["giftcards_generate_barcodes"] = "Generar Códigos de Barras"; $lang["giftcards_giftcard"] = "Tarjeta de Regalo"; $lang["giftcards_giftcard_number"] = "Número de Tarjeta de Regalo"; diff --git a/application/language/es/items_lang.php b/application/language/es/items_lang.php index b309d34ba..baf58021b 100644 --- a/application/language/es/items_lang.php +++ b/application/language/es/items_lang.php @@ -31,14 +31,14 @@ $lang["items_edit_multiple_items"] = "Editando Artículos Múltiples"; $lang["items_empty_upc_items"] = "Items con UPC Vacio"; $lang["items_error_adding_updating"] = "Error agregando/actualizando artículo"; $lang["items_error_updating_multiple"] = "Error actualizando artículos"; -$lang["items_excel_import_failed"] = "Falló la importación de Hoja de Cálculo"; -$lang["items_excel_import_nodata_wrongformat"] = "El archivo subido no tiene datos o el formato es incorrecto."; -$lang["items_excel_import_partially_failed"] = "Hubo %1 falla(s) en la importación de producto(s) en la(s) línea(s): %2. Ninguna fila ha sido importada."; -$lang["items_excel_import_success"] = "Se importaron los articulos exitosamente."; +$lang["items_csv_import_failed"] = "Falló la importación de Hoja de Cálculo"; +$lang["items_csv_import_nodata_wrongformat"] = "El archivo subido no tiene datos o el formato es incorrecto."; +$lang["items_csv_import_partially_failed"] = "Hubo %1 falla(s) en la importación de producto(s) en la(s) línea(s): %2. Ninguna fila ha sido importada."; +$lang["items_csv_import_success"] = "Se importaron los articulos exitosamente."; $lang["items_generate_barcodes"] = "Generar Códigos de Barras"; $lang["items_hsn_code"] = "Nomenclatura de Sistemas Harmonizados"; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Importar Artículos desde Excel"; +$lang["items_import_items_csv"] = "Importar Artículos desde CSV"; $lang["items_info_provided_by"] = "Info provista por"; $lang["items_inventory"] = "Inventario"; $lang["items_inventory_comments"] = "Comentarios"; diff --git a/application/language/es_MX/common_lang.php b/application/language/es_MX/common_lang.php index ee74f56c9..33ce50cd7 100644 --- a/application/language/es_MX/common_lang.php +++ b/application/language/es_MX/common_lang.php @@ -11,13 +11,13 @@ $lang["common_country"] = "País"; $lang["common_date"] = "Fecha"; $lang["common_delete"] = "Eliminar"; $lang["common_det"] = "detalles"; -$lang["common_download_import_template"] = "Descargar Plantilla para Importar desde Excel (CSV)"; +$lang["common_download_import_template"] = "Descargar Plantilla para Importar desde CSV (CSV)"; $lang["common_edit"] = "editar"; $lang["common_email"] = "Correo-e"; $lang["common_email_invalid_format"] = "La dirección de correo-e no tiene el formato correcto."; -$lang["common_export_excel"] = "Exportar a Excel"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "Si"; +$lang["common_export_csv"] = "Exportar a CSV"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "Si"; $lang["common_fields_required_message"] = "Los campos en rojo son requeridos"; $lang["common_first_name"] = "Nombre"; $lang["common_first_name_required"] = "El nombre es un campo requerido."; @@ -28,8 +28,8 @@ $lang["common_gender_male"] = "H"; $lang["common_id"] = "Id"; $lang["common_import"] = "Importar"; $lang["common_import_change_file"] = "Cambiar"; -$lang["common_import_excel"] = "Importar de Excel"; -$lang["common_import_full_path"] = "Se requiere la ruta completa del archivo de Excel"; +$lang["common_import_csv"] = "Importar de CSV"; +$lang["common_import_full_path"] = "Se requiere la ruta completa del archivo de CSV"; $lang["common_import_remove_file"] = "Eliminar"; $lang["common_import_select_file"] = "Seleccionar archivo"; $lang["common_inv"] = "Inv"; diff --git a/application/language/es_MX/customers_lang.php b/application/language/es_MX/customers_lang.php index 9e93a5be3..be6ea406a 100644 --- a/application/language/es_MX/customers_lang.php +++ b/application/language/es_MX/customers_lang.php @@ -20,11 +20,11 @@ $lang["customers_discount_type"] = "Tipo de Descuento"; $lang["customers_email_duplicate"] = "El correo electrónico ya se encuentra en la base de datos."; $lang["customers_employee"] = "Empleado"; $lang["customers_error_adding_updating"] = "Fallo al agregar o actualizar el Cliente."; -$lang["customers_excel_import_failed"] = "Fallo al importar a Excel"; -$lang["customers_excel_import_nodata_wrongformat"] = "El archivo subido no contiene datos o no está formado correctamente."; -$lang["customers_excel_import_partially_failed"] = "La importación del Cliente fue exitosa pero con algunos errores:"; -$lang["customers_excel_import_success"] = "Cliente importado exitosamente."; -$lang["customers_import_items_excel"] = "Importar Cliente desde Excel"; +$lang["customers_csv_import_failed"] = "Fallo al importar a CSV"; +$lang["customers_csv_import_nodata_wrongformat"] = "El archivo subido no contiene datos o no está formado correctamente."; +$lang["customers_csv_import_partially_failed"] = "La importación del Cliente fue exitosa pero con algunos errores:"; +$lang["customers_csv_import_success"] = "Cliente importado exitosamente."; +$lang["customers_import_items_csv"] = "Importar Cliente desde CSV"; $lang["customers_mailchimp_activity_click"] = "Click Correo Electrónico"; $lang["customers_mailchimp_activity_lastopen"] = "Último correo electrónico abierto"; $lang["customers_mailchimp_activity_open"] = "Correo electrónico abierto"; diff --git a/application/language/es_MX/giftcards_lang.php b/application/language/es_MX/giftcards_lang.php index 251762795..604b32ce7 100644 --- a/application/language/es_MX/giftcards_lang.php +++ b/application/language/es_MX/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = ""; $lang["giftcards_edit_multiple_giftcards"] = ""; $lang["giftcards_error_adding_updating"] = ""; $lang["giftcards_error_updating_multiple"] = ""; -$lang["giftcards_excel_import_failed"] = ""; +$lang["giftcards_csv_import_failed"] = ""; $lang["giftcards_generate_barcodes"] = ""; $lang["giftcards_giftcard"] = ""; $lang["giftcards_giftcard_number"] = ""; diff --git a/application/language/es_MX/items_lang.php b/application/language/es_MX/items_lang.php index ab2590f81..1d074c2f5 100644 --- a/application/language/es_MX/items_lang.php +++ b/application/language/es_MX/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = ""; $lang["items_empty_upc_items"] = ""; $lang["items_error_adding_updating"] = ""; $lang["items_error_updating_multiple"] = ""; -$lang["items_excel_import_failed"] = ""; -$lang["items_excel_import_nodata_wrongformat"] = ""; -$lang["items_excel_import_partially_failed"] = ""; -$lang["items_excel_import_success"] = ""; +$lang["items_csv_import_failed"] = ""; +$lang["items_csv_import_nodata_wrongformat"] = ""; +$lang["items_csv_import_partially_failed"] = ""; +$lang["items_csv_import_success"] = ""; $lang["items_generate_barcodes"] = ""; $lang["items_hsn_code"] = ""; $lang["items_image"] = ""; -$lang["items_import_items_excel"] = ""; +$lang["items_import_items_csv"] = ""; $lang["items_info_provided_by"] = ""; $lang["items_inventory"] = ""; $lang["items_inventory_comments"] = ""; diff --git a/application/language/fr/common_lang.php b/application/language/fr/common_lang.php index 5f015472a..9c10517e3 100644 --- a/application/language/fr/common_lang.php +++ b/application/language/fr/common_lang.php @@ -11,13 +11,13 @@ $lang["common_country"] = "Pays"; $lang["common_date"] = "Date"; $lang["common_delete"] = "Effacer"; $lang["common_det"] = "détails"; -$lang["common_download_import_template"] = "Download Import Excel Template (CSV)"; +$lang["common_download_import_template"] = "Download Import CSV Template (CSV)"; $lang["common_edit"] = "éditer"; $lang["common_email"] = "Courriel"; $lang["common_email_invalid_format"] = "Le format de l'adresse électronique est incorrect."; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "Oui"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "Oui"; $lang["common_fields_required_message"] = "Les champs en rouge sont requis"; $lang["common_first_name"] = "Prénom"; $lang["common_first_name_required"] = "Le prénom est requis."; @@ -28,8 +28,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Changer"; -$lang["common_import_excel"] = "Excel Import"; -$lang["common_import_full_path"] = "Chemin complet vers le fichier excel requis"; +$lang["common_import_csv"] = "CSV Import"; +$lang["common_import_full_path"] = "Chemin complet vers le fichier csv requis"; $lang["common_import_remove_file"] = "Supprimer"; $lang["common_import_select_file"] = "Sélectionner le fichier"; $lang["common_inv"] = "fact."; diff --git a/application/language/fr/customers_lang.php b/application/language/fr/customers_lang.php index e58776347..3fc49c278 100644 --- a/application/language/fr/customers_lang.php +++ b/application/language/fr/customers_lang.php @@ -20,11 +20,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = "L'adresse e-mail est déjà présente dans la base de données."; $lang["customers_employee"] = "Employé"; $lang["customers_error_adding_updating"] = "Érreur lors de l'ajout/suppression de client."; -$lang["customers_excel_import_failed"] = "Echec Import d'Excel"; -$lang["customers_excel_import_nodata_wrongformat"] = "Le fichier envoyé ne contient aucune donnée ou elles sont dans un format erroné."; -$lang["customers_excel_import_partially_failed"] = "Importation client réussie avec quelques échecs :"; -$lang["customers_excel_import_success"] = "L'importation des clients est un succès."; -$lang["customers_import_items_excel"] = "Importer une liste de client à partir d'une feuille Excel"; +$lang["customers_csv_import_failed"] = "Echec Import d'CSV"; +$lang["customers_csv_import_nodata_wrongformat"] = "Le fichier envoyé ne contient aucune donnée ou elles sont dans un format erroné."; +$lang["customers_csv_import_partially_failed"] = "Importation client réussie avec quelques échecs :"; +$lang["customers_csv_import_success"] = "L'importation des clients est un succès."; +$lang["customers_import_items_csv"] = "Importer une liste de client à partir d'une feuille CSV"; $lang["customers_mailchimp_activity_click"] = "Email cliquez"; $lang["customers_mailchimp_activity_lastopen"] = "Dernier email ouvert"; $lang["customers_mailchimp_activity_open"] = "Email ouvert"; diff --git a/application/language/fr/giftcards_lang.php b/application/language/fr/giftcards_lang.php index 4515883a0..2b86ca8c2 100644 --- a/application/language/fr/giftcards_lang.php +++ b/application/language/fr/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Modifier les chaps que vous $lang["giftcards_edit_multiple_giftcards"] = "Édition Multiple de Cartes."; $lang["giftcards_error_adding_updating"] = "Érreur d'ajout/édition de cartes."; $lang["giftcards_error_updating_multiple"] = "Érreur lors de l'édition des cartes."; -$lang["giftcards_excel_import_failed"] = "Échec de l'import."; +$lang["giftcards_csv_import_failed"] = "Échec de l'import."; $lang["giftcards_generate_barcodes"] = "Générer des Codes-barre"; $lang["giftcards_giftcard"] = "Carte Cadeau"; $lang["giftcards_giftcard_number"] = "Numéro de Carte"; diff --git a/application/language/fr/items_lang.php b/application/language/fr/items_lang.php index f3b2979a8..7d6196efd 100644 --- a/application/language/fr/items_lang.php +++ b/application/language/fr/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Édition multiple d'articles"; $lang["items_empty_upc_items"] = "Articles avec UPC vide"; $lang["items_error_adding_updating"] = "Erreur d'ajout/éditionn"; $lang["items_error_updating_multiple"] = "Erreur d'édition"; -$lang["items_excel_import_failed"] = "Echec d'import Excel"; -$lang["items_excel_import_nodata_wrongformat"] = "Le fichier envoyé ne contient aucune donnée ou elles sont dans un format erroné."; -$lang["items_excel_import_partially_failed"] = "Importation d'élément réussie avec quelques échecs :"; -$lang["items_excel_import_success"] = "Import des articles réussi."; +$lang["items_csv_import_failed"] = "Echec d'import CSV"; +$lang["items_csv_import_nodata_wrongformat"] = "Le fichier envoyé ne contient aucune donnée ou elles sont dans un format erroné."; +$lang["items_csv_import_partially_failed"] = "Importation d'élément réussie avec quelques échecs :"; +$lang["items_csv_import_success"] = "Import des articles réussi."; $lang["items_generate_barcodes"] = "Générer des codes à barres"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Importation d'éléments à partir d'Excel"; +$lang["items_import_items_csv"] = "Importation d'éléments à partir d'CSV"; $lang["items_info_provided_by"] = "Information fournie par"; $lang["items_inventory"] = "Inventaire"; $lang["items_inventory_comments"] = "Commentaires"; diff --git a/application/language/he/common_lang.php b/application/language/he/common_lang.php index 6a0c8bafa..9763a0543 100644 --- a/application/language/he/common_lang.php +++ b/application/language/he/common_lang.php @@ -16,9 +16,9 @@ $lang["common_download_import_template"] = "הורד תבנית אקסל ליי $lang["common_edit"] = "ערוך"; $lang["common_email"] = "אימייל"; $lang["common_email_invalid_format"] = "כתובת האימייל אינה בפורמט הנכון."; -$lang["common_export_excel"] = "ייצוא לאקסל"; -$lang["common_export_excel_no"] = "לא"; -$lang["common_export_excel_yes"] = "כן"; +$lang["common_export_csv"] = "ייצוא לאקסל"; +$lang["common_export_csv_no"] = "לא"; +$lang["common_export_csv_yes"] = "כן"; $lang["common_fields_required_message"] = "שדות באדום הינם חובה"; $lang["common_first_name"] = "שם פרטי"; $lang["common_first_name_required"] = "שם פרטי הינו שדה חובה."; @@ -29,7 +29,7 @@ $lang["common_gender_male"] = "זכר"; $lang["common_id"] = "מספר זיהוי"; $lang["common_import"] = "ייבוא"; $lang["common_import_change_file"] = "שינוי"; -$lang["common_import_excel"] = "ייבוא אקסל"; +$lang["common_import_csv"] = "ייבוא אקסל"; $lang["common_import_full_path"] = "הנתיב המלא לקובץ האקסל הינו חובה"; $lang["common_import_remove_file"] = "הסר"; $lang["common_import_select_file"] = "בחר קובץ"; diff --git a/application/language/he/customers_lang.php b/application/language/he/customers_lang.php index d040e1d4d..cc1deb8d5 100644 --- a/application/language/he/customers_lang.php +++ b/application/language/he/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = "סוג הנחה"; $lang["customers_email_duplicate"] = "כתובת האימייל כבר קיימת במסד הנתונים."; $lang["customers_employee"] = "עובד"; $lang["customers_error_adding_updating"] = "הוספה או עדכון לקוח נכשלו."; -$lang["customers_excel_import_failed"] = "ייבוא אקסל נכשל"; -$lang["customers_excel_import_nodata_wrongformat"] = "בקובץ שהועלה אין נתונים או פורמט שגוי."; -$lang["customers_excel_import_partially_failed"] = "ייבוא הלקוח הצליח עם מספר שגיאות:"; -$lang["customers_excel_import_success"] = "ייבוא הלקוח בוצע בהצלחה."; -$lang["customers_import_items_excel"] = "ייבוא לקוח מקובץ אקסל"; +$lang["customers_csv_import_failed"] = "ייבוא אקסל נכשל"; +$lang["customers_csv_import_nodata_wrongformat"] = "בקובץ שהועלה אין נתונים או פורמט שגוי."; +$lang["customers_csv_import_partially_failed"] = "ייבוא הלקוח הצליח עם מספר שגיאות:"; +$lang["customers_csv_import_success"] = "ייבוא הלקוח בוצע בהצלחה."; +$lang["customers_import_items_csv"] = "ייבוא לקוח מקובץ אקסל"; $lang["customers_mailchimp_activity_click"] = "לחץ לאימייל"; $lang["customers_mailchimp_activity_lastopen"] = "אימייל אחרון שנפתח"; $lang["customers_mailchimp_activity_open"] = "אימייל פתוח"; diff --git a/application/language/he/giftcards_lang.php b/application/language/he/giftcards_lang.php index ffbe74b54..4f6461e94 100644 --- a/application/language/he/giftcards_lang.php +++ b/application/language/he/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "ערוך את השדות ה $lang["giftcards_edit_multiple_giftcards"] = "עריכת כרטיסי מתנה מרובים."; $lang["giftcards_error_adding_updating"] = "הוספה או עדכון של כרטיס מתנה נכשל."; $lang["giftcards_error_updating_multiple"] = "עדכון כרטיס\י מתנה נכשל."; -$lang["giftcards_excel_import_failed"] = "ייבוא אקסל נכשל."; +$lang["giftcards_csv_import_failed"] = "ייבוא אקסל נכשל."; $lang["giftcards_generate_barcodes"] = "צור ברקודים"; $lang["giftcards_giftcard"] = "כרטיס מתנה"; $lang["giftcards_giftcard_number"] = "מספר כרטיס מתנה"; diff --git a/application/language/he/items_lang.php b/application/language/he/items_lang.php index 510e13162..f716624dd 100644 --- a/application/language/he/items_lang.php +++ b/application/language/he/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "עריכת פריטים מרובים"; $lang["items_empty_upc_items"] = "הסר ברקוד לפריטים"; $lang["items_error_adding_updating"] = "שגיאה בהוספה / עדכון של פריט"; $lang["items_error_updating_multiple"] = "שגיאה בעדכון פריטים"; -$lang["items_excel_import_failed"] = "ייבוא אקסל נכשל"; -$lang["items_excel_import_nodata_wrongformat"] = "בקובץ שהועלה אין נתונים או פורמט שגוי."; -$lang["items_excel_import_partially_failed"] = "ייבוא פריט הצליח עם מספר שגיאות:"; -$lang["items_excel_import_success"] = "ייבוא הפריט הצליח."; +$lang["items_csv_import_failed"] = "ייבוא אקסל נכשל"; +$lang["items_csv_import_nodata_wrongformat"] = "בקובץ שהועלה אין נתונים או פורמט שגוי."; +$lang["items_csv_import_partially_failed"] = "ייבוא פריט הצליח עם מספר שגיאות:"; +$lang["items_csv_import_success"] = "ייבוא הפריט הצליח."; $lang["items_generate_barcodes"] = "צור ברקודים"; $lang["items_hsn_code"] = "מערכת מינוח מתואמת"; $lang["items_image"] = "אווטר"; -$lang["items_import_items_excel"] = "ייבוא פריט מאקסל"; +$lang["items_import_items_csv"] = "ייבוא פריט מאקסל"; $lang["items_info_provided_by"] = "מידע סופק על ידי"; $lang["items_inventory"] = "מלאי"; $lang["items_inventory_comments"] = "הערות"; diff --git a/application/language/hr-HR/common_lang.php b/application/language/hr-HR/common_lang.php index 89a0a67f4..bbf475ee4 100644 --- a/application/language/hr-HR/common_lang.php +++ b/application/language/hr-HR/common_lang.php @@ -16,9 +16,9 @@ $lang["common_download_import_template"] = "Preuzmite predložak za uvoz(CSV)"; $lang["common_edit"] = "Uredi"; $lang["common_email"] = "e-mail"; $lang["common_email_invalid_format"] = "Neispravan e-mail"; -$lang["common_export_excel"] = "Excel izvoz"; -$lang["common_export_excel_no"] = "Ne"; -$lang["common_export_excel_yes"] = "Da"; +$lang["common_export_csv"] = "CSV izvoz"; +$lang["common_export_csv_no"] = "Ne"; +$lang["common_export_csv_yes"] = "Da"; $lang["common_fields_required_message"] = "Polja u crvenom su obavezna"; $lang["common_first_name"] = "Ime"; $lang["common_first_name_required"] = "Ime je obavezno"; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Uvoz"; $lang["common_import_change_file"] = "Promjena"; -$lang["common_import_excel"] = "Excel uvoz"; -$lang["common_import_full_path"] = "Potrebna je potpuna putanja do excel datoteke"; +$lang["common_import_csv"] = "CSV uvoz"; +$lang["common_import_full_path"] = "Potrebna je potpuna putanja do csv datoteke"; $lang["common_import_remove_file"] = "Ukloni"; $lang["common_import_select_file"] = "Odaberite datoteku"; $lang["common_inv"] = "lelt."; diff --git a/application/language/hr-HR/customers_lang.php b/application/language/hr-HR/customers_lang.php index cce1fc121..bd7e8507a 100644 --- a/application/language/hr-HR/customers_lang.php +++ b/application/language/hr-HR/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = ""; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = "Greška kod dodavanja/ažuriranja kupca"; -$lang["customers_excel_import_failed"] = "Greška kod uvoza iz Excel-a"; -$lang["customers_excel_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; -$lang["customers_excel_import_partially_failed"] = "Most Customers imported. But some were not, here is the list"; -$lang["customers_excel_import_success"] = "Import of Customers successful"; -$lang["customers_import_items_excel"] = "Učitaj kupce iz excel datoteke"; +$lang["customers_csv_import_failed"] = "Greška kod uvoza iz CSV-a"; +$lang["customers_csv_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; +$lang["customers_csv_import_partially_failed"] = "Most Customers imported. But some were not, here is the list"; +$lang["customers_csv_import_success"] = "Import of Customers successful"; +$lang["customers_import_items_csv"] = "Učitaj kupce iz csv datoteke"; $lang["customers_mailchimp_activity_click"] = ""; $lang["customers_mailchimp_activity_lastopen"] = ""; $lang["customers_mailchimp_activity_open"] = ""; diff --git a/application/language/hr-HR/giftcards_lang.php b/application/language/hr-HR/giftcards_lang.php index 1c873f4a3..5ba310120 100644 --- a/application/language/hr-HR/giftcards_lang.php +++ b/application/language/hr-HR/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Uredi polja za sve odabrane $lang["giftcards_edit_multiple_giftcards"] = "Uređivanje više poklon bonova"; $lang["giftcards_error_adding_updating"] = "Greška kod dodavanja/ažuriranja poklon bona"; $lang["giftcards_error_updating_multiple"] = "Greška kod ažuriranja poklon bona"; -$lang["giftcards_excel_import_failed"] = "Greška kod Excel uvoza"; +$lang["giftcards_csv_import_failed"] = "Greška kod CSV uvoza"; $lang["giftcards_generate_barcodes"] = "Generiraj barkod"; $lang["giftcards_giftcard"] = "Poklon bon"; $lang["giftcards_giftcard_number"] = "Broj poklon bona"; diff --git a/application/language/hr-HR/items_lang.php b/application/language/hr-HR/items_lang.php index 799b73317..142a4cf52 100644 --- a/application/language/hr-HR/items_lang.php +++ b/application/language/hr-HR/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Uredi višestruke stavke"; $lang["items_empty_upc_items"] = "UPC artikal"; $lang["items_error_adding_updating"] = "Greška kod dodavanja/ažuriranja stavke"; $lang["items_error_updating_multiple"] = "Greška kod ažuriranja stavki"; -$lang["items_excel_import_failed"] = "Greška kod uvoza iz Excel-a"; -$lang["items_excel_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; -$lang["items_excel_import_partially_failed"] = "Most Items imported. But some were not, here is the list"; -$lang["items_excel_import_success"] = "Import of Items successful"; +$lang["items_csv_import_failed"] = "Greška kod uvoza iz CSV-a"; +$lang["items_csv_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; +$lang["items_csv_import_partially_failed"] = "Most Items imported. But some were not, here is the list"; +$lang["items_csv_import_success"] = "Import of Items successful"; $lang["items_generate_barcodes"] = "Generiraj barkod"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Slika"; -$lang["items_import_items_excel"] = "Uvezi stavke iz Excel-a"; +$lang["items_import_items_csv"] = "Uvezi stavke iz CSV-a"; $lang["items_info_provided_by"] = "Info daje"; $lang["items_inventory"] = "Inventura"; $lang["items_inventory_comments"] = "Komentari"; diff --git a/application/language/hu-HU/common_lang.php b/application/language/hu-HU/common_lang.php index 1acb834b5..2db3f14be 100644 --- a/application/language/hu-HU/common_lang.php +++ b/application/language/hu-HU/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Ország"; $lang["common_date"] = "Dátum"; $lang["common_delete"] = "Törlés"; $lang["common_det"] = "részletek"; -$lang["common_download_import_template"] = "Excel sablon (CSV) letöltése"; +$lang["common_download_import_template"] = "CSV sablon (CSV) letöltése"; $lang["common_edit"] = "szerkeszt"; $lang["common_email"] = "E-Mail"; $lang["common_email_invalid_format"] = "Az E-mail cím nem megfelelően formázott"; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "Nem"; -$lang["common_export_excel_yes"] = "Igen"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "Nem"; +$lang["common_export_csv_yes"] = "Igen"; $lang["common_fields_required_message"] = "A piros mezők kötelezők"; $lang["common_first_name"] = "Vezetéknév"; $lang["common_first_name_required"] = "A vezetéknév kötelező mező"; @@ -29,7 +29,7 @@ $lang["common_gender_male"] = "Ffi"; $lang["common_id"] = "ID"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Változtat"; -$lang["common_import_excel"] = "Excel Import"; +$lang["common_import_csv"] = "CSV Import"; $lang["common_import_full_path"] = "A teljes elérési út kötelező"; $lang["common_import_remove_file"] = "Eltávolít"; $lang["common_import_select_file"] = "Fájl kiválasztása"; diff --git a/application/language/hu-HU/customers_lang.php b/application/language/hu-HU/customers_lang.php index d47a4cefd..e0d101aaf 100644 --- a/application/language/hu-HU/customers_lang.php +++ b/application/language/hu-HU/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = ""; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = "Hiba a vásárló modosításánál/hozzáadásánál"; -$lang["customers_excel_import_failed"] = "Excel import sikertelen"; -$lang["customers_excel_import_nodata_wrongformat"] = "A feltöltött fájlban nincs adat, vagy rossz formátum."; -$lang["customers_excel_import_partially_failed"] = "A legtöbb vásárló importálva. alább a lista a kimaradottakról"; -$lang["customers_excel_import_success"] = "Vásárlók importálása sikeres"; -$lang["customers_import_items_excel"] = "Vevők importálása Excelből"; +$lang["customers_csv_import_failed"] = "CSV import sikertelen"; +$lang["customers_csv_import_nodata_wrongformat"] = "A feltöltött fájlban nincs adat, vagy rossz formátum."; +$lang["customers_csv_import_partially_failed"] = "A legtöbb vásárló importálva. alább a lista a kimaradottakról"; +$lang["customers_csv_import_success"] = "Vásárlók importálása sikeres"; +$lang["customers_import_items_csv"] = "Vevők importálása CSVből"; $lang["customers_mailchimp_activity_click"] = ""; $lang["customers_mailchimp_activity_lastopen"] = ""; $lang["customers_mailchimp_activity_open"] = ""; diff --git a/application/language/hu-HU/giftcards_lang.php b/application/language/hu-HU/giftcards_lang.php index bbfc43276..2143af9ea 100644 --- a/application/language/hu-HU/giftcards_lang.php +++ b/application/language/hu-HU/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Edit the fields you want to $lang["giftcards_edit_multiple_giftcards"] = "Editing Multiple Giftcards"; $lang["giftcards_error_adding_updating"] = "Utalvány hozzáadása/módositása sikertelen"; $lang["giftcards_error_updating_multiple"] = "Utalvány módositása sikertelen"; -$lang["giftcards_excel_import_failed"] = "Excel import sikertelen"; +$lang["giftcards_csv_import_failed"] = "CSV import sikertelen"; $lang["giftcards_generate_barcodes"] = "Vonalkód generálás"; $lang["giftcards_giftcard"] = "Uttalvány"; $lang["giftcards_giftcard_number"] = "Utalvány sorszáma"; diff --git a/application/language/hu-HU/items_lang.php b/application/language/hu-HU/items_lang.php index 44bdea619..3a5ff9d51 100644 --- a/application/language/hu-HU/items_lang.php +++ b/application/language/hu-HU/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Editing Multiple Items"; $lang["items_empty_upc_items"] = "Üres UPC term."; $lang["items_error_adding_updating"] = "Termék módositása/hozzáadása sikertelen."; $lang["items_error_updating_multiple"] = "Termék módositás sikertelen"; -$lang["items_excel_import_failed"] = "Excel import sikertelen"; -$lang["items_excel_import_nodata_wrongformat"] = "A feltöltött fájlban nincs adat, vagy rossz formátum."; -$lang["items_excel_import_partially_failed"] = "Most Items imported. But some were not, here is the list"; -$lang["items_excel_import_success"] = "Import of Items successful"; +$lang["items_csv_import_failed"] = "CSV import sikertelen"; +$lang["items_csv_import_nodata_wrongformat"] = "A feltöltött fájlban nincs adat, vagy rossz formátum."; +$lang["items_csv_import_partially_failed"] = "Most Items imported. But some were not, here is the list"; +$lang["items_csv_import_success"] = "Import of Items successful"; $lang["items_generate_barcodes"] = "Vonalkód generálás"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Termékek importálása Excelből"; +$lang["items_import_items_csv"] = "Termékek importálása CSVből"; $lang["items_info_provided_by"] = "Info provided by"; $lang["items_inventory"] = "Raktárkészlet"; $lang["items_inventory_comments"] = "Megjegyzés"; diff --git a/application/language/id/common_lang.php b/application/language/id/common_lang.php index 47a8a1db5..e9d93f1ca 100644 --- a/application/language/id/common_lang.php +++ b/application/language/id/common_lang.php @@ -11,13 +11,13 @@ $lang["common_country"] = "Negara"; $lang["common_date"] = "Tanggal"; $lang["common_delete"] = "Hapus"; $lang["common_det"] = "Detail"; -$lang["common_download_import_template"] = "Download atau Import format Excel (CSV)"; +$lang["common_download_import_template"] = "Download atau Import format CSV (CSV)"; $lang["common_edit"] = "Ubah"; $lang["common_email"] = "Email"; $lang["common_email_invalid_format"] = "Format alamat email tidak benar."; -$lang["common_export_excel"] = "Expor ke Excel"; -$lang["common_export_excel_no"] = "Tidak"; -$lang["common_export_excel_yes"] = "Ya"; +$lang["common_export_csv"] = "Expor ke CSV"; +$lang["common_export_csv_no"] = "Tidak"; +$lang["common_export_csv_yes"] = "Ya"; $lang["common_fields_required_message"] = "Bagian yang ditandai warna merah wajib diisi"; $lang["common_first_name"] = "Nama Depan"; $lang["common_first_name_required"] = "Nama depan wajib diisi."; @@ -28,8 +28,8 @@ $lang["common_gender_male"] = "L"; $lang["common_id"] = "ID"; $lang["common_import"] = "Impor"; $lang["common_import_change_file"] = "Ubah"; -$lang["common_import_excel"] = "Impor Excel"; -$lang["common_import_full_path"] = "Jalur lengkap ke file excel diperlukan"; +$lang["common_import_csv"] = "Impor CSV"; +$lang["common_import_full_path"] = "Jalur lengkap ke file csv diperlukan"; $lang["common_import_remove_file"] = "Hapus"; $lang["common_import_select_file"] = "Pilih file"; $lang["common_inv"] = "Persediaan"; diff --git a/application/language/id/customers_lang.php b/application/language/id/customers_lang.php index b7519fc47..160656e2e 100644 --- a/application/language/id/customers_lang.php +++ b/application/language/id/customers_lang.php @@ -20,11 +20,11 @@ $lang["customers_discount_type"] = "Jenis Diskon"; $lang["customers_email_duplicate"] = "Alamat email telah digunakan."; $lang["customers_employee"] = "Karyawan"; $lang["customers_error_adding_updating"] = "Kesalahan ketika menambah atau memperbaharui pelanggan."; -$lang["customers_excel_import_failed"] = "Impor dari Excel tidak berhasil dilakukan"; -$lang["customers_excel_import_nodata_wrongformat"] = "Berkas yang Anda unggah tidak berisi data atau salah format."; -$lang["customers_excel_import_partially_failed"] = "Impor pelanggan berhasil dwngan beberapa kesalahan:"; -$lang["customers_excel_import_success"] = "Impor pelanggan berhasil."; -$lang["customers_import_items_excel"] = "Impor pelanggan dari Excel"; +$lang["customers_csv_import_failed"] = "Impor dari CSV tidak berhasil dilakukan"; +$lang["customers_csv_import_nodata_wrongformat"] = "Berkas yang Anda unggah tidak berisi data atau salah format."; +$lang["customers_csv_import_partially_failed"] = "Impor pelanggan berhasil dwngan beberapa kesalahan:"; +$lang["customers_csv_import_success"] = "Impor pelanggan berhasil."; +$lang["customers_import_items_csv"] = "Impor pelanggan dari CSV"; $lang["customers_mailchimp_activity_click"] = "Klik Email"; $lang["customers_mailchimp_activity_lastopen"] = "Email yang terakhir dibuka"; $lang["customers_mailchimp_activity_open"] = "Buka email"; diff --git a/application/language/id/giftcards_lang.php b/application/language/id/giftcards_lang.php index df4d076e8..a80e2c856 100644 --- a/application/language/id/giftcards_lang.php +++ b/application/language/id/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Ubah bagian yang ingin Anda $lang["giftcards_edit_multiple_giftcards"] = "Ubah beberapa GiftCard."; $lang["giftcards_error_adding_updating"] = "Kesalahan ketika menambahkan/memperbaharui GiftCard."; $lang["giftcards_error_updating_multiple"] = "Gagal memperbaharui Giftcard."; -$lang["giftcards_excel_import_failed"] = "Impor dari Excel gagal."; +$lang["giftcards_csv_import_failed"] = "Impor dari CSV gagal."; $lang["giftcards_generate_barcodes"] = "Buat Barcode"; $lang["giftcards_giftcard"] = "GiftCard"; $lang["giftcards_giftcard_number"] = "Nomor GiftCard"; diff --git a/application/language/id/items_lang.php b/application/language/id/items_lang.php index 124a7306d..3d671aa36 100644 --- a/application/language/id/items_lang.php +++ b/application/language/id/items_lang.php @@ -31,14 +31,14 @@ $lang["items_edit_multiple_items"] = "Ubah Beberapa Item"; $lang["items_empty_upc_items"] = "UPC Items Kosong"; $lang["items_error_adding_updating"] = "Kesalahan ketika menambahkan/memperbarui item"; $lang["items_error_updating_multiple"] = "Kesalahan ketika memperbarui item"; -$lang["items_excel_import_failed"] = "Impor dari Excel tidak berhasil dilakukan"; -$lang["items_excel_import_nodata_wrongformat"] = "Berkas unggahan tidak berisi data atau format salah."; -$lang["items_excel_import_partially_failed"] = "Terdapat %1 item yang gagal diimpor pada baris: %2. Tidak ada kolom yang diimpor."; -$lang["items_excel_import_success"] = "Impor item berhasil."; +$lang["items_csv_import_failed"] = "Impor dari CSV tidak berhasil dilakukan"; +$lang["items_csv_import_nodata_wrongformat"] = "Berkas unggahan tidak berisi data atau format salah."; +$lang["items_csv_import_partially_failed"] = "Terdapat %1 item yang gagal diimpor pada baris: %2. Tidak ada kolom yang diimpor."; +$lang["items_csv_import_success"] = "Impor item berhasil."; $lang["items_generate_barcodes"] = "Buat Barcode"; $lang["items_hsn_code"] = "Kode HSN"; $lang["items_image"] = "Gambar"; -$lang["items_import_items_excel"] = "Impor item dari Excel sheet"; +$lang["items_import_items_csv"] = "Impor item dari CSV sheet"; $lang["items_info_provided_by"] = "Info disediakan oleh"; $lang["items_inventory"] = "Inventori"; $lang["items_inventory_comments"] = "Keterangan"; diff --git a/application/language/it/common_lang.php b/application/language/it/common_lang.php index 33a2756e0..3d7931971 100644 --- a/application/language/it/common_lang.php +++ b/application/language/it/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Paese"; $lang["common_date"] = "Data"; $lang["common_delete"] = "Cancella"; $lang["common_det"] = "dettagli"; -$lang["common_download_import_template"] = "Scarica Template D'importazione Excel (CSV)"; +$lang["common_download_import_template"] = "Scarica Template D'importazione CSV (CSV)"; $lang["common_edit"] = "modifica"; $lang["common_email"] = "Email"; $lang["common_email_invalid_format"] = "L'indirizzo email non è nel formato corretto."; -$lang["common_export_excel"] = "Esporta formato Excel"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "Si"; +$lang["common_export_csv"] = "Esporta formato CSV"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "Si"; $lang["common_fields_required_message"] = "I campi in rosso sono richiesti"; $lang["common_first_name"] = "Nome"; $lang["common_first_name_required"] = "Campo Nome è richiesto."; @@ -29,7 +29,7 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Importa"; $lang["common_import_change_file"] = "Sostituisci"; -$lang["common_import_excel"] = "Importa Excel"; +$lang["common_import_csv"] = "Importa CSV"; $lang["common_import_full_path"] = "E' richiesto il percorso completo"; $lang["common_import_remove_file"] = "Rimuovi"; $lang["common_import_select_file"] = "Seleziona file"; diff --git a/application/language/it/customers_lang.php b/application/language/it/customers_lang.php index c3e5eb637..3760b93e7 100644 --- a/application/language/it/customers_lang.php +++ b/application/language/it/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = "Tipo di sconto"; $lang["customers_email_duplicate"] = "L'indirizzo mail è già presente nel database."; $lang["customers_employee"] = "Impiegato"; $lang["customers_error_adding_updating"] = "Aggiunta o modifica clienti Fallita."; -$lang["customers_excel_import_failed"] = "Importazione Excel fallita"; -$lang["customers_excel_import_nodata_wrongformat"] = "Il file caricato non ha dati o non è formattato correttamente."; -$lang["customers_excel_import_partially_failed"] = "Importazione dei clienti è corretta con dei fallimenti:"; -$lang["customers_excel_import_success"] = "Importazione dei clienti Corretta."; -$lang["customers_import_items_excel"] = "Importazione dei clienti da Excel"; +$lang["customers_csv_import_failed"] = "Importazione CSV fallita"; +$lang["customers_csv_import_nodata_wrongformat"] = "Il file caricato non ha dati o non è formattato correttamente."; +$lang["customers_csv_import_partially_failed"] = "Importazione dei clienti è corretta con dei fallimenti:"; +$lang["customers_csv_import_success"] = "Importazione dei clienti Corretta."; +$lang["customers_import_items_csv"] = "Importazione dei clienti da CSV"; $lang["customers_mailchimp_activity_click"] = "Email click"; $lang["customers_mailchimp_activity_lastopen"] = "Ultima mail aperta"; $lang["customers_mailchimp_activity_open"] = "Email open"; diff --git a/application/language/it/giftcards_lang.php b/application/language/it/giftcards_lang.php index 2ba55c8a9..6d5d477b0 100644 --- a/application/language/it/giftcards_lang.php +++ b/application/language/it/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Modifica il campo desiderat $lang["giftcards_edit_multiple_giftcards"] = "Modifica collettivamente le Carte Regalo."; $lang["giftcards_error_adding_updating"] = "Aggiunta o aggiornamento Carta Regalo fallito."; $lang["giftcards_error_updating_multiple"] = "Aggiornamento Carta Regalo Fallito."; -$lang["giftcards_excel_import_failed"] = "Importazione Excel fallita."; +$lang["giftcards_csv_import_failed"] = "Importazione CSV fallita."; $lang["giftcards_generate_barcodes"] = "Genera Codice a Barre"; $lang["giftcards_giftcard"] = "Carta Regalo"; $lang["giftcards_giftcard_number"] = "Numero Carta Regalo"; diff --git a/application/language/it/items_lang.php b/application/language/it/items_lang.php index 01f738fe3..5dfa4b658 100644 --- a/application/language/it/items_lang.php +++ b/application/language/it/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Modifica multi-Articoli"; $lang["items_empty_upc_items"] = "Svuota Codice a Barre Articoli"; $lang["items_error_adding_updating"] = "Errore aggiunta/aggiornamento Articoli"; $lang["items_error_updating_multiple"] = "Errore aggiornamento Articoli"; -$lang["items_excel_import_failed"] = "Importazione Excel fallita"; -$lang["items_excel_import_nodata_wrongformat"] = "L'upload del file non ha dati o non è formattato correttamente."; -$lang["items_excel_import_partially_failed"] = "L'importazione di articoli è avvenuta con successo con alcuni fallimenti:"; -$lang["items_excel_import_success"] = "Importazione degli Articoli riuscita."; +$lang["items_csv_import_failed"] = "Importazione CSV fallita"; +$lang["items_csv_import_nodata_wrongformat"] = "L'upload del file non ha dati o non è formattato correttamente."; +$lang["items_csv_import_partially_failed"] = "L'importazione di articoli è avvenuta con successo con alcuni fallimenti:"; +$lang["items_csv_import_success"] = "Importazione degli Articoli riuscita."; $lang["items_generate_barcodes"] = "Genera Codice a Barre"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Importazione Articoli da Excel"; +$lang["items_import_items_csv"] = "Importazione Articoli da CSV"; $lang["items_info_provided_by"] = "Informazioni fornite da"; $lang["items_inventory"] = "Inventario"; $lang["items_inventory_comments"] = "Commenti"; diff --git a/application/language/km/common_lang.php b/application/language/km/common_lang.php index b7242b8f4..e2d95ced6 100644 --- a/application/language/km/common_lang.php +++ b/application/language/km/common_lang.php @@ -16,9 +16,9 @@ $lang["common_download_import_template"] = ""; $lang["common_edit"] = ""; $lang["common_email"] = ""; $lang["common_email_invalid_format"] = ""; -$lang["common_export_excel"] = ""; -$lang["common_export_excel_no"] = ""; -$lang["common_export_excel_yes"] = ""; +$lang["common_export_csv"] = ""; +$lang["common_export_csv_no"] = ""; +$lang["common_export_csv_yes"] = ""; $lang["common_fields_required_message"] = ""; $lang["common_first_name"] = ""; $lang["common_first_name_required"] = ""; @@ -29,7 +29,7 @@ $lang["common_gender_male"] = ""; $lang["common_id"] = ""; $lang["common_import"] = ""; $lang["common_import_change_file"] = ""; -$lang["common_import_excel"] = ""; +$lang["common_import_csv"] = ""; $lang["common_import_full_path"] = ""; $lang["common_import_remove_file"] = ""; $lang["common_import_select_file"] = ""; diff --git a/application/language/km/customers_lang.php b/application/language/km/customers_lang.php index 2819d98ca..c07c3fcab 100644 --- a/application/language/km/customers_lang.php +++ b/application/language/km/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = ""; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = ""; -$lang["customers_excel_import_failed"] = ""; -$lang["customers_excel_import_nodata_wrongformat"] = ""; -$lang["customers_excel_import_partially_failed"] = ""; -$lang["customers_excel_import_success"] = ""; -$lang["customers_import_items_excel"] = ""; +$lang["customers_csv_import_failed"] = ""; +$lang["customers_csv_import_nodata_wrongformat"] = ""; +$lang["customers_csv_import_partially_failed"] = ""; +$lang["customers_csv_import_success"] = ""; +$lang["customers_import_items_csv"] = ""; $lang["customers_mailchimp_activity_click"] = ""; $lang["customers_mailchimp_activity_lastopen"] = ""; $lang["customers_mailchimp_activity_open"] = ""; diff --git a/application/language/km/giftcards_lang.php b/application/language/km/giftcards_lang.php index 2777775b9..9f4ee661b 100644 --- a/application/language/km/giftcards_lang.php +++ b/application/language/km/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "កែសំរួលចន $lang["giftcards_edit_multiple_giftcards"] = "កែសំរួលហ្គិវកាតច្រើន។"; $lang["giftcards_error_adding_updating"] = "បន្ថែមឬ ធ្វើបច្ចុប្បន្នភាពហ្គិវកាតមិនបានជោគជ័យ។"; $lang["giftcards_error_updating_multiple"] = "ធ្វើបច្ចុប្បន្នភាពហ្គិវកាតមិនបានជោគជ័យ។"; -$lang["giftcards_excel_import_failed"] = "នាំចូលឯកសារអិចសែលមិនបានជោគជ័យ។"; +$lang["giftcards_csv_import_failed"] = "នាំចូលឯកសារអិចសែលមិនបានជោគជ័យ។"; $lang["giftcards_generate_barcodes"] = "បង្កើតបាកូដ"; $lang["giftcards_giftcard"] = "ហ្គិវកាត"; $lang["giftcards_giftcard_number"] = "លេខហ្គិវកាត"; diff --git a/application/language/km/items_lang.php b/application/language/km/items_lang.php index ab2590f81..1d074c2f5 100644 --- a/application/language/km/items_lang.php +++ b/application/language/km/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = ""; $lang["items_empty_upc_items"] = ""; $lang["items_error_adding_updating"] = ""; $lang["items_error_updating_multiple"] = ""; -$lang["items_excel_import_failed"] = ""; -$lang["items_excel_import_nodata_wrongformat"] = ""; -$lang["items_excel_import_partially_failed"] = ""; -$lang["items_excel_import_success"] = ""; +$lang["items_csv_import_failed"] = ""; +$lang["items_csv_import_nodata_wrongformat"] = ""; +$lang["items_csv_import_partially_failed"] = ""; +$lang["items_csv_import_success"] = ""; $lang["items_generate_barcodes"] = ""; $lang["items_hsn_code"] = ""; $lang["items_image"] = ""; -$lang["items_import_items_excel"] = ""; +$lang["items_import_items_csv"] = ""; $lang["items_info_provided_by"] = ""; $lang["items_inventory"] = ""; $lang["items_inventory_comments"] = ""; diff --git a/application/language/lo/common_lang.php b/application/language/lo/common_lang.php index e9b2f43d1..b9dcd8490 100644 --- a/application/language/lo/common_lang.php +++ b/application/language/lo/common_lang.php @@ -11,13 +11,13 @@ $lang["common_country"] = "ປະເທດ"; $lang["common_date"] = "ວັນທີ"; $lang["common_delete"] = "ລືບ"; $lang["common_det"] = "ລາຍລະອຽດ"; -$lang["common_download_import_template"] = "Download Import Excel Template (CSV)"; +$lang["common_download_import_template"] = "Download Import CSV Template (CSV)"; $lang["common_edit"] = "ແກ້ໄຂ"; $lang["common_email"] = "Email"; $lang["common_email_invalid_format"] = "ຮູບແບບຂອງອີເມລບໍ່ຖືກຕ້ອງ."; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "ຕົກລົງ"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "ຕົກລົງ"; $lang["common_fields_required_message"] = "ຕ້ອງໄດ້ປ້ອນຂໍ້ມູນໃນປ່ອງທີ່ເປັນສີແດງ"; $lang["common_first_name"] = "ຊື່"; $lang["common_first_name_required"] = "ຕ້ອງໄດ້ລະບຸຊື່."; @@ -28,7 +28,7 @@ $lang["common_gender_male"] = "ຊ"; $lang["common_id"] = "ລະຫັດ"; $lang["common_import"] = "ອິມພ໊ອດ"; $lang["common_import_change_file"] = "ປ່ຽນແປງ"; -$lang["common_import_excel"] = "ອິມພ໊ອດຈາກເອກເຊວ"; +$lang["common_import_csv"] = "ອິມພ໊ອດຈາກເອກເຊວ"; $lang["common_import_full_path"] = "ຕ້ອງການພາດເຕັມໄປຍັງແຟ້ມເອັກເຊວ"; $lang["common_import_remove_file"] = "ລຶບ"; $lang["common_import_select_file"] = "ເລືອກແຟ້ມ"; diff --git a/application/language/lo/customers_lang.php b/application/language/lo/customers_lang.php index b3caefaa2..27c86a821 100644 --- a/application/language/lo/customers_lang.php +++ b/application/language/lo/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = "Email Address is already present in the database."; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = "Customer add or update failed."; -$lang["customers_excel_import_failed"] = "Excel import failed"; -$lang["customers_excel_import_nodata_wrongformat"] = "The uploaded file has no data or is incorrectly formatted."; -$lang["customers_excel_import_partially_failed"] = "Customer import successful with some failures:"; -$lang["customers_excel_import_success"] = "Customer import successful."; -$lang["customers_import_items_excel"] = "Customer Import from Excel"; +$lang["customers_csv_import_failed"] = "CSV import failed"; +$lang["customers_csv_import_nodata_wrongformat"] = "The uploaded file has no data or is incorrectly formatted."; +$lang["customers_csv_import_partially_failed"] = "Customer import successful with some failures:"; +$lang["customers_csv_import_success"] = "Customer import successful."; +$lang["customers_import_items_csv"] = "Customer Import from CSV"; $lang["customers_mailchimp_activity_click"] = "Email click"; $lang["customers_mailchimp_activity_lastopen"] = "Last open email"; $lang["customers_mailchimp_activity_open"] = "Email open"; diff --git a/application/language/lo/giftcards_lang.php b/application/language/lo/giftcards_lang.php index 8f7876b96..f4f754fee 100644 --- a/application/language/lo/giftcards_lang.php +++ b/application/language/lo/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Edit desired fields for sel $lang["giftcards_edit_multiple_giftcards"] = "Edit Multiple Gift Cards."; $lang["giftcards_error_adding_updating"] = "Gift Card add or update failed."; $lang["giftcards_error_updating_multiple"] = "Gift Card(s) update failed."; -$lang["giftcards_excel_import_failed"] = "Excel import failed."; +$lang["giftcards_csv_import_failed"] = "CSV import failed."; $lang["giftcards_generate_barcodes"] = "Generate Barcodes"; $lang["giftcards_giftcard"] = "Gift Card"; $lang["giftcards_giftcard_number"] = "Gift Card Number"; diff --git a/application/language/lo/items_lang.php b/application/language/lo/items_lang.php index a6967ad28..b18fc06d6 100644 --- a/application/language/lo/items_lang.php +++ b/application/language/lo/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Editing Multiple Items"; $lang["items_empty_upc_items"] = "Empty Barcode Items"; $lang["items_error_adding_updating"] = "Error adding/updating item"; $lang["items_error_updating_multiple"] = "Error updating items"; -$lang["items_excel_import_failed"] = "Excel import failed"; -$lang["items_excel_import_nodata_wrongformat"] = "The uploaded file has no data or is formatted incorrectly."; -$lang["items_excel_import_partially_failed"] = "Item import successful with some failures:"; -$lang["items_excel_import_success"] = "Item import successful."; +$lang["items_csv_import_failed"] = "CSV import failed"; +$lang["items_csv_import_nodata_wrongformat"] = "The uploaded file has no data or is formatted incorrectly."; +$lang["items_csv_import_partially_failed"] = "Item import successful with some failures:"; +$lang["items_csv_import_success"] = "Item import successful."; $lang["items_generate_barcodes"] = "Generate Barcodes"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Item Import from Excel"; +$lang["items_import_items_csv"] = "Item Import from CSV"; $lang["items_info_provided_by"] = "Information provided by"; $lang["items_inventory"] = "Inventory"; $lang["items_inventory_comments"] = "Comments"; diff --git a/application/language/ml/common_lang.php b/application/language/ml/common_lang.php index b7242b8f4..e2d95ced6 100644 --- a/application/language/ml/common_lang.php +++ b/application/language/ml/common_lang.php @@ -16,9 +16,9 @@ $lang["common_download_import_template"] = ""; $lang["common_edit"] = ""; $lang["common_email"] = ""; $lang["common_email_invalid_format"] = ""; -$lang["common_export_excel"] = ""; -$lang["common_export_excel_no"] = ""; -$lang["common_export_excel_yes"] = ""; +$lang["common_export_csv"] = ""; +$lang["common_export_csv_no"] = ""; +$lang["common_export_csv_yes"] = ""; $lang["common_fields_required_message"] = ""; $lang["common_first_name"] = ""; $lang["common_first_name_required"] = ""; @@ -29,7 +29,7 @@ $lang["common_gender_male"] = ""; $lang["common_id"] = ""; $lang["common_import"] = ""; $lang["common_import_change_file"] = ""; -$lang["common_import_excel"] = ""; +$lang["common_import_csv"] = ""; $lang["common_import_full_path"] = ""; $lang["common_import_remove_file"] = ""; $lang["common_import_select_file"] = ""; diff --git a/application/language/ml/customers_lang.php b/application/language/ml/customers_lang.php index 2819d98ca..c07c3fcab 100644 --- a/application/language/ml/customers_lang.php +++ b/application/language/ml/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = ""; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = ""; -$lang["customers_excel_import_failed"] = ""; -$lang["customers_excel_import_nodata_wrongformat"] = ""; -$lang["customers_excel_import_partially_failed"] = ""; -$lang["customers_excel_import_success"] = ""; -$lang["customers_import_items_excel"] = ""; +$lang["customers_csv_import_failed"] = ""; +$lang["customers_csv_import_nodata_wrongformat"] = ""; +$lang["customers_csv_import_partially_failed"] = ""; +$lang["customers_csv_import_success"] = ""; +$lang["customers_import_items_csv"] = ""; $lang["customers_mailchimp_activity_click"] = ""; $lang["customers_mailchimp_activity_lastopen"] = ""; $lang["customers_mailchimp_activity_open"] = ""; diff --git a/application/language/ml/giftcards_lang.php b/application/language/ml/giftcards_lang.php index 251762795..604b32ce7 100644 --- a/application/language/ml/giftcards_lang.php +++ b/application/language/ml/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = ""; $lang["giftcards_edit_multiple_giftcards"] = ""; $lang["giftcards_error_adding_updating"] = ""; $lang["giftcards_error_updating_multiple"] = ""; -$lang["giftcards_excel_import_failed"] = ""; +$lang["giftcards_csv_import_failed"] = ""; $lang["giftcards_generate_barcodes"] = ""; $lang["giftcards_giftcard"] = ""; $lang["giftcards_giftcard_number"] = ""; diff --git a/application/language/ml/items_lang.php b/application/language/ml/items_lang.php index ab2590f81..1d074c2f5 100644 --- a/application/language/ml/items_lang.php +++ b/application/language/ml/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = ""; $lang["items_empty_upc_items"] = ""; $lang["items_error_adding_updating"] = ""; $lang["items_error_updating_multiple"] = ""; -$lang["items_excel_import_failed"] = ""; -$lang["items_excel_import_nodata_wrongformat"] = ""; -$lang["items_excel_import_partially_failed"] = ""; -$lang["items_excel_import_success"] = ""; +$lang["items_csv_import_failed"] = ""; +$lang["items_csv_import_nodata_wrongformat"] = ""; +$lang["items_csv_import_partially_failed"] = ""; +$lang["items_csv_import_success"] = ""; $lang["items_generate_barcodes"] = ""; $lang["items_hsn_code"] = ""; $lang["items_image"] = ""; -$lang["items_import_items_excel"] = ""; +$lang["items_import_items_csv"] = ""; $lang["items_info_provided_by"] = ""; $lang["items_inventory"] = ""; $lang["items_inventory_comments"] = ""; diff --git a/application/language/nl-BE/common_lang.php b/application/language/nl-BE/common_lang.php index b09535162..8d1723cee 100755 --- a/application/language/nl-BE/common_lang.php +++ b/application/language/nl-BE/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Land"; $lang["common_date"] = "Datum"; $lang["common_delete"] = "Verwijder"; $lang["common_det"] = "details"; -$lang["common_download_import_template"] = "Download Import Excel Template (CSV)"; +$lang["common_download_import_template"] = "Download Import CSV Template (CSV)"; $lang["common_edit"] = "bewerk"; $lang["common_email"] = "Email"; $lang["common_email_invalid_format"] = "Je moet een geldig email adres invullen."; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "Ja"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "Ja"; $lang["common_fields_required_message"] = "Velden met een * moeten ingevuld worden"; $lang["common_first_name"] = "Voornaam"; $lang["common_first_name_required"] = "De voornaam moet ingevuld worden."; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Wijzig"; -$lang["common_import_excel"] = "Excel Import"; -$lang["common_import_full_path"] = "Volledig pad naar excel file vereist"; +$lang["common_import_csv"] = "CSV Import"; +$lang["common_import_full_path"] = "Volledig pad naar csv file vereist"; $lang["common_import_remove_file"] = "Verwijder"; $lang["common_import_select_file"] = "Selecteer bestand"; $lang["common_inv"] = "stock"; diff --git a/application/language/nl-BE/customers_lang.php b/application/language/nl-BE/customers_lang.php index 294bee4ec..5971b4f21 100755 --- a/application/language/nl-BE/customers_lang.php +++ b/application/language/nl-BE/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = "Type Korting"; $lang["customers_email_duplicate"] = "Emailadres is reeds aanwezig in de database."; $lang["customers_employee"] = "Werknemer"; $lang["customers_error_adding_updating"] = "Fout bij het toevoegen/bewerken van een klant."; -$lang["customers_excel_import_failed"] = "Excel import mislukt"; -$lang["customers_excel_import_nodata_wrongformat"] = "Je geüploade bestand heeft geen gegevens of een verkeerd formaat."; -$lang["customers_excel_import_partially_failed"] = "De meeste klanten zijn geïmporteerd. Maar sommige niet, hier is de lijst:"; -$lang["customers_excel_import_success"] = "Klanten met succes geïmporteerd."; -$lang["customers_import_items_excel"] = "Importeer klanten vanuit een Excel bestand"; +$lang["customers_csv_import_failed"] = "CSV import mislukt"; +$lang["customers_csv_import_nodata_wrongformat"] = "Je geüploade bestand heeft geen gegevens of een verkeerd formaat."; +$lang["customers_csv_import_partially_failed"] = "De meeste klanten zijn geïmporteerd. Maar sommige niet, hier is de lijst:"; +$lang["customers_csv_import_success"] = "Klanten met succes geïmporteerd."; +$lang["customers_import_items_csv"] = "Importeer klanten vanuit een CSV bestand"; $lang["customers_mailchimp_activity_click"] = "Email klik"; $lang["customers_mailchimp_activity_lastopen"] = "Laatst geopende email"; $lang["customers_mailchimp_activity_open"] = "Email open"; diff --git a/application/language/nl-BE/giftcards_lang.php b/application/language/nl-BE/giftcards_lang.php index 2fa7bf9f9..89c9735f5 100644 --- a/application/language/nl-BE/giftcards_lang.php +++ b/application/language/nl-BE/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Bewerk de velden die u wil $lang["giftcards_edit_multiple_giftcards"] = "Bewerk meerdere cadeaubons."; $lang["giftcards_error_adding_updating"] = "Fout bij het bewaren van cadeaubons."; $lang["giftcards_error_updating_multiple"] = "Fout bij het bewaren van cadeaubons."; -$lang["giftcards_excel_import_failed"] = "Excel import mislukt."; +$lang["giftcards_csv_import_failed"] = "CSV import mislukt."; $lang["giftcards_generate_barcodes"] = "Genereer Barcodes"; $lang["giftcards_giftcard"] = "Cadeaubon"; $lang["giftcards_giftcard_number"] = "Cadeaubon Nummer"; diff --git a/application/language/nl-BE/items_lang.php b/application/language/nl-BE/items_lang.php index 9c569a028..da5cd2786 100755 --- a/application/language/nl-BE/items_lang.php +++ b/application/language/nl-BE/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Meerdere Producten Bewerken"; $lang["items_empty_upc_items"] = "Zonder barcode"; $lang["items_error_adding_updating"] = "Fout bij het toevoegen/aanpassen van een product"; $lang["items_error_updating_multiple"] = "Fout bij het bewaren van producten"; -$lang["items_excel_import_failed"] = "Excel import mislukt"; -$lang["items_excel_import_nodata_wrongformat"] = "Je geüploade bestand heeft geen gegevens of een verkeerd formaat"; -$lang["items_excel_import_partially_failed"] = "Meesten Artikelen geïmporteerd. Maar niet alles, Hier is een lijst"; -$lang["items_excel_import_success"] = "Import van Artikelen met succes afgerond"; +$lang["items_csv_import_failed"] = "CSV import mislukt"; +$lang["items_csv_import_nodata_wrongformat"] = "Je geüploade bestand heeft geen gegevens of een verkeerd formaat"; +$lang["items_csv_import_partially_failed"] = "Meesten Artikelen geïmporteerd. Maar niet alles, Hier is een lijst"; +$lang["items_csv_import_success"] = "Import van Artikelen met succes afgerond"; $lang["items_generate_barcodes"] = "Genereer Barcodes"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Afbeelding"; -$lang["items_import_items_excel"] = "Importeer artikelen van een Excel sheet"; +$lang["items_import_items_csv"] = "Importeer artikelen van een CSV sheet"; $lang["items_info_provided_by"] = "Info afgeleverd door"; $lang["items_inventory"] = "Stock"; $lang["items_inventory_comments"] = "Commentaar"; diff --git a/application/language/nl/common_lang.php b/application/language/nl/common_lang.php index db86c953f..1f1f8fa49 100644 --- a/application/language/nl/common_lang.php +++ b/application/language/nl/common_lang.php @@ -11,13 +11,13 @@ $lang["common_country"] = "Land"; $lang["common_date"] = "Datum"; $lang["common_delete"] = "Verwijder"; $lang["common_det"] = "details"; -$lang["common_download_import_template"] = "Download Import Excel Template (CSV)"; +$lang["common_download_import_template"] = "Download Import CSV Template (CSV)"; $lang["common_edit"] = "Wijzig"; $lang["common_email"] = "E-mail"; $lang["common_email_invalid_format"] = ""; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "Nee"; -$lang["common_export_excel_yes"] = "Ja"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "Nee"; +$lang["common_export_csv_yes"] = "Ja"; $lang["common_fields_required_message"] = ""; $lang["common_first_name"] = "Voornaam"; $lang["common_first_name_required"] = ""; @@ -28,7 +28,7 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = ""; -$lang["common_import_excel"] = ""; +$lang["common_import_csv"] = ""; $lang["common_import_full_path"] = ""; $lang["common_import_remove_file"] = "Verwijder"; $lang["common_import_select_file"] = ""; diff --git a/application/language/nl/customers_lang.php b/application/language/nl/customers_lang.php index 81f924140..7dbcf9cd5 100644 --- a/application/language/nl/customers_lang.php +++ b/application/language/nl/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = "Email adres is reeds aanwezig in de database."; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = "Fout bij het toevoegen/bewerken van een klant."; -$lang["customers_excel_import_failed"] = "Excel import mislukt"; -$lang["customers_excel_import_nodata_wrongformat"] = "Je geüploade bestand heeft geen gegevens of een verkeerd formaat."; -$lang["customers_excel_import_partially_failed"] = "De meeste klanten zijn geïmporteerd. Maar sommige niet, hier is de lijst:"; -$lang["customers_excel_import_success"] = "Klanten met succes geïmporteerd."; -$lang["customers_import_items_excel"] = "Importeer klanten vanuit een Excel bestand"; +$lang["customers_csv_import_failed"] = "CSV import mislukt"; +$lang["customers_csv_import_nodata_wrongformat"] = "Je geüploade bestand heeft geen gegevens of een verkeerd formaat."; +$lang["customers_csv_import_partially_failed"] = "De meeste klanten zijn geïmporteerd. Maar sommige niet, hier is de lijst:"; +$lang["customers_csv_import_success"] = "Klanten met succes geïmporteerd."; +$lang["customers_import_items_csv"] = "Importeer klanten vanuit een CSV bestand"; $lang["customers_mailchimp_activity_click"] = "Email klik"; $lang["customers_mailchimp_activity_lastopen"] = "Laatst geopende email"; $lang["customers_mailchimp_activity_open"] = "Email open"; diff --git a/application/language/nl/giftcards_lang.php b/application/language/nl/giftcards_lang.php index 6bfb76265..cb49dd31e 100644 --- a/application/language/nl/giftcards_lang.php +++ b/application/language/nl/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Bewerk de velden die u wil $lang["giftcards_edit_multiple_giftcards"] = "Bewerk meedere cadeaubons"; $lang["giftcards_error_adding_updating"] = "Fout bij het bewaren van cadeaubons"; $lang["giftcards_error_updating_multiple"] = "Fout bij het bewaren van cadeaubons"; -$lang["giftcards_excel_import_failed"] = "Excel import mislukt"; +$lang["giftcards_csv_import_failed"] = "CSV import mislukt"; $lang["giftcards_generate_barcodes"] = "Genereer Barcodes"; $lang["giftcards_giftcard"] = "Cadeaubon"; $lang["giftcards_giftcard_number"] = "Cadeaubon Nummer"; diff --git a/application/language/nl/items_lang.php b/application/language/nl/items_lang.php index 837c588fd..a31a7ffb0 100644 --- a/application/language/nl/items_lang.php +++ b/application/language/nl/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Meerdere Producten Bewerken"; $lang["items_empty_upc_items"] = "Zonder barcode"; $lang["items_error_adding_updating"] = "Fout bij het toevoegen/aanpassen van een product"; $lang["items_error_updating_multiple"] = "Fout bij het bewaren van producten"; -$lang["items_excel_import_failed"] = "Excel import mislukt"; -$lang["items_excel_import_nodata_wrongformat"] = "Je geüploade bestand heeft geen gegevens of een verkeerd formaat"; -$lang["items_excel_import_partially_failed"] = "Meesten Artikelen geïmporteerd. Maar niet alles, Hier is een lijst"; -$lang["items_excel_import_success"] = "Import van Artikelen met succes afgerond"; +$lang["items_csv_import_failed"] = "CSV import mislukt"; +$lang["items_csv_import_nodata_wrongformat"] = "Je geüploade bestand heeft geen gegevens of een verkeerd formaat"; +$lang["items_csv_import_partially_failed"] = "Meesten Artikelen geïmporteerd. Maar niet alles, Hier is een lijst"; +$lang["items_csv_import_success"] = "Import van Artikelen met succes afgerond"; $lang["items_generate_barcodes"] = "Genereer Barcodes"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Afbeelding"; -$lang["items_import_items_excel"] = "Importeer artikelen van een Excel sheet"; +$lang["items_import_items_csv"] = "Importeer artikelen van een CSV sheet"; $lang["items_info_provided_by"] = "Info afgeleverd door"; $lang["items_inventory"] = "Stock"; $lang["items_inventory_comments"] = "Commentaar"; diff --git a/application/language/pl/common_lang.php b/application/language/pl/common_lang.php index 882ef87a9..db5cdf0ad 100644 --- a/application/language/pl/common_lang.php +++ b/application/language/pl/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Country"; $lang["common_date"] = "Date"; $lang["common_delete"] = "Delete"; $lang["common_det"] = "details"; -$lang["common_download_import_template"] = "Download Import Excel Template (CSV)"; +$lang["common_download_import_template"] = "Download Import CSV Template (CSV)"; $lang["common_edit"] = "edit"; $lang["common_email"] = "Email"; $lang["common_email_invalid_format"] = "The email address is not in the correct format."; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "Yes"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "Yes"; $lang["common_fields_required_message"] = "Fields in red are required"; $lang["common_first_name"] = "First Name"; $lang["common_first_name_required"] = "First Name is a required field."; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Change"; -$lang["common_import_excel"] = "Excel Import"; -$lang["common_import_full_path"] = "Full path to excel file required"; +$lang["common_import_csv"] = "CSV Import"; +$lang["common_import_full_path"] = "Full path to csv file required"; $lang["common_import_remove_file"] = "Remove"; $lang["common_import_select_file"] = "Select file"; $lang["common_inv"] = "inv"; diff --git a/application/language/pl/customers_lang.php b/application/language/pl/customers_lang.php index 2819d98ca..c07c3fcab 100644 --- a/application/language/pl/customers_lang.php +++ b/application/language/pl/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = ""; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = ""; -$lang["customers_excel_import_failed"] = ""; -$lang["customers_excel_import_nodata_wrongformat"] = ""; -$lang["customers_excel_import_partially_failed"] = ""; -$lang["customers_excel_import_success"] = ""; -$lang["customers_import_items_excel"] = ""; +$lang["customers_csv_import_failed"] = ""; +$lang["customers_csv_import_nodata_wrongformat"] = ""; +$lang["customers_csv_import_partially_failed"] = ""; +$lang["customers_csv_import_success"] = ""; +$lang["customers_import_items_csv"] = ""; $lang["customers_mailchimp_activity_click"] = ""; $lang["customers_mailchimp_activity_lastopen"] = ""; $lang["customers_mailchimp_activity_open"] = ""; diff --git a/application/language/pl/giftcards_lang.php b/application/language/pl/giftcards_lang.php index 251762795..604b32ce7 100644 --- a/application/language/pl/giftcards_lang.php +++ b/application/language/pl/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = ""; $lang["giftcards_edit_multiple_giftcards"] = ""; $lang["giftcards_error_adding_updating"] = ""; $lang["giftcards_error_updating_multiple"] = ""; -$lang["giftcards_excel_import_failed"] = ""; +$lang["giftcards_csv_import_failed"] = ""; $lang["giftcards_generate_barcodes"] = ""; $lang["giftcards_giftcard"] = ""; $lang["giftcards_giftcard_number"] = ""; diff --git a/application/language/pl/items_lang.php b/application/language/pl/items_lang.php index ab2590f81..1d074c2f5 100644 --- a/application/language/pl/items_lang.php +++ b/application/language/pl/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = ""; $lang["items_empty_upc_items"] = ""; $lang["items_error_adding_updating"] = ""; $lang["items_error_updating_multiple"] = ""; -$lang["items_excel_import_failed"] = ""; -$lang["items_excel_import_nodata_wrongformat"] = ""; -$lang["items_excel_import_partially_failed"] = ""; -$lang["items_excel_import_success"] = ""; +$lang["items_csv_import_failed"] = ""; +$lang["items_csv_import_nodata_wrongformat"] = ""; +$lang["items_csv_import_partially_failed"] = ""; +$lang["items_csv_import_success"] = ""; $lang["items_generate_barcodes"] = ""; $lang["items_hsn_code"] = ""; $lang["items_image"] = ""; -$lang["items_import_items_excel"] = ""; +$lang["items_import_items_csv"] = ""; $lang["items_info_provided_by"] = ""; $lang["items_inventory"] = ""; $lang["items_inventory_comments"] = ""; diff --git a/application/language/pt-BR/common_lang.php b/application/language/pt-BR/common_lang.php index 85604c546..3415d6363 100644 --- a/application/language/pt-BR/common_lang.php +++ b/application/language/pt-BR/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "País"; $lang["common_date"] = "Data"; $lang["common_delete"] = "Apagar"; $lang["common_det"] = "detalhes"; -$lang["common_download_import_template"] = "Baixar Modelo de importação Excel(CSV)"; +$lang["common_download_import_template"] = "Baixar Modelo de importação CSV(CSV)"; $lang["common_edit"] = "editar"; $lang["common_email"] = "e-mail"; $lang["common_email_invalid_format"] = "O formato do e-mail não é válido."; -$lang["common_export_excel"] = "Exportar para Excel"; -$lang["common_export_excel_no"] = "Não"; -$lang["common_export_excel_yes"] = "Sim"; +$lang["common_export_csv"] = "Exportar para CSV"; +$lang["common_export_csv_no"] = "Não"; +$lang["common_export_csv_yes"] = "Sim"; $lang["common_fields_required_message"] = "Campos em vermelho são obrigatórios"; $lang["common_first_name"] = "Nome"; $lang["common_first_name_required"] = "O nome é requerido."; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Importar"; $lang["common_import_change_file"] = "Requerido"; -$lang["common_import_excel"] = "Importar do Excel"; -$lang["common_import_full_path"] = "Caminho completo para o arquivo do Excel é necessário"; +$lang["common_import_csv"] = "Importar do CSV"; +$lang["common_import_full_path"] = "Caminho completo para o arquivo do CSV é necessário"; $lang["common_import_remove_file"] = "Remover"; $lang["common_import_select_file"] = "Selecionar o arquivo"; $lang["common_inv"] = "fat"; diff --git a/application/language/pt-BR/customers_lang.php b/application/language/pt-BR/customers_lang.php index c253d91f1..9a8cae446 100644 --- a/application/language/pt-BR/customers_lang.php +++ b/application/language/pt-BR/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = "Tipo de desconto"; $lang["customers_email_duplicate"] = "O endereço de e-mail já está presente no banco de dados."; $lang["customers_employee"] = "Empregado"; $lang["customers_error_adding_updating"] = "Erro adicionar/atualizar cliente."; -$lang["customers_excel_import_failed"] = "Importação do Excel falhou"; -$lang["customers_excel_import_nodata_wrongformat"] = "Seu arquivo enviado não contém dados ou formato errado."; -$lang["customers_excel_import_partially_failed"] = "A maioria dos clientes importado. Mas alguns não eram, aqui está a lista:"; -$lang["customers_excel_import_success"] = "Importação de clientes com sucesso."; -$lang["customers_import_items_excel"] = "Importar clientes com planilha do Excel"; +$lang["customers_csv_import_failed"] = "Importação do CSV falhou"; +$lang["customers_csv_import_nodata_wrongformat"] = "Seu arquivo enviado não contém dados ou formato errado."; +$lang["customers_csv_import_partially_failed"] = "A maioria dos clientes importado. Mas alguns não eram, aqui está a lista:"; +$lang["customers_csv_import_success"] = "Importação de clientes com sucesso."; +$lang["customers_import_items_csv"] = "Importar clientes com planilha do CSV"; $lang["customers_mailchimp_activity_click"] = "Clique por e-mail"; $lang["customers_mailchimp_activity_lastopen"] = "Último email aberto"; $lang["customers_mailchimp_activity_open"] = "Email aberto"; diff --git a/application/language/pt-BR/giftcards_lang.php b/application/language/pt-BR/giftcards_lang.php index 01cd91ef4..acf0abf4c 100644 --- a/application/language/pt-BR/giftcards_lang.php +++ b/application/language/pt-BR/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Editar os campos que deseja $lang["giftcards_edit_multiple_giftcards"] = "Editar vários cartões de presente."; $lang["giftcards_error_adding_updating"] = "Erro ao adicionar/atualizar cartões de presente."; $lang["giftcards_error_updating_multiple"] = "Erro ao atualizar cartões de presente."; -$lang["giftcards_excel_import_failed"] = "importação Excel falhou."; +$lang["giftcards_csv_import_failed"] = "importação CSV falhou."; $lang["giftcards_generate_barcodes"] = "Gerar códigos de barras"; $lang["giftcards_giftcard"] = "Cartão Presente"; $lang["giftcards_giftcard_number"] = "Número cartão de presente"; diff --git a/application/language/pt-BR/items_lang.php b/application/language/pt-BR/items_lang.php index eedd96ddc..31792e326 100644 --- a/application/language/pt-BR/items_lang.php +++ b/application/language/pt-BR/items_lang.php @@ -31,14 +31,14 @@ $lang["items_edit_multiple_items"] = "Editando Múltiplos Itens"; $lang["items_empty_upc_items"] = "Vazio UPC Itens"; $lang["items_error_adding_updating"] = "Erro ao adicionar/atualizar item"; $lang["items_error_updating_multiple"] = "Erro na atualização de itens"; -$lang["items_excel_import_failed"] = "Importação do Excel falhou"; -$lang["items_excel_import_nodata_wrongformat"] = "Seu arquivo enviado não contém dados ou formato errado."; -$lang["items_excel_import_partially_failed"] = "Houve %1 falha na importação de itens na(s) linha(s): %2. Nenhuma linha foi importada."; -$lang["items_excel_import_success"] = "Importação de Itens com sucesso."; +$lang["items_csv_import_failed"] = "Importação do CSV falhou"; +$lang["items_csv_import_nodata_wrongformat"] = "Seu arquivo enviado não contém dados ou formato errado."; +$lang["items_csv_import_partially_failed"] = "Houve %1 falha na importação de itens na(s) linha(s): %2. Nenhuma linha foi importada."; +$lang["items_csv_import_success"] = "Importação de Itens com sucesso."; $lang["items_generate_barcodes"] = "Gerar Códigos de Barras"; $lang["items_hsn_code"] = "Nomenclatura do Sistema Harmonizado"; $lang["items_image"] = "Imagem"; -$lang["items_import_items_excel"] = "Importar planilha de produtos do Excel"; +$lang["items_import_items_csv"] = "Importar planilha de produtos do CSV"; $lang["items_info_provided_by"] = "Informação fornecida por"; $lang["items_inventory"] = "Inventário"; $lang["items_inventory_comments"] = "Comentário"; diff --git a/application/language/ro/common_lang.php b/application/language/ro/common_lang.php index 7c6237b74..1b474b9ad 100644 --- a/application/language/ro/common_lang.php +++ b/application/language/ro/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Țară"; $lang["common_date"] = "Dată"; $lang["common_delete"] = "Ștergere"; $lang["common_det"] = "detalii"; -$lang["common_download_import_template"] = "Descarcă Importează Excel Template (CSV)"; +$lang["common_download_import_template"] = "Descarcă Importează CSV Template (CSV)"; $lang["common_edit"] = "editează"; $lang["common_email"] = "Adresă de email"; $lang["common_email_invalid_format"] = "Adresa de e-mail nu este în formatul corect."; -$lang["common_export_excel"] = "Export Excel"; -$lang["common_export_excel_no"] = "Nu"; -$lang["common_export_excel_yes"] = "Da"; +$lang["common_export_csv"] = "Export CSV"; +$lang["common_export_csv_no"] = "Nu"; +$lang["common_export_csv_yes"] = "Da"; $lang["common_fields_required_message"] = "Sunt obligatorii câmpurile roșii"; $lang["common_first_name"] = "Nume"; $lang["common_first_name_required"] = "Primul nume este un câmp obligatoriu."; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Schimbare"; -$lang["common_import_excel"] = "Excel Import"; -$lang["common_import_full_path"] = "Calea completa pentru fisierul Excel este necesara"; +$lang["common_import_csv"] = "CSV Import"; +$lang["common_import_full_path"] = "Calea completa pentru fisierul CSV este necesara"; $lang["common_import_remove_file"] = "Elimină"; $lang["common_import_select_file"] = "Selectează fișier"; $lang["common_inv"] = "inv"; diff --git a/application/language/ro/customers_lang.php b/application/language/ro/customers_lang.php index d61bc93eb..75e0a90aa 100644 --- a/application/language/ro/customers_lang.php +++ b/application/language/ro/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = "Tip Reducere"; $lang["customers_email_duplicate"] = "Adresa de email exista deja in baza de date."; $lang["customers_employee"] = "Angajat"; $lang["customers_error_adding_updating"] = "Adugare sau actualizare Client esuata."; -$lang["customers_excel_import_failed"] = "Importare Excel esuata"; -$lang["customers_excel_import_nodata_wrongformat"] = "Fisierul incarcat nu contine date sau are format incorect."; -$lang["customers_excel_import_partially_failed"] = "Importare client cu succes avand cateva esecuri:"; -$lang["customers_excel_import_success"] = "Importare cu succes Client."; -$lang["customers_import_items_excel"] = "Importare Client din Excel"; +$lang["customers_csv_import_failed"] = "Importare CSV esuata"; +$lang["customers_csv_import_nodata_wrongformat"] = "Fisierul incarcat nu contine date sau are format incorect."; +$lang["customers_csv_import_partially_failed"] = "Importare client cu succes avand cateva esecuri:"; +$lang["customers_csv_import_success"] = "Importare cu succes Client."; +$lang["customers_import_items_csv"] = "Importare Client din CSV"; $lang["customers_mailchimp_activity_click"] = "Click email"; $lang["customers_mailchimp_activity_lastopen"] = "Ultima deschidere email"; $lang["customers_mailchimp_activity_open"] = "Deschide email"; diff --git a/application/language/ro/giftcards_lang.php b/application/language/ro/giftcards_lang.php index 251762795..604b32ce7 100644 --- a/application/language/ro/giftcards_lang.php +++ b/application/language/ro/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = ""; $lang["giftcards_edit_multiple_giftcards"] = ""; $lang["giftcards_error_adding_updating"] = ""; $lang["giftcards_error_updating_multiple"] = ""; -$lang["giftcards_excel_import_failed"] = ""; +$lang["giftcards_csv_import_failed"] = ""; $lang["giftcards_generate_barcodes"] = ""; $lang["giftcards_giftcard"] = ""; $lang["giftcards_giftcard_number"] = ""; diff --git a/application/language/ro/items_lang.php b/application/language/ro/items_lang.php index ab2590f81..1d074c2f5 100644 --- a/application/language/ro/items_lang.php +++ b/application/language/ro/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = ""; $lang["items_empty_upc_items"] = ""; $lang["items_error_adding_updating"] = ""; $lang["items_error_updating_multiple"] = ""; -$lang["items_excel_import_failed"] = ""; -$lang["items_excel_import_nodata_wrongformat"] = ""; -$lang["items_excel_import_partially_failed"] = ""; -$lang["items_excel_import_success"] = ""; +$lang["items_csv_import_failed"] = ""; +$lang["items_csv_import_nodata_wrongformat"] = ""; +$lang["items_csv_import_partially_failed"] = ""; +$lang["items_csv_import_success"] = ""; $lang["items_generate_barcodes"] = ""; $lang["items_hsn_code"] = ""; $lang["items_image"] = ""; -$lang["items_import_items_excel"] = ""; +$lang["items_import_items_csv"] = ""; $lang["items_info_provided_by"] = ""; $lang["items_inventory"] = ""; $lang["items_inventory_comments"] = ""; diff --git a/application/language/ru/common_lang.php b/application/language/ru/common_lang.php index d6321f913..9ebead136 100644 --- a/application/language/ru/common_lang.php +++ b/application/language/ru/common_lang.php @@ -16,9 +16,9 @@ $lang["common_download_import_template"] = "Скачать шаблон Импо $lang["common_edit"] = "редактировать"; $lang["common_email"] = "Электронная почта"; $lang["common_email_invalid_format"] = "Это электронная почта не в нужный формат."; -$lang["common_export_excel"] = "Экзель Экспорт"; -$lang["common_export_excel_no"] = "Нет"; -$lang["common_export_excel_yes"] = "Да"; +$lang["common_export_csv"] = "Экзель Экспорт"; +$lang["common_export_csv_no"] = "Нет"; +$lang["common_export_csv_yes"] = "Да"; $lang["common_fields_required_message"] = "Красные поля обязательны для заполнения"; $lang["common_first_name"] = "Имя"; $lang["common_first_name_required"] = "Имя - обязательное поле для заполнения."; @@ -29,7 +29,7 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "ид"; $lang["common_import"] = "Импорт"; $lang["common_import_change_file"] = "Изменить"; -$lang["common_import_excel"] = "Импорт Экзель"; +$lang["common_import_csv"] = "Импорт Экзель"; $lang["common_import_full_path"] = "Полный путь к файлу требуется"; $lang["common_import_remove_file"] = "Убрать"; $lang["common_import_select_file"] = "Выберите файл"; diff --git a/application/language/ru/customers_lang.php b/application/language/ru/customers_lang.php index 8c0a6963d..d14d4d0f4 100644 --- a/application/language/ru/customers_lang.php +++ b/application/language/ru/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = "Адрес электронной почты уже существует в базе данных."; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = "Ошибка при добавлении/обновлении клиента."; -$lang["customers_excel_import_failed"] = "Ошибка импорта Excel"; -$lang["customers_excel_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format."; -$lang["customers_excel_import_partially_failed"] = "Импорт клиента успешно с некоторыми сбоями:"; -$lang["customers_excel_import_success"] = "Import of Customers successful."; -$lang["customers_import_items_excel"] = "Import customers from Excel sheet"; +$lang["customers_csv_import_failed"] = "Ошибка импорта CSV"; +$lang["customers_csv_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format."; +$lang["customers_csv_import_partially_failed"] = "Импорт клиента успешно с некоторыми сбоями:"; +$lang["customers_csv_import_success"] = "Import of Customers successful."; +$lang["customers_import_items_csv"] = "Import customers from CSV sheet"; $lang["customers_mailchimp_activity_click"] = "Электронной почты нажмите"; $lang["customers_mailchimp_activity_lastopen"] = "Последнее открытое письмо"; $lang["customers_mailchimp_activity_open"] = "Открытое письмо"; diff --git a/application/language/ru/giftcards_lang.php b/application/language/ru/giftcards_lang.php index b46883bb9..3549c4768 100644 --- a/application/language/ru/giftcards_lang.php +++ b/application/language/ru/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Отредактируйт $lang["giftcards_edit_multiple_giftcards"] = "Редактирование нескольких Подарочные карты."; $lang["giftcards_error_adding_updating"] = "Ошибка при добавлении/обновлении подарочную карту."; $lang["giftcards_error_updating_multiple"] = "Ошибка при обновлении Подарочные карты."; -$lang["giftcards_excel_import_failed"] = "Ошибка импорта Excel."; +$lang["giftcards_csv_import_failed"] = "Ошибка импорта CSV."; $lang["giftcards_generate_barcodes"] = "Создание штрих-кодов"; $lang["giftcards_giftcard"] = "Подарочная карта"; $lang["giftcards_giftcard_number"] = "Номер Подарочную карту"; diff --git a/application/language/ru/items_lang.php b/application/language/ru/items_lang.php index df621bd34..09a853f67 100644 --- a/application/language/ru/items_lang.php +++ b/application/language/ru/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Редактирование нескол $lang["items_empty_upc_items"] = "Empty UPC Items"; $lang["items_error_adding_updating"] = "Ошибка при добавлении/обновлении товара"; $lang["items_error_updating_multiple"] = "Ошибка при обновлении товаров"; -$lang["items_excel_import_failed"] = "Ошибка импорта Excel"; -$lang["items_excel_import_nodata_wrongformat"] = "Загружаемый файл пуст или отформатирован неправильно."; -$lang["items_excel_import_partially_failed"] = "Часть товаров успешно имортирована, однако имеются ошибки:"; -$lang["items_excel_import_success"] = "Товар успешно импортирован."; +$lang["items_csv_import_failed"] = "Ошибка импорта CSV"; +$lang["items_csv_import_nodata_wrongformat"] = "Загружаемый файл пуст или отформатирован неправильно."; +$lang["items_csv_import_partially_failed"] = "Часть товаров успешно имортирована, однако имеются ошибки:"; +$lang["items_csv_import_success"] = "Товар успешно импортирован."; $lang["items_generate_barcodes"] = "Создание ценников для распечатки"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Изображение"; -$lang["items_import_items_excel"] = "Импорт товара из файла Excel"; +$lang["items_import_items_csv"] = "Импорт товара из файла CSV"; $lang["items_info_provided_by"] = "Информация предоставлена"; $lang["items_inventory"] = "инвентаризация"; $lang["items_inventory_comments"] = "Комментарии"; diff --git a/application/language/sv/common_lang.php b/application/language/sv/common_lang.php index fa7c78c70..c300a6351 100644 --- a/application/language/sv/common_lang.php +++ b/application/language/sv/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Land"; $lang["common_date"] = "Datum"; $lang["common_delete"] = "Radera"; $lang["common_det"] = "detaljer"; -$lang["common_download_import_template"] = "Hämta importerad Excel-mall (CSV)"; +$lang["common_download_import_template"] = "Hämta importerad CSV-mall (CSV)"; $lang["common_edit"] = "Ändra"; $lang["common_email"] = "E-mail"; $lang["common_email_invalid_format"] = "E-postadressen är inte i rätt format."; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "Nej"; -$lang["common_export_excel_yes"] = "Ja"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "Nej"; +$lang["common_export_csv_yes"] = "Ja"; $lang["common_fields_required_message"] = "Fält markerade i rött är obligatoriska"; $lang["common_first_name"] = "Förnamn"; $lang["common_first_name_required"] = "Förnamn är ett obligatoriskt fält."; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "Man"; $lang["common_id"] = "Id"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Ändra"; -$lang["common_import_excel"] = "Excel-import"; -$lang["common_import_full_path"] = "Fullständig sökväg till Excel-fil krävs"; +$lang["common_import_csv"] = "CSV-import"; +$lang["common_import_full_path"] = "Fullständig sökväg till CSV-fil krävs"; $lang["common_import_remove_file"] = "Radera"; $lang["common_import_select_file"] = "Välj fil"; $lang["common_inv"] = "Fakt"; diff --git a/application/language/sv/customers_lang.php b/application/language/sv/customers_lang.php index 05027d528..44cff455b 100644 --- a/application/language/sv/customers_lang.php +++ b/application/language/sv/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = "E-postadress finns redan i databasen."; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = "Kund tillägg eller uppdatering misslyckades."; -$lang["customers_excel_import_failed"] = "Excel-import misslyckades"; -$lang["customers_excel_import_nodata_wrongformat"] = "Den uppladdade filen har ingen data eller är formaterad felaktigt."; -$lang["customers_excel_import_partially_failed"] = "Kundimporten lyckades med några misslyckanden:"; -$lang["customers_excel_import_success"] = "Kundimporten lyckades."; -$lang["customers_import_items_excel"] = "Kund import från Excel"; +$lang["customers_csv_import_failed"] = "CSV-import misslyckades"; +$lang["customers_csv_import_nodata_wrongformat"] = "Den uppladdade filen har ingen data eller är formaterad felaktigt."; +$lang["customers_csv_import_partially_failed"] = "Kundimporten lyckades med några misslyckanden:"; +$lang["customers_csv_import_success"] = "Kundimporten lyckades."; +$lang["customers_import_items_csv"] = "Kund import från CSV"; $lang["customers_mailchimp_activity_click"] = "E-post klick"; $lang["customers_mailchimp_activity_lastopen"] = "Senast öppet e-mail"; $lang["customers_mailchimp_activity_open"] = "E-post öppnad"; diff --git a/application/language/sv/giftcards_lang.php b/application/language/sv/giftcards_lang.php index bd357d18e..cac9907ce 100644 --- a/application/language/sv/giftcards_lang.php +++ b/application/language/sv/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Redigera önskade fält fö $lang["giftcards_edit_multiple_giftcards"] = "Redigera flera presentkort."; $lang["giftcards_error_adding_updating"] = "Presentkortets tillägg eller uppdatering misslyckades."; $lang["giftcards_error_updating_multiple"] = "Uppdatering av presentkortet misslyckades."; -$lang["giftcards_excel_import_failed"] = "Excel-import misslyckades."; +$lang["giftcards_csv_import_failed"] = "CSV-import misslyckades."; $lang["giftcards_generate_barcodes"] = "Generera streckkoder"; $lang["giftcards_giftcard"] = "Presentkort"; $lang["giftcards_giftcard_number"] = "Presentkortsnummer"; diff --git a/application/language/sv/items_lang.php b/application/language/sv/items_lang.php index 134706b1e..84f9fec06 100644 --- a/application/language/sv/items_lang.php +++ b/application/language/sv/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "Redigering av flera artiklar"; $lang["items_empty_upc_items"] = "Tomma streckkodsposter"; $lang["items_error_adding_updating"] = "Det gick inte att lägga till / uppdatera artiklar"; $lang["items_error_updating_multiple"] = "Ett fel uppstod vid uppdatering av artiklar"; -$lang["items_excel_import_failed"] = "Excel-import misslyckades"; -$lang["items_excel_import_nodata_wrongformat"] = "Den uppladdade filen har ingen data eller är formaterad felaktigt."; -$lang["items_excel_import_partially_failed"] = "Artikelimporten lyckades med några misslyckanden:"; -$lang["items_excel_import_success"] = "Artikelimporten lyckades."; +$lang["items_csv_import_failed"] = "CSV-import misslyckades"; +$lang["items_csv_import_nodata_wrongformat"] = "Den uppladdade filen har ingen data eller är formaterad felaktigt."; +$lang["items_csv_import_partially_failed"] = "Artikelimporten lyckades med några misslyckanden:"; +$lang["items_csv_import_success"] = "Artikelimporten lyckades."; $lang["items_generate_barcodes"] = "Generera streckkoder"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Artikelimport från Excel"; +$lang["items_import_items_csv"] = "Artikelimport från CSV"; $lang["items_info_provided_by"] = "Information tillhandahållen av"; $lang["items_inventory"] = "Lager"; $lang["items_inventory_comments"] = "Kommentarer"; diff --git a/application/language/th/common_lang.php b/application/language/th/common_lang.php index 32c181322..e2d8b9a66 100644 --- a/application/language/th/common_lang.php +++ b/application/language/th/common_lang.php @@ -11,13 +11,13 @@ $lang["common_country"] = "ประเทศ"; $lang["common_date"] = "Date"; $lang["common_delete"] = "ลบ"; $lang["common_det"] = "สรุป"; -$lang["common_download_import_template"] = "Download Import Excel Template (CSV)"; +$lang["common_download_import_template"] = "Download Import CSV Template (CSV)"; $lang["common_edit"] = "แก้ไข"; $lang["common_email"] = "อีเมล์"; $lang["common_email_invalid_format"] = "email address ไม่ถูกต้อง"; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "ใช่"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "ใช่"; $lang["common_fields_required_message"] = "ช่องสีแดงต้องกรอก"; $lang["common_first_name"] = "ชื่อ"; $lang["common_first_name_required"] = "ชื่อต้องกรอก"; @@ -28,7 +28,7 @@ $lang["common_gender_male"] = "ชาย"; $lang["common_id"] = "Id"; $lang["common_import"] = "นำเข้า"; $lang["common_import_change_file"] = "เปลี่ยน"; -$lang["common_import_excel"] = "Excel Import"; +$lang["common_import_csv"] = "CSV Import"; $lang["common_import_full_path"] = "ต้องระบุบที่อยู่ของไฟล์เอ็กซ์เซล"; $lang["common_import_remove_file"] = "นำออก"; $lang["common_import_select_file"] = "เลือกไฟล์"; diff --git a/application/language/th/customers_lang.php b/application/language/th/customers_lang.php index 3692912be..e81664c82 100644 --- a/application/language/th/customers_lang.php +++ b/application/language/th/customers_lang.php @@ -20,11 +20,11 @@ $lang["customers_discount_type"] = "ประเภทส่วนลด"; $lang["customers_email_duplicate"] = "มีที่อยู่อีเมลนี้ในฐานข้อมูลแล้ว"; $lang["customers_employee"] = "พนักงาน"; $lang["customers_error_adding_updating"] = "แก้ไขข้อมูลลูกค้าผิดพลาด"; -$lang["customers_excel_import_failed"] = "นำเข้าข้อมูล Excel ล้มเหลว"; -$lang["customers_excel_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; -$lang["customers_excel_import_partially_failed"] = "นำเข้าลูกค้าประสบความสำเร็จแต่มีข้อผิดพลาดบางอย่าง :"; -$lang["customers_excel_import_success"] = "Import of Customers successful"; -$lang["customers_import_items_excel"] = "Import customers from Excel sheet"; +$lang["customers_csv_import_failed"] = "นำเข้าข้อมูล CSV ล้มเหลว"; +$lang["customers_csv_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; +$lang["customers_csv_import_partially_failed"] = "นำเข้าลูกค้าประสบความสำเร็จแต่มีข้อผิดพลาดบางอย่าง :"; +$lang["customers_csv_import_success"] = "Import of Customers successful"; +$lang["customers_import_items_csv"] = "Import customers from CSV sheet"; $lang["customers_mailchimp_activity_click"] = "คลิ๊กอีเมล"; $lang["customers_mailchimp_activity_lastopen"] = "อีเมลที่เปิดล่าสุด"; $lang["customers_mailchimp_activity_open"] = "เปิดอีเมล"; diff --git a/application/language/th/giftcards_lang.php b/application/language/th/giftcards_lang.php index d92167575..793e3cd1d 100644 --- a/application/language/th/giftcards_lang.php +++ b/application/language/th/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = ""; $lang["giftcards_edit_multiple_giftcards"] = "แก้ไขบัตรกำนัลหลายใบ"; $lang["giftcards_error_adding_updating"] = "มีข้อผิดพลาดในการ เพิ่ม/ปรับปรุง บัตรกำนัล"; $lang["giftcards_error_updating_multiple"] = "มีข้อผิดพลาดในการปรับปรุง บัตรกำนัล"; -$lang["giftcards_excel_import_failed"] = "การส่งออกในรูปแบบไฟล์เอ็กเซล ไม่สำเร็จ"; +$lang["giftcards_csv_import_failed"] = "การส่งออกในรูปแบบไฟล์เอ็กเซล ไม่สำเร็จ"; $lang["giftcards_generate_barcodes"] = "สร้างบาร์โค้ด"; $lang["giftcards_giftcard"] = "บัตรกำนัล"; $lang["giftcards_giftcard_number"] = "เลขบัตรกำนัล"; diff --git a/application/language/th/items_lang.php b/application/language/th/items_lang.php index 1e0e2b135..313c4e0be 100644 --- a/application/language/th/items_lang.php +++ b/application/language/th/items_lang.php @@ -31,14 +31,14 @@ $lang["items_edit_multiple_items"] = "แก้ใขสินค้าต่า $lang["items_empty_upc_items"] = "Empty UPC Items"; $lang["items_error_adding_updating"] = "เพิ่ม/ปรับแต่ง สินค้าล้มเหลว"; $lang["items_error_updating_multiple"] = "ปรับแต่งสินค้าล้มเหลว"; -$lang["items_excel_import_failed"] = "นำเข้าข้อมูล Excel ล้มเหลว"; -$lang["items_excel_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; -$lang["items_excel_import_partially_failed"] = "การนำเข้ารายการสำเร็จแต่มีความผิดปกติบางอย่าง :"; -$lang["items_excel_import_success"] = "Import of Items successful"; +$lang["items_csv_import_failed"] = "นำเข้าข้อมูล CSV ล้มเหลว"; +$lang["items_csv_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; +$lang["items_csv_import_partially_failed"] = "การนำเข้ารายการสำเร็จแต่มีความผิดปกติบางอย่าง :"; +$lang["items_csv_import_success"] = "Import of Items successful"; $lang["items_generate_barcodes"] = "พิมพ์บาร์โค๊ด"; $lang["items_hsn_code"] = "ระบบการตั้งชื่อที่กลมกลืนกัน"; $lang["items_image"] = "รูป"; -$lang["items_import_items_excel"] = "Import items from Excel sheet"; +$lang["items_import_items_csv"] = "Import items from CSV sheet"; $lang["items_info_provided_by"] = "จัดเตรียมข้อมูลโดย"; $lang["items_inventory"] = "สินค้าคงเหลือ"; $lang["items_inventory_comments"] = "คำอธิบาย"; diff --git a/application/language/tl-PH/common_lang.php b/application/language/tl-PH/common_lang.php index 8794d6927..22bb1694a 100644 --- a/application/language/tl-PH/common_lang.php +++ b/application/language/tl-PH/common_lang.php @@ -11,13 +11,13 @@ $lang["common_country"] = "Country"; $lang["common_date"] = "Date"; $lang["common_delete"] = "Delete"; $lang["common_det"] = "details"; -$lang["common_download_import_template"] = "Download Import Excel Template (CSV)"; +$lang["common_download_import_template"] = "Download Import CSV Template (CSV)"; $lang["common_edit"] = "edit"; $lang["common_email"] = "Email"; $lang["common_email_invalid_format"] = "The email address is not in the correct format."; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "Yes"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "Yes"; $lang["common_fields_required_message"] = "Fields in red are required"; $lang["common_first_name"] = "First name"; $lang["common_first_name_required"] = "Last Name is a required field."; @@ -28,8 +28,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Change"; -$lang["common_import_excel"] = "Excel Export"; -$lang["common_import_full_path"] = "Full path to excel file required"; +$lang["common_import_csv"] = "CSV Export"; +$lang["common_import_full_path"] = "Full path to csv file required"; $lang["common_import_remove_file"] = "Remove"; $lang["common_import_select_file"] = "Select file"; $lang["common_inv"] = "inv"; diff --git a/application/language/tl-PH/customers_lang.php b/application/language/tl-PH/customers_lang.php index 912f7ce7b..654236c6d 100644 --- a/application/language/tl-PH/customers_lang.php +++ b/application/language/tl-PH/customers_lang.php @@ -20,11 +20,11 @@ $lang["customers_discount_type"] = "Discount Type"; $lang["customers_email_duplicate"] = "Email Address is already present in the database."; $lang["customers_employee"] = "Employee"; $lang["customers_error_adding_updating"] = "Employee add or update failed."; -$lang["customers_excel_import_failed"] = "Excel import failed"; -$lang["customers_excel_import_nodata_wrongformat"] = "The uploaded file has no data or is incorrectly formatted."; -$lang["customers_excel_import_partially_failed"] = "Customer import successful with some failures:"; -$lang["customers_excel_import_success"] = "Customer import successful."; -$lang["customers_import_items_excel"] = "Customer Import from Excel"; +$lang["customers_csv_import_failed"] = "CSV import failed"; +$lang["customers_csv_import_nodata_wrongformat"] = "The uploaded file has no data or is incorrectly formatted."; +$lang["customers_csv_import_partially_failed"] = "Customer import successful with some failures:"; +$lang["customers_csv_import_success"] = "Customer import successful."; +$lang["customers_import_items_csv"] = "Customer Import from CSV"; $lang["customers_mailchimp_activity_click"] = "Email click"; $lang["customers_mailchimp_activity_lastopen"] = "Last open email"; $lang["customers_mailchimp_activity_open"] = "Email open"; diff --git a/application/language/tl-PH/giftcards_lang.php b/application/language/tl-PH/giftcards_lang.php index 260bbb5dd..e24dd90f2 100644 --- a/application/language/tl-PH/giftcards_lang.php +++ b/application/language/tl-PH/giftcards_lang.php @@ -24,7 +24,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Edit desired fields for sel $lang["giftcards_edit_multiple_giftcards"] = "Edit Multiple Gift Cards."; $lang["giftcards_error_adding_updating"] = "Gift Card add or update failed."; $lang["giftcards_error_updating_multiple"] = "Gift Card(s) update failed."; -$lang["giftcards_excel_import_failed"] = "Excel import failed"; +$lang["giftcards_csv_import_failed"] = "CSV import failed"; $lang["giftcards_generate_barcodes"] = "Generate Barcodes"; $lang["giftcards_giftcard"] = "Gift Card"; $lang["giftcards_giftcard_number"] = "Gift Card Number"; diff --git a/application/language/tl-PH/items_lang.php b/application/language/tl-PH/items_lang.php index fe9286bb4..70f66aecc 100644 --- a/application/language/tl-PH/items_lang.php +++ b/application/language/tl-PH/items_lang.php @@ -31,14 +31,14 @@ $lang["items_edit_multiple_items"] = "Editing Multiple Items"; $lang["items_empty_upc_items"] = "Empty Barcode Items"; $lang["items_error_adding_updating"] = "Error adding/updating item"; $lang["items_error_updating_multiple"] = "Error updating items"; -$lang["items_excel_import_failed"] = "Excel import failed"; -$lang["items_excel_import_nodata_wrongformat"] = "The uploaded file has no data or is formatted incorrectly."; -$lang["items_excel_import_partially_failed"] = "Customer import successful with some failures:"; -$lang["items_excel_import_success"] = "Item import successful."; +$lang["items_csv_import_failed"] = "CSV import failed"; +$lang["items_csv_import_nodata_wrongformat"] = "The uploaded file has no data or is formatted incorrectly."; +$lang["items_csv_import_partially_failed"] = "Customer import successful with some failures:"; +$lang["items_csv_import_success"] = "Item import successful."; $lang["items_generate_barcodes"] = "Generate Barcodes"; $lang["items_hsn_code"] = "Harmonized System Nomenclature"; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Item Import from Excel"; +$lang["items_import_items_csv"] = "Item Import from CSV"; $lang["items_info_provided_by"] = "Information provided by"; $lang["items_inventory"] = "Inventory"; $lang["items_inventory_comments"] = "Comments"; diff --git a/application/language/tr/common_lang.php b/application/language/tr/common_lang.php index 24cdae3bd..c4ab9eeb0 100644 --- a/application/language/tr/common_lang.php +++ b/application/language/tr/common_lang.php @@ -11,13 +11,13 @@ $lang["common_country"] = "Ülke"; $lang["common_date"] = "Tarih"; $lang["common_delete"] = "Sil"; $lang["common_det"] = "Detaylar"; -$lang["common_download_import_template"] = "Excel Şablonunu İçe Aktar (CSV) uygulamasını indirin"; +$lang["common_download_import_template"] = "CSV Şablonunu İçe Aktar (CSV) uygulamasını indirin"; $lang["common_edit"] = "düzenle"; $lang["common_email"] = "E-Posta"; $lang["common_email_invalid_format"] = "E-Posta adresi doğru format değil."; -$lang["common_export_excel"] = "Excele Aktar"; -$lang["common_export_excel_no"] = "Hayır"; -$lang["common_export_excel_yes"] = "Evet"; +$lang["common_export_csv"] = "CSVe Aktar"; +$lang["common_export_csv_no"] = "Hayır"; +$lang["common_export_csv_yes"] = "Evet"; $lang["common_fields_required_message"] = "Kırmızı alanlar zorunludur"; $lang["common_first_name"] = "İsim"; $lang["common_first_name_required"] = "İsim zorunlu alandır."; @@ -28,8 +28,8 @@ $lang["common_gender_male"] = "E"; $lang["common_id"] = "Kimlik"; $lang["common_import"] = "Aktar"; $lang["common_import_change_file"] = "Değiştir"; -$lang["common_import_excel"] = "Excelden aktar"; -$lang["common_import_full_path"] = "Excel dosyası yeri"; +$lang["common_import_csv"] = "CSVden aktar"; +$lang["common_import_full_path"] = "CSV dosyası yeri"; $lang["common_import_remove_file"] = "Kaldır"; $lang["common_import_select_file"] = "Dosya seç"; $lang["common_inv"] = "Stok"; diff --git a/application/language/tr/customers_lang.php b/application/language/tr/customers_lang.php index 7b3b859e7..8ff93bb61 100644 --- a/application/language/tr/customers_lang.php +++ b/application/language/tr/customers_lang.php @@ -20,11 +20,11 @@ $lang["customers_discount_type"] = "İndirim türü"; $lang["customers_email_duplicate"] = "E-posta adresi zaten veritabanında mevcut."; $lang["customers_employee"] = "Personel"; $lang["customers_error_adding_updating"] = "Müşteri ekleme/güncelleme hatası."; -$lang["customers_excel_import_failed"] = "Excel aktarım hatası"; -$lang["customers_excel_import_nodata_wrongformat"] = "Yüklenen dosya herhangi bir veri içermiyor veya hatalı formatta."; -$lang["customers_excel_import_partially_failed"] = "Birçok Müşteri içe aktarıldı. Ama bazıları değil, listesi burada:"; -$lang["customers_excel_import_success"] = "Müşteri aktarımı başarılı."; -$lang["customers_import_items_excel"] = "Müşterileri Excel sayfasından aktar"; +$lang["customers_csv_import_failed"] = "CSV aktarım hatası"; +$lang["customers_csv_import_nodata_wrongformat"] = "Yüklenen dosya herhangi bir veri içermiyor veya hatalı formatta."; +$lang["customers_csv_import_partially_failed"] = "Birçok Müşteri içe aktarıldı. Ama bazıları değil, listesi burada:"; +$lang["customers_csv_import_success"] = "Müşteri aktarımı başarılı."; +$lang["customers_import_items_csv"] = "Müşterileri CSV sayfasından aktar"; $lang["customers_mailchimp_activity_click"] = "E-posta tıklaması"; $lang["customers_mailchimp_activity_lastopen"] = "Son açılan e-posta"; $lang["customers_mailchimp_activity_open"] = "E-posta aç"; diff --git a/application/language/tr/giftcards_lang.php b/application/language/tr/giftcards_lang.php index a1af8a96b..16488b2af 100644 --- a/application/language/tr/giftcards_lang.php +++ b/application/language/tr/giftcards_lang.php @@ -24,7 +24,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "TÜM seçili hediye çekler $lang["giftcards_edit_multiple_giftcards"] = "Çoklu Hediye Çeki Düzenleme."; $lang["giftcards_error_adding_updating"] = "Hediye çeki ekleme/güncelleme hatası."; $lang["giftcards_error_updating_multiple"] = "Hediye çeki güncellemesinde hata."; -$lang["giftcards_excel_import_failed"] = "Excel içe aktarma başarısız."; +$lang["giftcards_csv_import_failed"] = "CSV içe aktarma başarısız."; $lang["giftcards_generate_barcodes"] = "Barkod Oluştur"; $lang["giftcards_giftcard"] = "Hediye Çeki"; $lang["giftcards_giftcard_number"] = "Hediye Çeki Numarası"; diff --git a/application/language/tr/items_lang.php b/application/language/tr/items_lang.php index 1e966fc08..4d2c0276f 100644 --- a/application/language/tr/items_lang.php +++ b/application/language/tr/items_lang.php @@ -31,14 +31,14 @@ $lang["items_edit_multiple_items"] = "Çoklu Ürün Güncelleme"; $lang["items_empty_upc_items"] = "Ürün kodu olmayan ürünler"; $lang["items_error_adding_updating"] = "Ürün ekleme/düzenleme hatası"; $lang["items_error_updating_multiple"] = "Ürün düzenleme hatası"; -$lang["items_excel_import_failed"] = "Excel aktarım hatası"; -$lang["items_excel_import_nodata_wrongformat"] = "Yüklenen dosya herhangi bir veri içermiyor veya hatalı formatta."; -$lang["items_excel_import_partially_failed"] = "Bazı ürünler aktarılamadı. Aktarılamayanlar listesi."; -$lang["items_excel_import_success"] = "Ürün aktarımı başarılı."; +$lang["items_csv_import_failed"] = "CSV aktarım hatası"; +$lang["items_csv_import_nodata_wrongformat"] = "Yüklenen dosya herhangi bir veri içermiyor veya hatalı formatta."; +$lang["items_csv_import_partially_failed"] = "Bazı ürünler aktarılamadı. Aktarılamayanlar listesi."; +$lang["items_csv_import_success"] = "Ürün aktarımı başarılı."; $lang["items_generate_barcodes"] = "Barkod Üret"; $lang["items_hsn_code"] = "Harmonize Sistem İsimlendirme"; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Excel dosyasından ürün aktar"; +$lang["items_import_items_csv"] = "CSV dosyasından ürün aktar"; $lang["items_info_provided_by"] = "Bilgi sağlayan"; $lang["items_inventory"] = "Stok"; $lang["items_inventory_comments"] = "Yorumlar"; diff --git a/application/language/ur_PK/common_lang.php b/application/language/ur_PK/common_lang.php index b7242b8f4..e2d95ced6 100644 --- a/application/language/ur_PK/common_lang.php +++ b/application/language/ur_PK/common_lang.php @@ -16,9 +16,9 @@ $lang["common_download_import_template"] = ""; $lang["common_edit"] = ""; $lang["common_email"] = ""; $lang["common_email_invalid_format"] = ""; -$lang["common_export_excel"] = ""; -$lang["common_export_excel_no"] = ""; -$lang["common_export_excel_yes"] = ""; +$lang["common_export_csv"] = ""; +$lang["common_export_csv_no"] = ""; +$lang["common_export_csv_yes"] = ""; $lang["common_fields_required_message"] = ""; $lang["common_first_name"] = ""; $lang["common_first_name_required"] = ""; @@ -29,7 +29,7 @@ $lang["common_gender_male"] = ""; $lang["common_id"] = ""; $lang["common_import"] = ""; $lang["common_import_change_file"] = ""; -$lang["common_import_excel"] = ""; +$lang["common_import_csv"] = ""; $lang["common_import_full_path"] = ""; $lang["common_import_remove_file"] = ""; $lang["common_import_select_file"] = ""; diff --git a/application/language/ur_PK/customers_lang.php b/application/language/ur_PK/customers_lang.php index 2819d98ca..c07c3fcab 100644 --- a/application/language/ur_PK/customers_lang.php +++ b/application/language/ur_PK/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = ""; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = ""; -$lang["customers_excel_import_failed"] = ""; -$lang["customers_excel_import_nodata_wrongformat"] = ""; -$lang["customers_excel_import_partially_failed"] = ""; -$lang["customers_excel_import_success"] = ""; -$lang["customers_import_items_excel"] = ""; +$lang["customers_csv_import_failed"] = ""; +$lang["customers_csv_import_nodata_wrongformat"] = ""; +$lang["customers_csv_import_partially_failed"] = ""; +$lang["customers_csv_import_success"] = ""; +$lang["customers_import_items_csv"] = ""; $lang["customers_mailchimp_activity_click"] = ""; $lang["customers_mailchimp_activity_lastopen"] = ""; $lang["customers_mailchimp_activity_open"] = ""; diff --git a/application/language/ur_PK/giftcards_lang.php b/application/language/ur_PK/giftcards_lang.php index 251762795..604b32ce7 100644 --- a/application/language/ur_PK/giftcards_lang.php +++ b/application/language/ur_PK/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = ""; $lang["giftcards_edit_multiple_giftcards"] = ""; $lang["giftcards_error_adding_updating"] = ""; $lang["giftcards_error_updating_multiple"] = ""; -$lang["giftcards_excel_import_failed"] = ""; +$lang["giftcards_csv_import_failed"] = ""; $lang["giftcards_generate_barcodes"] = ""; $lang["giftcards_giftcard"] = ""; $lang["giftcards_giftcard_number"] = ""; diff --git a/application/language/ur_PK/items_lang.php b/application/language/ur_PK/items_lang.php index ab2590f81..1d074c2f5 100644 --- a/application/language/ur_PK/items_lang.php +++ b/application/language/ur_PK/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = ""; $lang["items_empty_upc_items"] = ""; $lang["items_error_adding_updating"] = ""; $lang["items_error_updating_multiple"] = ""; -$lang["items_excel_import_failed"] = ""; -$lang["items_excel_import_nodata_wrongformat"] = ""; -$lang["items_excel_import_partially_failed"] = ""; -$lang["items_excel_import_success"] = ""; +$lang["items_csv_import_failed"] = ""; +$lang["items_csv_import_nodata_wrongformat"] = ""; +$lang["items_csv_import_partially_failed"] = ""; +$lang["items_csv_import_success"] = ""; $lang["items_generate_barcodes"] = ""; $lang["items_hsn_code"] = ""; $lang["items_image"] = ""; -$lang["items_import_items_excel"] = ""; +$lang["items_import_items_csv"] = ""; $lang["items_info_provided_by"] = ""; $lang["items_inventory"] = ""; $lang["items_inventory_comments"] = ""; diff --git a/application/language/vi/common_lang.php b/application/language/vi/common_lang.php index 973422608..40f5d6812 100644 --- a/application/language/vi/common_lang.php +++ b/application/language/vi/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "Quốc gia"; $lang["common_date"] = "Ngày"; $lang["common_delete"] = "Xóa"; $lang["common_det"] = "chi tiết"; -$lang["common_download_import_template"] = "Tải về Mẫu Nhập dạng Excel (CSV)"; +$lang["common_download_import_template"] = "Tải về Mẫu Nhập dạng CSV (CSV)"; $lang["common_edit"] = "sửa"; $lang["common_email"] = "Thư điện tử"; $lang["common_email_invalid_format"] = "Địa chỉ thư điện tử có định dạng không đúng."; -$lang["common_export_excel"] = "Xuất dạng Excel"; -$lang["common_export_excel_no"] = "Không"; -$lang["common_export_excel_yes"] = "Có"; +$lang["common_export_csv"] = "Xuất dạng CSV"; +$lang["common_export_csv_no"] = "Không"; +$lang["common_export_csv_yes"] = "Có"; $lang["common_fields_required_message"] = "Những trường có màu đỏ là bắt buộc"; $lang["common_first_name"] = "Tên"; $lang["common_first_name_required"] = "Trường tên là bắt buộc."; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "Nam"; $lang["common_id"] = "Mã số"; $lang["common_import"] = "Nhập"; $lang["common_import_change_file"] = "Thay đổi"; -$lang["common_import_excel"] = "Nhập từ Excel"; -$lang["common_import_full_path"] = "Cần đường dẫn dạng đầy đủ đến tập tin excel"; +$lang["common_import_csv"] = "Nhập từ CSV"; +$lang["common_import_full_path"] = "Cần đường dẫn dạng đầy đủ đến tập tin csv"; $lang["common_import_remove_file"] = "Gỡ bỏ"; $lang["common_import_select_file"] = "Chọn tập tin"; $lang["common_inv"] = "inv"; diff --git a/application/language/vi/customers_lang.php b/application/language/vi/customers_lang.php index f9c4cf5a6..9d881cd4b 100644 --- a/application/language/vi/customers_lang.php +++ b/application/language/vi/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = "Địa chỉ thư điện tử đã sẵn có trong cơ sở dữ liệu rồi."; $lang["customers_employee"] = "Nhân viên"; $lang["customers_error_adding_updating"] = "Gặp lỗi khi cập nhật hay thêm khách hàng."; -$lang["customers_excel_import_failed"] = "Gặp lỗi khi nhập từ Excel"; -$lang["customers_excel_import_nodata_wrongformat"] = "Tập tin tải lên không có dữ liệu hoặc là nó có định dạng không đúng."; -$lang["customers_excel_import_partially_failed"] = "Nhập khách hàng thành công với một số lỗi:"; -$lang["customers_excel_import_success"] = "Nhập khách hàng thành công."; -$lang["customers_import_items_excel"] = "Nhập khách hàng từ Excel"; +$lang["customers_csv_import_failed"] = "Gặp lỗi khi nhập từ CSV"; +$lang["customers_csv_import_nodata_wrongformat"] = "Tập tin tải lên không có dữ liệu hoặc là nó có định dạng không đúng."; +$lang["customers_csv_import_partially_failed"] = "Nhập khách hàng thành công với một số lỗi:"; +$lang["customers_csv_import_success"] = "Nhập khách hàng thành công."; +$lang["customers_import_items_csv"] = "Nhập khách hàng từ CSV"; $lang["customers_mailchimp_activity_click"] = "Bấm thư"; $lang["customers_mailchimp_activity_lastopen"] = "Thư mở cuối cùng"; $lang["customers_mailchimp_activity_open"] = "Mở thư"; diff --git a/application/language/vi/giftcards_lang.php b/application/language/vi/giftcards_lang.php index 13b810595..c1cc50c40 100644 --- a/application/language/vi/giftcards_lang.php +++ b/application/language/vi/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "Sửa các trường suy lu $lang["giftcards_edit_multiple_giftcards"] = "Sửa nhiều Thẻ quà tặng."; $lang["giftcards_error_adding_updating"] = "Gặp lỗi khi thêm hay cập nhật Thẻ quà tặng."; $lang["giftcards_error_updating_multiple"] = "Gặp lỗi khi cập nhật Thẻ quà tặng."; -$lang["giftcards_excel_import_failed"] = "Gặp lỗi khi nhập từ Excel."; +$lang["giftcards_csv_import_failed"] = "Gặp lỗi khi nhập từ CSV."; $lang["giftcards_generate_barcodes"] = "Tạo mã vạch"; $lang["giftcards_giftcard"] = "Thẻ quà tặng"; $lang["giftcards_giftcard_number"] = "Số Thẻ quà tặng"; diff --git a/application/language/vi/items_lang.php b/application/language/vi/items_lang.php index 7a4fd75ed..f1a8e35b8 100644 --- a/application/language/vi/items_lang.php +++ b/application/language/vi/items_lang.php @@ -31,14 +31,14 @@ $lang["items_edit_multiple_items"] = "Sửa nhiều hàng hóa cùng lúc"; $lang["items_empty_upc_items"] = "Mã vạch hàng hóa để trống"; $lang["items_error_adding_updating"] = "Lỗi thêm/cập nhật hàng hóa"; $lang["items_error_updating_multiple"] = "Có lỗi khi cập nhật hàng hóa"; -$lang["items_excel_import_failed"] = "Gặp lỗi khi nhập từ Excel"; -$lang["items_excel_import_nodata_wrongformat"] = "Tập tin tải lên không có dữ liệu hoặc là nó có định dạng không đúng."; -$lang["items_excel_import_partially_failed"] = "Nhập hàng hóa thành công với một số lỗi:"; -$lang["items_excel_import_success"] = "Nhập hàng hóa thành công."; +$lang["items_csv_import_failed"] = "Gặp lỗi khi nhập từ CSV"; +$lang["items_csv_import_nodata_wrongformat"] = "Tập tin tải lên không có dữ liệu hoặc là nó có định dạng không đúng."; +$lang["items_csv_import_partially_failed"] = "Nhập hàng hóa thành công với một số lỗi:"; +$lang["items_csv_import_success"] = "Nhập hàng hóa thành công."; $lang["items_generate_barcodes"] = "Tạo mã vạch"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Nhập hàng hóa từ Excel"; +$lang["items_import_items_csv"] = "Nhập hàng hóa từ CSV"; $lang["items_info_provided_by"] = "Thông tin được cung cấp bởi"; $lang["items_inventory"] = "Tồn kho"; $lang["items_inventory_comments"] = "Ghi chú"; diff --git a/application/language/zh-Hans/common_lang.php b/application/language/zh-Hans/common_lang.php index 1d178ec36..fed0ae40b 100644 --- a/application/language/zh-Hans/common_lang.php +++ b/application/language/zh-Hans/common_lang.php @@ -12,13 +12,13 @@ $lang["common_country"] = "國家"; $lang["common_date"] = "Date"; $lang["common_delete"] = "刪除"; $lang["common_det"] = "更多"; -$lang["common_download_import_template"] = "Download Import Excel Template (CSV)"; +$lang["common_download_import_template"] = "Download Import CSV Template (CSV)"; $lang["common_edit"] = "編輯"; $lang["common_email"] = "郵箱"; $lang["common_email_invalid_format"] = "Email格式錯誤"; -$lang["common_export_excel"] = "Excel Export"; -$lang["common_export_excel_no"] = "No"; -$lang["common_export_excel_yes"] = "Yes"; +$lang["common_export_csv"] = "CSV Export"; +$lang["common_export_csv_no"] = "No"; +$lang["common_export_csv_yes"] = "Yes"; $lang["common_fields_required_message"] = "紅色欄位為必填"; $lang["common_first_name"] = "名"; $lang["common_first_name_required"] = "名為必填"; @@ -29,8 +29,8 @@ $lang["common_gender_male"] = "M"; $lang["common_id"] = "Id"; $lang["common_import"] = "Import"; $lang["common_import_change_file"] = "Change"; -$lang["common_import_excel"] = "Excel Import"; -$lang["common_import_full_path"] = "Full path to excel file required"; +$lang["common_import_csv"] = "CSV Import"; +$lang["common_import_full_path"] = "Full path to csv file required"; $lang["common_import_remove_file"] = "Remove"; $lang["common_import_select_file"] = "Select file"; $lang["common_inv"] = "庫存"; diff --git a/application/language/zh-Hans/customers_lang.php b/application/language/zh-Hans/customers_lang.php index 73d5e84a8..63efacf95 100644 --- a/application/language/zh-Hans/customers_lang.php +++ b/application/language/zh-Hans/customers_lang.php @@ -21,11 +21,11 @@ $lang["customers_discount_type"] = ""; $lang["customers_email_duplicate"] = ""; $lang["customers_employee"] = ""; $lang["customers_error_adding_updating"] = "添加/更新客戶錯誤"; -$lang["customers_excel_import_failed"] = "Excel匯入失敗"; -$lang["customers_excel_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; -$lang["customers_excel_import_partially_failed"] = "Most Customers imported. But some were not, here is the list"; -$lang["customers_excel_import_success"] = "Import of Customers successful"; -$lang["customers_import_items_excel"] = "Import customers from Excel sheet"; +$lang["customers_csv_import_failed"] = "CSV匯入失敗"; +$lang["customers_csv_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; +$lang["customers_csv_import_partially_failed"] = "Most Customers imported. But some were not, here is the list"; +$lang["customers_csv_import_success"] = "Import of Customers successful"; +$lang["customers_import_items_csv"] = "Import customers from CSV sheet"; $lang["customers_mailchimp_activity_click"] = ""; $lang["customers_mailchimp_activity_lastopen"] = ""; $lang["customers_mailchimp_activity_open"] = ""; diff --git a/application/language/zh-Hans/giftcards_lang.php b/application/language/zh-Hans/giftcards_lang.php index 074e1803a..161a73341 100644 --- a/application/language/zh-Hans/giftcards_lang.php +++ b/application/language/zh-Hans/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "編輯所有選定的禮金 $lang["giftcards_edit_multiple_giftcards"] = "多重編輯"; $lang["giftcards_error_adding_updating"] = "新增/更新禮金券錯誤"; $lang["giftcards_error_updating_multiple"] = "禮金券更新錯誤"; -$lang["giftcards_excel_import_failed"] = "Excel匯入失敗"; +$lang["giftcards_csv_import_failed"] = "CSV匯入失敗"; $lang["giftcards_generate_barcodes"] = "產生條碼"; $lang["giftcards_giftcard"] = "禮金券"; $lang["giftcards_giftcard_number"] = "禮金券編號"; diff --git a/application/language/zh-Hans/items_lang.php b/application/language/zh-Hans/items_lang.php index c9dec451c..1c7b8de40 100644 --- a/application/language/zh-Hans/items_lang.php +++ b/application/language/zh-Hans/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "編輯多項產品"; $lang["items_empty_upc_items"] = "Empty UPC Items"; $lang["items_error_adding_updating"] = "新增/更新產品錯誤"; $lang["items_error_updating_multiple"] = "更新產品錯誤"; -$lang["items_excel_import_failed"] = "Excel匯入失敗"; -$lang["items_excel_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; -$lang["items_excel_import_partially_failed"] = "Most Items imported. But some were not, here is the list"; -$lang["items_excel_import_success"] = "Import of Items successful"; +$lang["items_csv_import_failed"] = "CSV匯入失敗"; +$lang["items_csv_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; +$lang["items_csv_import_partially_failed"] = "Most Items imported. But some were not, here is the list"; +$lang["items_csv_import_success"] = "Import of Items successful"; $lang["items_generate_barcodes"] = "產生條碼"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Import items from Excel sheet"; +$lang["items_import_items_csv"] = "Import items from CSV sheet"; $lang["items_info_provided_by"] = "訊息提供者"; $lang["items_inventory"] = "庫存"; $lang["items_inventory_comments"] = "評論"; diff --git a/application/language/zh-Hant/common_lang.php b/application/language/zh-Hant/common_lang.php index b195e2add..2df508f9c 100644 --- a/application/language/zh-Hant/common_lang.php +++ b/application/language/zh-Hant/common_lang.php @@ -11,13 +11,13 @@ $lang["common_country"] = "國家"; $lang["common_date"] = "日期"; $lang["common_delete"] = "刪除"; $lang["common_det"] = "更多"; -$lang["common_download_import_template"] = "下載匯入資料的Excel範本 (CSV)"; +$lang["common_download_import_template"] = "下載匯入資料的CSV範本 (CSV)"; $lang["common_edit"] = "編輯"; $lang["common_email"] = "郵箱"; $lang["common_email_invalid_format"] = "電郵格式錯誤."; -$lang["common_export_excel"] = "匯出至Excel"; -$lang["common_export_excel_no"] = "否"; -$lang["common_export_excel_yes"] = "是"; +$lang["common_export_csv"] = "匯出至CSV"; +$lang["common_export_csv_no"] = "否"; +$lang["common_export_csv_yes"] = "是"; $lang["common_fields_required_message"] = "紅色欄位為必填"; $lang["common_first_name"] = "名"; $lang["common_first_name_required"] = "名為必填."; @@ -28,8 +28,8 @@ $lang["common_gender_male"] = "男"; $lang["common_id"] = "Id"; $lang["common_import"] = "匯入"; $lang["common_import_change_file"] = "變更"; -$lang["common_import_excel"] = "Excel匯入"; -$lang["common_import_full_path"] = "需要excel文件的完整路徑"; +$lang["common_import_csv"] = "CSV匯入"; +$lang["common_import_full_path"] = "需要csv文件的完整路徑"; $lang["common_import_remove_file"] = "移除"; $lang["common_import_select_file"] = "選擇檔案"; $lang["common_inv"] = "庫存"; diff --git a/application/language/zh-Hant/customers_lang.php b/application/language/zh-Hant/customers_lang.php index 2e778060a..c9bb8c128 100644 --- a/application/language/zh-Hant/customers_lang.php +++ b/application/language/zh-Hant/customers_lang.php @@ -20,11 +20,11 @@ $lang["customers_discount_type"] = "折扣種類"; $lang["customers_email_duplicate"] = "電子郵件地址重複."; $lang["customers_employee"] = "僱員"; $lang["customers_error_adding_updating"] = "添加/更新客戶錯誤."; -$lang["customers_excel_import_failed"] = "Excel匯入失敗"; -$lang["customers_excel_import_nodata_wrongformat"] = "上傳的文件沒有數據或格式不正確."; -$lang["customers_excel_import_partially_failed"] = "大部份客戶導入成功但有些失敗:"; -$lang["customers_excel_import_success"] = "成功導入客戶."; -$lang["customers_import_items_excel"] = "Import customers from Excel sheet"; +$lang["customers_csv_import_failed"] = "CSV匯入失敗"; +$lang["customers_csv_import_nodata_wrongformat"] = "上傳的文件沒有數據或格式不正確."; +$lang["customers_csv_import_partially_failed"] = "大部份客戶導入成功但有些失敗:"; +$lang["customers_csv_import_success"] = "成功導入客戶."; +$lang["customers_import_items_csv"] = "Import customers from CSV sheet"; $lang["customers_mailchimp_activity_click"] = "激活"; $lang["customers_mailchimp_activity_lastopen"] = "最後打開"; $lang["customers_mailchimp_activity_open"] = "閱讀電郵"; diff --git a/application/language/zh-Hant/giftcards_lang.php b/application/language/zh-Hant/giftcards_lang.php index 074e1803a..161a73341 100644 --- a/application/language/zh-Hant/giftcards_lang.php +++ b/application/language/zh-Hant/giftcards_lang.php @@ -25,7 +25,7 @@ $lang["giftcards_edit_fields_you_want_to_update"] = "編輯所有選定的禮金 $lang["giftcards_edit_multiple_giftcards"] = "多重編輯"; $lang["giftcards_error_adding_updating"] = "新增/更新禮金券錯誤"; $lang["giftcards_error_updating_multiple"] = "禮金券更新錯誤"; -$lang["giftcards_excel_import_failed"] = "Excel匯入失敗"; +$lang["giftcards_csv_import_failed"] = "CSV匯入失敗"; $lang["giftcards_generate_barcodes"] = "產生條碼"; $lang["giftcards_giftcard"] = "禮金券"; $lang["giftcards_giftcard_number"] = "禮金券編號"; diff --git a/application/language/zh-Hant/items_lang.php b/application/language/zh-Hant/items_lang.php index c9dec451c..1c7b8de40 100644 --- a/application/language/zh-Hant/items_lang.php +++ b/application/language/zh-Hant/items_lang.php @@ -32,14 +32,14 @@ $lang["items_edit_multiple_items"] = "編輯多項產品"; $lang["items_empty_upc_items"] = "Empty UPC Items"; $lang["items_error_adding_updating"] = "新增/更新產品錯誤"; $lang["items_error_updating_multiple"] = "更新產品錯誤"; -$lang["items_excel_import_failed"] = "Excel匯入失敗"; -$lang["items_excel_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; -$lang["items_excel_import_partially_failed"] = "Most Items imported. But some were not, here is the list"; -$lang["items_excel_import_success"] = "Import of Items successful"; +$lang["items_csv_import_failed"] = "CSV匯入失敗"; +$lang["items_csv_import_nodata_wrongformat"] = "Your uploaded file has no data or wrong format"; +$lang["items_csv_import_partially_failed"] = "Most Items imported. But some were not, here is the list"; +$lang["items_csv_import_success"] = "Import of Items successful"; $lang["items_generate_barcodes"] = "產生條碼"; $lang["items_hsn_code"] = ""; $lang["items_image"] = "Avatar"; -$lang["items_import_items_excel"] = "Import items from Excel sheet"; +$lang["items_import_items_csv"] = "Import items from CSV sheet"; $lang["items_info_provided_by"] = "訊息提供者"; $lang["items_inventory"] = "庫存"; $lang["items_inventory_comments"] = "評論"; diff --git a/application/views/customers/form_excel_import.php b/application/views/customers/form_csv_import.php similarity index 85% rename from application/views/customers/form_excel_import.php rename to application/views/customers/form_csv_import.php index 7de76791b..880b29781 100644 --- a/application/views/customers/form_excel_import.php +++ b/application/views/customers/form_csv_import.php @@ -1,10 +1,10 @@
-'excel_form', 'class'=>'form-horizontal')); ?> +'csv_form', 'class'=>'form-horizontal')); ?>