mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-20 23:37:58 -05:00
Merge pull request #2611 from opensourcepos/3.3.1_patch_csv_import_BOM_check
3.3.1 patch csv import bom check
This commit is contained in:
@@ -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')));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
?>
|
||||
@@ -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"] = "اختار ملف";
|
||||
|
||||
@@ -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"] = "رسالة إلكترونية مفتوحة";
|
||||
|
||||
@@ -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"] = "رقم بطاقة الهدية";
|
||||
|
||||
@@ -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"] = "تعليقات";
|
||||
|
||||
@@ -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"] = "اختار ملف";
|
||||
|
||||
@@ -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"] = "رسالة إلكترونية مفتوحة";
|
||||
|
||||
@@ -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"] = "رقم بطاقة الهدية";
|
||||
|
||||
@@ -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";
|
||||
@@ -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ə";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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"] = "Покана";
|
||||
|
||||
@@ -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"] = "Имейлът е отворен";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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ář";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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.";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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"] = "αποθ";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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.";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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"] = "בחר קובץ";
|
||||
|
||||
@@ -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"] = "אימייל פתוח";
|
||||
|
||||
@@ -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"] = "מספר כרטיס מתנה";
|
||||
|
||||
@@ -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"] = "הערות";
|
||||
|
||||
@@ -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.";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "លេខហ្គិវកាត";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "ເລືອກແຟ້ມ";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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"] = "";
|
||||
|
||||
@@ -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";
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user