Skip to content

Commit

Permalink
add translation.
Browse files Browse the repository at this point in the history
  • Loading branch information
suraj-webkul committed Nov 6, 2024
1 parent 5002d77 commit 9cfc673
Show file tree
Hide file tree
Showing 7 changed files with 446 additions and 28 deletions.
4 changes: 2 additions & 2 deletions packages/Webkul/Admin/src/Config/acl.php
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@
'sort' => 3,
], [
'key' => 'settings.automation.events',
'name' => 'admin::app.acl.marketing-event',
'name' => 'admin::app.acl.event',
'route' => 'admin.settings.marketing.events.index',
'sort' => 2,
], [
Expand All @@ -428,7 +428,7 @@
'sort' => 3,
], [
'key' => 'settings.automation.campaigns',
'name' => 'admin::app.acl.marketing-campaigns',
'name' => 'admin::app.acl.campaigns',
'route' => 'admin.settings.marketing.campaigns.index',
'sort' => 2,
], [
Expand Down
77 changes: 77 additions & 0 deletions packages/Webkul/Admin/src/Resources/lang/ar/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
'other-settings' => 'إعدادات أخرى',
'tags' => 'العلامات',
'configuration' => 'التكوين',
'campaigns' => 'الحملات',
'event' => 'الحدث',
'create' => 'إنشاء',
'edit' => 'تعديل',
'view' => 'عرض',
Expand Down Expand Up @@ -1082,6 +1084,77 @@
],
],

'marketing' => [
'events' => [
'index' => [
'create-btn' => 'إنشاء حدث',
'title' => 'الأحداث',
'create-success' => 'تم إنشاء الحدث بنجاح.',
'update-success' => 'تم تحديث الحدث بنجاح.',
'delete-success' => 'تم حذف الحدث بنجاح.',
'delete-failed' => 'لا يمكن حذف الحدث.',
'mass-delete-success' => 'تم حذف الأحداث بنجاح',

'datagrid' => [
'delete' => 'حذف',
'edit' => 'تحرير',
'id' => 'المعرف',
'name' => 'الاسم',
'description' => 'الوصف',
'date' => 'التاريخ',
],

'create' => [
'title' => 'إنشاء حدث',
'name' => 'الاسم',
'date' => 'التاريخ',
'description' => 'الوصف',
],

'edit' => [
'title' => 'تحرير الحدث',
],
],
],

'campaigns' => [
'index' => [
'create-btn' => 'إنشاء حملة',
'title' => 'الحملات',
'create-success' => 'تم إنشاء الحملة بنجاح.',
'update-success' => 'تم تحديث الحملة بنجاح.',
'delete-success' => 'تم حذف الحملة بنجاح.',
'delete-failed' => 'لا يمكن حذف الحملة.',
'mass-delete-success' => 'تم حذف الحملات بنجاح.',

'datagrid' => [
'id' => 'المعرف',
'name' => 'الاسم',
'subject' => 'الموضوع',
'status' => 'الحالة',
'active' => 'نشط',
'inactive' => 'غير نشط',
'edit' => 'تحرير',
'delete' => 'حذف',
],

'create' => [
'title' => 'إنشاء حملة',
'name' => 'الاسم',
'type' => 'النوع',
'subject' => 'الموضوع',
'event' => 'الحدث',
'email-template' => 'نموذج البريد الإلكتروني',
'status' => 'الحالة',
],

'edit' => [
'title' => 'تحرير الحملة',
],
],
],
],

'tags' => [
'index' => [
'create-btn' => 'إنشاء وسم',
Expand Down Expand Up @@ -1960,6 +2033,10 @@
'email-templates' => 'قوالب البريد الإلكتروني',
'email' => 'البريد الإلكتروني',
'email-templates-info' => 'إضافة أو تعديل أو حذف قوالب البريد الإلكتروني من نظام CRM',
'events' => 'الفعاليات',
'events-info' => 'إضافة، تعديل أو حذف الفعاليات من إدارة العلاقات',
'campaigns' => 'الحملات',
'campaigns-info' => 'إضافة، تعديل أو حذف الحملات من إدارة العلاقات',
'workflows' => 'سير العمل',
'workflows-info' => 'إضافة أو تعديل أو حذف سير العمل من نظام CRM',
'webhooks' => 'الويب هوك',
Expand Down
22 changes: 11 additions & 11 deletions packages/Webkul/Admin/src/Resources/lang/en/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
'other-settings' => 'Other Settings',
'tags' => 'Tags',
'configuration' => 'Configuration',
'marketing-campaigns' => 'Marketing Campaigns',
'marketing-event' => 'Marketing Event',
'campaigns' => 'Campaigns',
'event' => 'Event',
'create' => 'Create',
'edit' => 'Edit',
'view' => 'View',
Expand Down Expand Up @@ -1087,13 +1087,13 @@
'marketing' => [
'events' => [
'index' => [
'create-btn' => 'Create Marketing Event',
'title' => 'Marketing Events',
'create-success' => 'Marketing Event created successfully.',
'update-success' => 'Marketing Event updated successfully.',
'delete-success' => 'Marketing Event deleted successfully.',
'delete-failed' => 'Marketing Event can not be deleted.',
'mass-delete-success' => 'Marketing Events deleted successfully',
'create-btn' => 'Create Event',
'title' => 'Events',
'create-success' => 'Event created successfully.',
'update-success' => 'Event updated successfully.',
'delete-success' => 'Event deleted successfully.',
'delete-failed' => 'Event can not be deleted.',
'mass-delete-success' => 'Events deleted successfully',

'datagrid' => [
'delete' => 'Delete',
Expand All @@ -1105,14 +1105,14 @@
],

'create' => [
'title' => 'Create Marketing Event',
'title' => 'Create Event',
'name' => 'Name',
'date' => 'Date',
'description' => 'Description',
],

'edit' => [
'title' => 'Edit Marketing Event',
'title' => 'Edit Event',
],
],
],
Expand Down
77 changes: 77 additions & 0 deletions packages/Webkul/Admin/src/Resources/lang/es/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
'other-settings' => 'Otras configuraciones',
'tags' => 'Etiquetas',
'configuration' => 'Configuración',
'campaigns' => 'Campañas',
'event' => 'Evento',
'create' => 'Crear',
'edit' => 'Editar',
'view' => 'Ver',
Expand Down Expand Up @@ -1082,6 +1084,77 @@
],
],

'marketing' => [
'events' => [
'index' => [
'create-btn' => 'Crear Evento',
'title' => 'Eventos',
'create-success' => 'Evento creado con éxito.',
'update-success' => 'Evento actualizado con éxito.',
'delete-success' => 'Evento eliminado con éxito.',
'delete-failed' => 'No se puede eliminar el evento.',
'mass-delete-success' => 'Eventos eliminados con éxito',

'datagrid' => [
'delete' => 'Eliminar',
'edit' => 'Editar',
'id' => 'ID',
'name' => 'Nombre',
'description' => 'Descripción',
'date' => 'Fecha',
],

'create' => [
'title' => 'Crear Evento',
'name' => 'Nombre',
'date' => 'Fecha',
'description' => 'Descripción',
],

'edit' => [
'title' => 'Editar Evento',
],
],
],

'campaigns' => [
'index' => [
'create-btn' => 'Crear Campaña',
'title' => 'Campañas',
'create-success' => 'Campaña creada con éxito.',
'update-success' => 'Campaña actualizada con éxito.',
'delete-success' => 'Campaña eliminada con éxito.',
'delete-failed' => 'No se puede eliminar la campaña.',
'mass-delete-success' => 'Campañas eliminadas con éxito.',

'datagrid' => [
'id' => 'ID',
'name' => 'Nombre',
'subject' => 'Asunto',
'status' => 'Estado',
'active' => 'Activo',
'inactive' => 'Inactivo',
'edit' => 'Editar',
'delete' => 'Eliminar',
],

'create' => [
'title' => 'Crear Campaña',
'name' => 'Nombre',
'type' => 'Tipo',
'subject' => 'Asunto',
'event' => 'Evento',
'email-template' => 'Plantilla de Correo',
'status' => 'Estado',
],

'edit' => [
'title' => 'Editar Campaña',
],
],
],
],

'tags' => [
'index' => [
'create-btn' => 'Crear Etiqueta',
Expand Down Expand Up @@ -1960,6 +2033,10 @@
'email-templates' => 'Plantillas de Correo',
'email' => 'Correo',
'email-templates-info' => 'Agregar, editar o eliminar plantillas de correo del CRM',
'events' => 'Eventos',
'events-info' => 'Agregar, editar o eliminar eventos del CRM',
'campaigns' => 'Campañas',
'campaigns-info' => 'Agregar, editar o eliminar campañas del CRM',
'workflows' => 'Flujos de Trabajo',
'workflows-info' => 'Agregar, editar o eliminar flujos de trabajo del CRM',
'webhooks' => 'Webhooks',
Expand Down
77 changes: 77 additions & 0 deletions packages/Webkul/Admin/src/Resources/lang/fa/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
'other-settings' => 'سایر تنظیمات',
'tags' => 'برچسب‌ها',
'configuration' => 'پیکربندی',
'campaigns' => 'کمپین‌ها',
'event' => 'رویداد',
'create' => 'ایجاد',
'edit' => 'ویرایش',
'view' => 'نمایش',
Expand Down Expand Up @@ -1082,6 +1084,77 @@
],
],

'marketing' => [
'events' => [
'index' => [
'create-btn' => 'ایجاد رویداد',
'title' => 'رویدادها',
'create-success' => 'رویداد با موفقیت ایجاد شد.',
'update-success' => 'رویداد با موفقیت به‌روزرسانی شد.',
'delete-success' => 'رویداد با موفقیت حذف شد.',
'delete-failed' => 'رویداد قابل حذف نیست.',
'mass-delete-success' => 'رویدادها با موفقیت حذف شدند',

'datagrid' => [
'delete' => 'حذف',
'edit' => 'ویرایش',
'id' => 'شناسه',
'name' => 'نام',
'description' => 'توضیحات',
'date' => 'تاریخ',
],

'create' => [
'title' => 'ایجاد رویداد',
'name' => 'نام',
'date' => 'تاریخ',
'description' => 'توضیحات',
],

'edit' => [
'title' => 'ویرایش رویداد',
],
],
],

'campaigns' => [
'index' => [
'create-btn' => 'ایجاد کمپین',
'title' => 'کمپین‌ها',
'create-success' => 'کمپین با موفقیت ایجاد شد.',
'update-success' => 'کمپین با موفقیت به‌روزرسانی شد.',
'delete-success' => 'کمپین با موفقیت حذف شد.',
'delete-failed' => 'کمپین قابل حذف نیست.',
'mass-delete-success' => 'کمپین‌ها با موفقیت حذف شدند',

'datagrid' => [
'id' => 'شناسه',
'name' => 'نام',
'subject' => 'موضوع',
'status' => 'وضعیت',
'active' => 'فعال',
'inactive' => 'غیرفعال',
'edit' => 'ویرایش',
'delete' => 'حذف',
],

'create' => [
'title' => 'ایجاد کمپین',
'name' => 'نام',
'type' => 'نوع',
'subject' => 'موضوع',
'event' => 'رویداد',
'email-template' => 'قالب ایمیل',
'status' => 'وضعیت',
],

'edit' => [
'title' => 'ویرایش کمپین',
],
],
],
],

'tags' => [
'index' => [
'create-btn' => 'ایجاد برچسب',
Expand Down Expand Up @@ -1960,6 +2033,10 @@
'email-templates' => 'قالب‌های ایمیل',
'email' => 'ایمیل',
'email-templates-info' => 'اضافه، ویرایش یا حذف قالب‌های ایمیل از CRM',
'events' => 'رویدادها',
'events-info' => 'افزودن، ویرایش یا حذف رویدادها از CRM',
'campaigns' => 'کمپین‌ها',
'campaigns-info' => 'افزودن، ویرایش یا حذف کمپین‌ها از CRM',
'workflows' => 'فرایندها',
'workflows-info' => 'اضافه، ویرایش یا حذف فرایندها از CRM',
'webhooks' => 'وب‌هوک‌ها',
Expand Down
Loading

0 comments on commit 9cfc673

Please sign in to comment.