· 5 years ago · Nov 19, 2020, 04:08 PM
1<?php
2return array_merge([
3 // Responses
4 'created_response' => ':name đã được tạo thành công',
5 'updated_response' => ':name đã được cập nhật thành công',
6 'deleted_response' => ':name đã bị xoá thành công',
7 'failed_response' => 'Đã xảy ra sự cố',
8 'imported_response' => ':name đã được nhập thành công',
9 'notified' => ':name đã được thông báo thành công',
10 'duplicated_response' => ':name đã được nhân bản thành công',
11 'confirmed' => ':name đã được xác nhận thành công',
12 'status_updated_response' => ':name status has been changed to :status',
13 'action_not_allowed' => 'You are not allowed for this action',
14 'cant_delete_own_account' => 'You can\'t delete your own account',
15 'attached_response' => ':name has been attached successfully',
16 'detached_response' => ':name has been detached successfully',
17 'default_delete' => 'You can not delete the default :name .',
18 'default_update' => 'You can not update the default :name',
19 'old_password_is_in_correct' => 'Old password is incorrect',
20 'attach_log' => 'New :pivot attached to :model',
21 'detach_log' => ':pivot detached from :model',
22 'status_log' => ':model has been :status',
23 'incorrect_user_password' => 'Incorrect user or password',
24 'duplicated' => 'The :name already has duplicated values',
25 'invite_user_response' => 'User has been invited successfully',
26 'invalid_token' => 'The token is Invalid',
27 'user_account_confirmed' => 'Your account has been confirmed successfully',
28 'user_invited_to_join' => 'An user has been invited to join',
29 'user_confirm_joining' => 'User confirmed his joining',
30 'log_description_message' => ':model has been :event',
31 'password_reset_mail_has_been_sent_successfully' => 'Hi! We\'ve sent an email containing a password reset link to your email address. Please check it and confirm',
32 'no_user_found_on_that_email' => 'No user found of that email address.',
33 'password_has_been_reset_successfully' => 'Your password has been reset successfully',
34 'resource_not_found' => 'The :resource you are looking for is not found.',
35 'created' => 'Created',
36 'deleted' => 'Deleted',
37 'updated' => 'updated',
38 'test_email_response' => 'Campaign test email has been sent successfully',
39 'no_mail_settings_response' => 'There is no delivery settings in this brand or in the brand default settings. You can still confirm the campaign but the campaign will not be proceed until unless you set a default delivery settings from setting menu',
40 'no_delivery_settings_found' => 'No delivery settings found',
41 'Enter your email address to reset the password' => 'Enter your email address to reset the password',
42 'request' => 'Request',
43 'reset_password' => 'Reset Password',
44 'failed_to_delete' => 'Failed to delete :name. :data',
45 'available' => 'Available',
46 'app_installed_successfully' => 'App installed successfully',
47 'this_template_can_be_only_edited_from_app_side' => 'This template can be only edited from app side.',
48 'You can duplicate it if you want' => 'You can duplicate it if you want.' ,
49 'invalid_api_key' => 'Invalid api key',
50
51 // HTTP Responses
52 '0' => 'ZERO (0)',
53 '200' => 'Success',
54 '2' => 'TWO (2)',
55 '400' => 'Bad Request',
56 '401' => 'Unauthorized',
57 '403' => 'Forbidden',
58 '404' => 'Not Found',
59 '413' => 'Payload too large',
60 '414' => 'URI Too long',
61 '415' => 'Unsupported Media Type',
62 '426' => 'Upgrade Required',
63 '429' => 'Too Many Requests',
64
65
66 // Custom Field Builder
67 'custom_field' => 'Custom Field',
68 'custom_fields' => 'Custom fields',
69 'custom_field_type' => 'Custom field Type',
70
71 // Fields
72 'text' => 'Textbox',
73 'textarea' => 'Textarea',
74 'checkbox' => 'Checkbox',
75 'radio' => 'Radio Button',
76 'select' => 'Select',
77 'multi_select' => 'Multi Select',
78
79 // Notification event
80 'notification_event_name' => ':name :action',
81 'notification_created' => 'created',
82 'notification_updated' => 'updated',
83 'notification_deleted' => 'deleted',
84 'notification_imported' => 'imported',
85 'notification_user' => 'user',
86 'notification_reset' => 'reset',
87 'notification_password' => 'password updated',
88 'notification_email' => 'email updated',
89 'invite' => 'Invite',
90 'notification_duplicated' => 'duplicated',
91 'notification_confirmed' => 'confirmed',
92 'notification_joined' => 'joined',
93 'notification_invitation' => 'invitation',
94 'notification_sent' => 'sent',
95 'notification_bulk' => 'imported',
96 'notification_blacklisted' => 'blacklisted',
97 'notification_' => '',
98 'notification_invited' => 'invited',
99
100 // Notifications
101 'notification' => 'Thông báo',
102 //Notifications
103 'notify_by_email' => 'Notify by Email',
104 'notify_by_sms' => 'Notify by SMS',
105 'notification_settings' => 'Notification Settings',
106 'notification_template' => 'Notification Template',
107 'This field will be used as the email subject and identify the template' => 'This field will be used as the email subject and identify the template.',
108
109 //Channels
110 'mail' => 'Mail',
111 'database' => 'System',
112 'sms' => 'SMS',
113
114
115 // Feature Labels
116 'users' => 'Users',
117 'user' => 'User',
118 'roles' => 'Roles',
119 'role' => 'Role',
120 'brands' => 'Brands',
121 'brand' => 'Brand',
122 'permissions' => 'Permissions',
123 'permission' => 'Permission',
124 'notifications' => 'Notifications',
125 'settings' => 'Settings',
126 'setting' => 'Setting',
127 'campaigns' => 'Campaigns',
128 'campaign' => 'Campaign',
129 'emails' => 'Emails',
130 'email' => 'Email',
131 'lists' => 'Lists',
132 'list' => 'List',
133 'segments' => 'Segments',
134 'segment' => 'Segment',
135 'templates' => 'Templates',
136 'template' => 'Template',
137 'subscriber' => 'Subscriber',
138 'subscribers' => 'Subscribers',
139 'brand_group' => 'Brand Group',
140 'brand_groups' => 'Brand groups',
141 'users_roles' => 'Users & Roles',
142 'dashboard' => 'Dashboard',
143
144 'status' => 'Status',
145 'name' => 'Name',
146 'value' => 'Value',
147 'title' => 'Title',
148 'type' => 'Type',
149 'preview' => 'Preview',
150
151
152 'delivery_settings' => 'Delivery settings',
153 'brand_settings' => 'Brand settings',
154 'privacy_settings' => 'Privacy settings',
155 'corn_job' => 'Corn job',
156 'allowed' => 'allowed',
157
158 'log' => 'Log',
159
160
161
162 'app' => 'App',
163 'campaign_audiences' => 'Campaign audiences',
164 'campaign_delivery' => 'Campaign delivery settings',
165 'campaign_content' => 'Campaign template',
166 'audiences' => 'Audiences',
167 'first' => 'First',
168 'action' => 'Action',
169 'sending_rate' => 'Sending Rate',
170
171
172 'duplicate' => 'Duplicate',
173 'enter' => 'Enter',
174 'change' => 'Change',
175 'confirm' => 'Confirm',
176 'personal_info' => 'Personal Info',
177 'total_subscribers' => 'Total subscribers',
178 'no_of_segment' => 'No of segment',
179 'unsubscribed' => 'Unsubscribed',
180 'subscribed' => 'subscribed',
181 'no_of_email_delivery_send' => 'No. of email delivery/send',
182 'details' => 'Details',
183 'email_log' => 'Email log',
184 'attachments' => 'Attachments',
185 'attachment' => 'Attachment',
186 'sender' => 'Sender',
187 'receiver' => 'Receiver',
188 'want_to_test' => 'Want to test?',
189 'send' => 'Send',
190 'start' => 'Start',
191 'end' => 'End',
192 'show' => 'Show',
193 'consider_subscriber_time_zone' => 'Consider subscriber time zone',
194 'data' => 'Data',
195 'company_info' => 'Company info',
196 'submit' => 'Submit',
197 'configuration_set' => 'AWS SES configuration set',
198 'api_key_message' => 'API key',
199 'api_regenerate_warning' => 'If you create new API key your old API key will be invalid and it can\'t be undone',
200
201 //Settings
202 'app_name' => 'App name',
203 'brand_name' => 'Brand Name',
204 'app_environment' => 'App environment',
205 'local' => 'Local',
206 'production' => 'Production',
207 'app_debug' => 'App debug',
208 'true' => 'True',
209 'false' => 'False',
210 'app_url' => 'App url',
211 'cache_driver' => 'Cache driver',
212 'redis' => 'Redis',
213 'file' => 'File',
214 'queue_connection' => 'Queue connection',
215 'sync' => 'Sync',
216 'cookie' => 'Cookie',
217 'session_driver' => 'Session driver',
218 'port' => 'Port',
219 'host' => 'Host',
220 'redis_configuration' => 'Redis Configuration',
221 'database_configuration' => 'Database Configuration',
222 'default_user' => 'Default user',
223 'default_brand' => 'Default brand',
224 'db_connection' => 'Database connection',
225 'mysql' => 'MySQL 5.6+',
226 'pgsql' => 'PostgreSQL 9.4+',
227 'sqlsrv' => 'SQL Server 2017+',
228 'database_hostname' => 'Database hostname',
229 'database_port' => 'Database port',
230 'database_name' => 'Database name',
231 'database_username' => 'Database username',
232 'database_password' => 'Database password',
233 'admin_login_details' => 'Admin Login Details',
234 'general_configuration' => 'General Configuration',
235 'required_environments' => 'Required Environments',
236 'purchase_code' => 'Purchase code',
237 'code' => 'Code',
238
239 // Status
240 'status_active' => 'Active',
241 'status_pending' => 'Pending',
242 'status_deleted' => 'Deleted',
243 'status_processing' => 'Processing',
244 'status_sent' => 'Sent',
245 'status_draft' => 'Draft',
246 'status_regular' => 'Regular',
247 'status_auto' => 'Auto',
248 'status_dynamic' => 'Dynamic',
249 'status_imported' => 'Imported',
250 'status_blacklisted' => 'Blacklisted',
251 'status_subscribed' => 'Subscribed',
252 'status_unsubscribed' => 'Unsubscribed',
253 'status_confirmed' => 'Confirmed',
254 'status_invited' => 'Invited',
255 'status_open' => 'Open',
256 'status_rejected' => 'Rejected',
257 'status_new' => 'New',
258 'status_queued' => 'Queued',
259 'status_bounced' => 'Bounced',
260 'status_soft_bounced' => 'Soft-Bounced',
261 'status_de_bounced' => 'De-Bounced',
262 'status_delivered' => 'Delivered',
263 'status_clicked' => 'Clicked',
264 'status_spam' => 'Mark as spam',
265 'status_black-listed' => 'Black listed',
266 'status_inactive' => 'Inactive',
267
268 // Permissions
269 'manage_dashboard' => 'Can manage app dashboard',
270 'view_users' => 'Can view list of user',
271 'create_users' => 'Can create an user',
272 'update_users' => 'Can update an user',
273 'delete_users' => 'Can delete an user',
274 'view_brands' => 'Can view list of brand',
275 'create_brands' => 'Can create brand',
276 'update_brands' => 'Can update brand',
277 'delete_brands' => 'Can delete brand',
278 'user_list_brands' => 'Can view users of a brand',
279 'attach_users_brands' => 'Can attach user to brand',
280 'detach_users_brands' => 'Can detach user from a brand',
281 'brand_list_users' => 'Can view brands of a user',
282 'manage_brand_dashboard' => 'Can view brand dashboard',
283 'update_brand_privacy_settings' => 'Can update brand privacy from app',
284 'view_brand_privacy_settings' => 'Can view brand privacy from app',
285 'view_roles' => 'Can view list of role',
286 'create_roles' => 'Can create role',
287 'update_roles' => 'Can update role',
288 'delete_roles' => 'Can delete role',
289 'view_settings' => 'Can view list of setting',
290 'update_settings' => 'Can update setting',
291 'view_permission' => 'Can view list of permission',
292 'view_custom_fields' => 'Can view list of custom field',
293 'create_custom_fields' => 'Can create custom field',
294 'update_custom_fields' => 'Can update custom field',
295 'delete_custom_fields' => 'Can delete custom field',
296 'attach_roles_users' => 'Can attach roles to users',
297 'detach_roles_users' => 'Can detach roles from users',
298 'attach_permissions_roles' => 'Can attach permissions to role',
299 'detach_permissions_roles' => 'Can detach permissions from role',
300 'change_settings_users' => 'Can change own settings',
301 'settings_list_users' => 'Can view settings list',
302 'change_password_users' => 'Can change user password',
303 'change_profile_picture_users' => 'Can change profile picture',
304 'update_delivery_settings' => 'Can update delivery settings',
305 'update_specific_brand_delivery_settings' => 'Can update delivery settings',
306 'update_corn_job_settings' => 'Can update corn job settings',
307 'view_corn_job_settings' => 'Can view corn job settings',
308 'view_delivery_settings' => 'Can view delivery settings',
309 'view_specific_brand_delivery_settings' => 'Can view delivery settings',
310 'view_brand_delivery_settings' => 'Can view brand global delivery settings',
311 'update_brand_delivery_settings' => 'Can update brand global delivery settings',
312 'view_notification_settings' => 'Can view notification settings',
313 'update_notification_settings' => 'Can update notification settings',
314 'create_brand_groups' => 'Can create brand group',
315 'view_brand_groups' => 'Can view brand group',
316 'update_brand_groups' => 'Can update brand group',
317 'delete_brand_groups' => 'Can delete brand group',
318 'attach_brand_brand_groups' => 'Can attach brand to brand group',
319 'detach_brand_brand_groups' => 'Can detach brand from brand group',
320 'view_brands_brand_groups' => 'Can view brands of a brand group',
321 'view_notification_templates' => 'Can view notification templates',
322 'create_notification_templates' => 'Can create notification templates',
323 'update_notification_templates' => 'Can update notification templates',
324 'delete_notification_templates' => 'Can delete notification templates',
325 'attach_templates_notification_events' => 'Can attach templates to notification event',
326 'detach_templates_notification_events' => 'Can detach templates to notification event',
327 'view_activity_logs' => 'Can view activity log',
328 'view_templates' => 'Can view templates',
329 'create_templates' => 'Can create templates',
330 'update_templates' => 'Can update templates',
331 'delete_templates' => 'Can delete templates',
332 'view_segments' => 'Can view segments',
333 'create_segments' => 'Can create segments',
334 'update_segments' => 'Can update segments',
335 'delete_segments' => 'Can delete segments',
336 'copy_segments' => 'Can duplicate segments',
337 'add_to_blacklist_subscribers' => 'Can add subscribers to blacklist',
338 'remove_from_blacklist_subscribers' => 'Can remove subscribers to blacklist',
339 'import_subscribers' => 'Can import subscribers',
340 'view_imported_subscribers' => 'Can view bulk imported subscribers',
341 'bulk_import_subscribers' => 'Can store bulk imported subscribers',
342 'quick_import_subscribers' => 'Can quick import subscribers',
343 'view_subscribers' => 'Can view subscribers',
344 'create_subscribers' => 'Can create subscribers',
345 'update_subscribers' => 'Can update subscribers',
346 'delete_subscribers' => 'Can delete subscribers',
347 'view_lists' => 'Can view lists',
348 'create_lists' => 'Can create lists',
349 'update_lists' => 'Can update lists',
350 'delete_lists' => 'Can delete lists',
351 'dynamic_subscribers_lists' => 'Can view dynamic subscribers of lists',
352 'view_campaigns' => 'Can view campaigns',
353 'create_campaigns' => 'Can create campaigns',
354 'update_campaigns' => 'Can update campaigns',
355 'delete_campaigns' => 'Can delete campaigns',
356 'delivery_settings_campaigns' => 'Can update delivery settings of campaigns',
357 'audiences_campaigns' => 'Can update audiences of campaigns',
358 'template_campaigns' => 'Can update content of campaigns',
359 'subscribers_campaigns' => 'Can view subscribers of campaigns',
360 'invite_user' => 'Can invite user',
361 'view_total_brands' => 'Can view total brands',
362 'campaigns_count_brands' => 'Can view brands campaigns count',
363 'campaigns_count_app' => 'Can view apps campaigns count',
364 'email_statistics_brands' => 'Can view brands email statistics',
365 'email_statistics_app' => 'Can view apps email statistics',
366 'email_statistics_campaigns' => 'Can view campaign email statistics',
367 'email_logs_campaigns' => 'Can view campaign email logs',
368 'view_notification_events' => 'Can view notification events',
369 'confirm_campaigns' => 'Can confirm campaign',
370 'update_settings_brands' => 'Can update settings of brand',
371 'subscribers_count_brands' => 'Can view subscriber count in brand dashboard',
372 'subscribers_count_app' => 'Can view subscriber count in app dashboard',
373 'test_campaign' => 'Can test campaign from email',
374 'view_sns_subscription' => 'Can view sns subscriptions',
375 'confirm_sns_subscription' => 'Can confirm sns subscriptions',
376 'view_emails' => 'Can view email logs',
377 'view_brand_segment_counts' => 'Can view brand segment counts',
378 'duplicate_campaigns' => 'Can duplicate campaign',
379 'view_subscribers_black_lists' => 'Can view subscribers black lists',
380 'add_to_lists_subscribers' => 'Can add to lists on context menu',
381 'remove_from_lists_subscribers' => 'Can remove subscribers from lists on context menu',
382 'bulk_destroy_subscribers' => 'Can bulk delete subscribers from context menu',
383 'update_status_subscribers' => 'Can update status of subscribers from context menu',
384 'attach_users_to_roles' => 'Can attach user to role',
385 'confirm_your_account' => 'Confirm your account',
386 'check_for_updates' => 'Can check for updates',
387 'generate_subscriber_api_url' => 'Can generate subscriber api url',
388 'update_app' => 'Can update the app',
389 'delete_emails' => 'Can delete emails',
390
391 'successfully_unsubscribed' => 'Successfully unsubscribed',
392
393 //Campaign
394 'note' => 'Note',
395 'immediately_note' => 'This campaign will sent immediately to the subscribers when it will be confirmed.',
396 'once_note' => 'This campaign will sent for a single time.',
397 'hourly_note' => 'This campaign will sent every hour after the campaign starts.',
398 'time_period_note' => 'This campaign will sent {type}.',
399
400 'date_format' => 'date format',
401 'time_format' => 'time format',
402 'decimal_separator' => 'decimal separator',
403 'thousand_separator' => 'thousand separator',
404 'number_of_decimal' => 'number of decimal',
405 'currency_position' => 'currency position',
406
407 // Language
408 'en' => 'English',
409
410 // Date Format
411 'd-m-Y' => 'DD-MM-YYYY',
412 'm-d-Y' => 'MM-DD-YYYY',
413 'Y-m-d' => 'YYYY-MM-DD',
414 'm/d/Y' => 'MM/DD/YYYY',
415 'd/m/Y' => 'DD/MM/YYYY',
416 'Y/m/d' => 'YYYY/MM/DD',
417 'm.d.Y' => 'MM.DD.YYYY',
418 'd.m.Y' => 'DD.MM.YYYY',
419 'Y.m.d' => 'YYYY.MM.DD',
420
421 // Time Format
422 'h' => '12 HOURS',
423 'H' => '24 HOURS',
424
425 // Decimal and Thousand Separator
426 '.' => 'DOT(.)',
427 ',' => 'COMMA(,)',
428
429 //Logic name
430 'created_at' => 'Created at',
431 'first_name' => 'First name',
432 'last_name' => 'Last name',
433 'last_updated' => 'Last updated',
434
435 //Logic operator
436 'on' => 'On',
437 'before' => 'Before',
438 'after' => 'After',
439 'on or before' => 'On or before',
440 'on or after' => 'On or after',
441 'between' => 'Between',
442 'is' => 'Is',
443 'is not' => 'Is not',
444 'contains' => 'Contains',
445 'does not contain' => 'Does not contain',
446 'starts with' => 'Starts with',
447 'ends with' => 'Ends with',
448 'does not start with' => 'Does not start with',
449 'does not end with' => 'Does not end with',
450
451 // Currency Positions
452 'prefix_only' => '$1,100.00',
453 'prefix_with_space' => '$ 1,100.00',
454 'suffix_only' => '1,100.00$',
455 'suffix_with_space' => '1,100.00 $',
456
457 // Validation
458 "is_required" => "is required",
459 "and" => "and",
460 "this_field_is_required" => "This field is required",
461 "this_field_is_invalid" => "This field is invalid",
462 "this_field_is_not_alphanumeric" => "This field is not alphanumeric",
463 "passwords_are_not_matched" => "Passwords are not matched",
464 "please_enter_a_strong_password" => "Please enter a strong password.",
465 "password_must_contains_things" => "Password must contain a number, lowercase, uppercase, and special character.",
466 "are_not_match" => "are not match",
467 "can_not_before" => "can not before",
468 "is_invalid" => "is invalid",
469 "minimum_length_is" => "Minimum length is",
470 "maximum_length_is" => "Maximum length is",
471 "maximum_number_is" => "Maximum number is",
472 "minimum_number_is" => "Minimum number is",
473 "is_not_alphanumeric" => "is not alphanumeric",
474 'resource' => 'resource',
475
476 // Btn
477 "load_more" => "Load more",
478 "apply" => "Apply",
479 "clear" => "Clear",
480 "close" => "Close",
481 "yes" => "Yes",
482 "no" => "No",
483 "more" => "more",
484 "actions" => "Actions",
485
486 // Multi select component
487 "not_found" => "Not found",
488
489 //Templates
490 'default' => 'Default',
491 'custom' => 'Custom',
492 'content' => 'Content',
493 'custom_content' => 'Custom content',
494 'gallery' => 'gallery',
495
496
497 //Front-end
498
499
500 // Add and all labels
501 'field_label' => '{subject} {key}',
502
503 'all_feature_name' => 'All {name}',
504 'add_feature_name' => 'Add {name}',
505 'edit_feature_name' => 'Edit {name}',
506 'copy_feature_name' => 'Copy {name}',
507 /* Allowed "name" is 'campaign', 'segment', 'list', 'subscriber', 'template', 'role', 'custom_field', 'group',
508 'brand' */
509
510 //Field Labels
511 'profile_picture' => 'Profile picture',
512 'password' => 'Password',
513 'import' => 'Import',
514 'address' => 'Address',
515 'description' => 'Description',
516 'lists_label' => 'List(s)',
517 'group' => 'Group',
518 'number_of_brands' => 'No. of brands',
519 'manage' => 'Manage',
520 'visit' => 'Visit',
521 'confirmation' => 'Confirmation',
522 'contents' => 'Contents',
523 'event' => 'Event',
524 'channel' => 'Channel',
525 'mail_server' => 'Mail servers',
526 'your' => 'Your',
527 'account' => 'Account',
528 'copyright' => 'Copyright',
529 'icon' => 'Icon',
530 'full_stop_mark' => '.',
531 'please' => 'Please',
532
533
534 'place_holder' => 'Enter {subject} {type}',
535 'back_to' => 'Back to {destination}',
536
537 //Login
538 'hi' => 'Chào {object}',
539 'there' => 'bạn',
540 'login_to_your_dashboard' => 'Đăng nhập vào bảng điều khiển',
541 'forgot' => 'Quên {subject}',
542 'login' => 'Đăng nhập',
543 'password_requirements_message' => 'Mật khẩu phải chứa một chữ hoa, một chữ thường, một ký tự và số đặc biệt. Nó phải có tối thiểu 8 ký tự.',
544 'requirements' => 'Trường bắt buộc',
545 'password-reset' => 'Đặt lại mật khẩu',
546 'old_password' => 'Mật khẩu cũ',
547 'notification_form' => 'Form thông báo',
548
549 //User & Roles
550 'active' => 'Active',
551 'activate' => 'Activate',
552 'de_activate' => 'De-activate',
553 'my_profile' => 'My profile',
554 'log_out' => 'Log out',
555 'activity' => 'Activity',
556 'profile' => 'Profile',
557 'date_of_birth' => 'Date of birth',
558 'gender' => 'Gender',
559 'contact' => 'Contact',
560 'male' => 'Male',
561 'female' => 'Female',
562
563 //Brands
564 'visit_brand' => 'Visit brand',
565 'short_name' => 'Short name',
566 'brands_and_groups' => 'Brands & Groups',
567 'manage_brands' => 'Manage Brands',
568
569 //Settings
570 'app_settings' => 'App Settings',
571 'general' => 'General',
572 'privacy' => 'Privacy',
573 'company' => 'Company',
574 'logo' => 'logo',
575 'banner' => 'Banner',
576 'language' => 'Language',
577 'date_and_time' => 'Date and time',
578 'format' => 'Format',
579 'date' => 'Date',
580 'time' => 'Time',
581 'zone' => 'Zone',
582 'currency' => 'Currency',
583 'symbol' => 'Symbol',
584 'decimal' => 'Decimal',
585 'separator' => 'Separator',
586 'thousand' => 'Thousand',
587 'of' => ' of',
588 'number' => 'Number',
589 ' ' => 'Space',
590 'position' => 'Position',
591 'is_for_admin' => 'Is for admin',
592 'track_campaigns_message' => 'Track {action} in your {subject}',
593 'location' => 'Location',
594 'update' => 'Update',
595
596 //Brand Delivery
597 'new_setup' => 'New Setup',
598 'You are using a default delivery settings in this brand. If you want can set up a new settings bellow.' => 'You are using a default delivery settings in this brand. If you want can set up a new settings bellow.',
599
600 //Notifications
601 'notification_events' => 'Notification events',
602 'bulk_subscribers' => 'Bulk subscribers',
603
604 //Mail
605 'provider' => 'Provider',
606 'amazon_ses' => 'Amazon SES',
607 'mailgun' => 'Mailgun',
608 'hostname' => 'Hostname',
609 'access_key_id' => 'AWS access key',
610 'secret_access_key' => 'AWS secret key',
611 'domain_name' => 'Mailgun domain name',
612 'api_key' => 'Mailgun API key',
613 'from' => 'From',
614 'probability' => 'Probability',
615 'quota' => '{subject} quota',
616 'pause_after_send' => 'Pause after send',
617 'tracking_domain' => 'Tracking domain',
618 'use_for' => 'Use for',
619 'force_from' => 'Force from',
620 'reply_to_email' => 'Reply to email',
621 'force_reply_to' => 'Force reply to',
622 'api_region' => 'AWS region',
623 'domain_policy' => 'Domain policy',
624 'additional_headers' => 'Additional headers',
625 'qta' => 'quota',
626 'webhook_signing_key' => 'Mailgun webhook key',
627
628
629 //Campaign
630 'recipients' => 'Recipients',
631 'click_rate' => 'Click rate',
632 'open_rate' => 'Open rate',
633 'save_and_next' => 'Save & Next',
634 'finish' => 'Finish',
635 'back' => 'Back',
636 'time_period' => 'Time period',
637 'send_email_between' => 'Send email between',
638 'campaign_allowed_mimes' => '(Allowed types: jpeg, jpg, gif, png, pdf, zip)',
639 'send_email_at' => 'Send email at',
640 'who_are' => 'Who are {subject}',
641 'audience_of_campaign' => 'are the audience of campaign?',
642 'campaign_audience_description' => 'Choose a list of subscribers form list. You can select subscribers manually to add there emails to send email to the specific subscribers. There is no requirement to select all of the options, we just provide to create your desired audience as you want.',
643 'campaign_start_and_end_date' => 'campaign start and end date',
644 'frequency' => 'frequency',
645 'choose' => 'Choose {field}',
646 'email_setup' => 'Email setup',
647 'sender_email' => 'Sender email',
648 'receiver_email' => 'Receiver email',
649 'sending_date' => 'Sending date',
650
651 //Time Periods
652 'immediately' => 'Immediately',
653 'once' => 'Once',
654 'hourly' => 'Hourly',
655 'daily' => 'Daily',
656 'monthly' => 'Monthly',
657 'weekly' => 'Weekly',
658 'yearly' => 'Yearly',
659
660
661 //Template
662 'subject' => 'Subject',
663 'card_view' => 'Card View',
664 'list_view' => 'List View',
665 'our' => 'Our',
666
667 //Subscribers
668 'add_to_subscriber' => 'Add to subscriber',
669 'add_to_blacklist' => 'Add to blacklist',
670 'unsubscribe' => 'unsubscribe',
671 'blacklisted' => 'blacklisted',
672 'black_list' => 'Black list',
673 'csv_format_guideline' => 'CSV format guideline',
674 'csv_guideline_1' => 'Format your CSV the same way as the sample file below. There are two types of sample files, Default and Custom.',
675 'csv_guideline_1.5' => 'If you want to download a sample with custom fields then click on the checkbox below and download. Otherwise, simply download the default file.',
676 'csv_guideline_2' => 'Your CSV columns should be separated by commas, not semi-colons or any other characters',
677 'csv_guideline_3' => 'The number of columns in your CSV should be the same as the example below',
678 'csv_guideline_4' => 'If you want to import more than just name & email, create fields first from settings',
679 'csv_guideline_5' => 'If you import with custom fields make sure count of rows in this file not more than 2000',
680 'csv_guideline_6' => 'Valid fields are case sensitive, Tip: make sure name of fields must be following: {fields} (for date type custom field date must be formatted in YYYY-MM-DD)',
681 'csv_download_label' => 'We would like to provide you a sample .CSV file:',
682 'include' => 'Include',
683 'download' => 'Download',
684 'filtered' => 'Filtered',
685 'sanitized' => 'Sanitized',
686 'with_' => 'With {name}',
687 'without_' => 'Without {name}',
688 'default_fields_only' => 'Default fields only',
689 'custom_fields_also' => 'Custom fields also',
690 'import_count_validation' => 'Subscriber count in this file more than 2000.',
691 'import_fields_validation' => 'Columns you entered in CSV file are invalid. Tip: valid fields are: :fields',
692 'imported_exists' => 'Imported :name already exists.',
693 'type_your_new_list_name' => 'Type your new list name',
694 'no_of_email_delivered_per_sent' => 'No of email delivered/sent',
695 'last_activity' => 'Last Activity',
696 'thanks_for_subscribing_to_our_newsletter' => 'Thank you for joining our newsletter list',
697 'delivery_settings_message_amazon_ses' => 'SES requires email verification. To track email status you need endpoint in sns topic.<br> Endpoint is {endpoint}. See the {doc} for more information.',
698 'delivery_settings_message_mailgun' => 'Endpoint for mailgun webhook is {endpoint}',
699 'custom_field_warning_message' => 'You are using some default custom field(s) in this brand and this will appear in your subscribers. If you want, you can add new custom fields to store more information.',
700
701
702
703 //Custom Fields
704 'Show in the data table' => 'Show in the data table',
705 'Use comma separated values as options of the field' => '(Use comma separated values as options of the field.)',
706 'This field will be the option of this fields' => 'This field will be the option of this fields',
707 'options' => 'Options',
708
709 //Segments
710 'what_is' => 'What is {subject}?',
711 'min_subject' => 'Min {subject}',
712 'max_subject' => 'Max {subject}',
713 'number_of_rules' => 'No. of rules',
714 'logic' => 'Logic',
715 'capital_or' => 'Or',
716 'capital_and' => 'And',
717 'segment_description' => 'Segment are subscribers filter based on the certain conditions you define. Create multiple condition and group them using \'AND\' and \'OR\'. Once you have created your segment, you can send targeted campaigns to these segment in addition to lists. You can also filter your subscriber based on your segments.',
718
719 //List
720 'creation_date' => 'Creation date',
721 'manually_added' => 'Manually added',
722 'using_segment' => 'Using Segment',
723 'imported' => 'Imported',
724 'dynamic' => 'Dynamic',
725
726 //Emails
727 'marked_as_spam' => 'Marked as spam',
728 'api' => 'API',
729 'url' => 'URL',
730 'body' => 'Body',
731 'subscriber_api_message' => 'To add and update subscriber from external resource you can use this bellow API. If you change anything of this API url it will not work. Send the API key along with other data in request body',
732
733
734 //Dashboard
735 'pending_subscription_from_sns' => 'You have pending subscription from sns subscriptions',
736
737 'total_context' => 'Total {name}',
738 /* "name" of total_context is in 'campaigns', 'subscriber', 'segments', 'brands', 'sent', 'deliveries',
739 'bounces', 'opens', 'clicks', 'unsubscribers' */
740 'sent' => 'Sent',
741 'deliveries' => 'Deliveries',
742 'bounces' => 'Bounces',
743 'rate' => 'Rate',
744 'clicks' => 'Clicks',
745 'opens' => 'Opens',
746 'unsubscribers' => 'Unsubscribers',
747
748
749
750 'status_wise_rate' => '{status} rate',
751 /* "status" of status_wise_rate is in 'sending', 'delivery', 'bounce', 'open', 'click', 'unsubscribing' */
752 'sending' => 'Sending',
753 'delivery' => 'Delivery',
754 'click' => 'Click',
755 'open' => 'Open',
756 'bounce' => 'Bounce',
757 'unsubscribing' => 'Unsubscribing',
758
759
760 'last_24_hours' => 'Last 24 hours',
761 'last_7_days' => 'Last 7 days',
762 'this_week' => 'This week',
763 'last_week' => 'Last week',
764 'this_month' => 'This month',
765 'last_month' => 'Last month',
766 'this_year' => 'This year',
767 'last' => 'Last',
768
769 'audience' => 'Audience',
770 'overview' => 'Overview', // used in campaign and audience overview
771
772 //month
773 'Mon' => 'Mon',
774 'Tue' => 'Tue',
775 'Wed' => 'Wed',
776 'Thu' => 'Thu',
777 'Fri' => 'Fri',
778 'Sat' => 'Sat',
779 'Sun' => 'Sun',
780
781
782 'chose_a' => 'Chose a {field}',
783
784
785 //Buttons
786 'edit' => 'Edit',
787 'eye' => 'Eye',
788 'delete' => 'Delete',
789 'copy' => 'Copy',
790 'cancel' => 'Cancel',
791 'go_to' => 'Go to',
792 'go' => 'Go',
793 'new' => 'New',
794 'add' => 'Add',
795 'total' => 'Total',
796 'context' => 'Context',
797 'save' => 'Save',
798 'test' => 'Test',
799 'attach' => 'Attach',
800 'to' => 'to',
801
802
803 //Action Errors
804 'this_resource_already_referenced_message' => 'This resource already referenced in other feature. Please remove from there to delete from here.',
805 'Choose a previously added settings and save for the brand globally. Brand can also use its own settings' => 'Choose a previously added settings and save for the brand globally. Brand can also use its own settings.',
806
807
808
809
810 //Installation and update
811 'server_requirements' => 'Server Requirements',
812 'server_permission_errors' => 'Please fix server and permissions error to proceed.',
813 'install' => 'Install',
814 'php' => 'Php',
815 'version_required' => 'Version {number} required',
816 'next' => 'Next',
817 'environment' => 'Environment',
818 'database_label' => 'Database',
819 'attention' => 'Attention',
820 'server_permission_required' => '{replace} required server write permission to install and run the apps. You can remove write permission of .env after installation.',
821 'no_updates_found' => 'No update found.',
822 'subject_for_this_email' => 'subject for this email',
823 'invalid_purchase_code' => 'Invalid purchase code.',
824 'please_update_your_php_version_to_number' => 'Please update your php version to :number',
825 'public_directory_must_be_writeable_to_update_the_app' => 'Server must have the permission to write in root directory of app and public directory in order to update the app.',
826 'install_zip_extension' => 'Zip extension is required in order to update the apps.',
827 'please_install_version_first' => 'Please install version :number first.',
828 'version_installed_successfully' => ':version installed successfully.',
829 'update_warning' => 'Whenever you want update the app, make sure you backup the database from server.',
830 'this_will_update_entire_app' => 'This action will update the app to the selected version.',
831 'no_updates_available' => 'No updates available.',
832 'please_complete_the_first_step' => 'Please complete the first step.',
833 'The user who will receive the notification' => 'The user who will receive the notification.',
834 'Logo of the app' => 'Logo of the app',
835 'Name of the app' => 'Name of the app',
836 'The user who performed the action' => 'The user who performed the action',
837 'The resource name of the event' => 'The resource name of the event',
838 'Page link of resource' => 'Page link of resource',
839 'Invitation url for the user' => 'Invitation url for the user',
840 "We'll stop sending you this type of email" => "We'll stop sending you this type of email",
841 'You are using version' => 'You are using :version.',
842 'no_new_update_found' => 'No new update found.',
843
844
845 //validation
846 'This modal is not editable' => 'This modal is not editable',
847 'inactive_brand_action' => 'You can\'t do actions in inactive brand',
848
849 // Filters
850 "filters" => "Filters",
851 'today' => 'Today',
852 'tomorrow' => 'Tomorrow',
853 'next_week' => 'Next week',
854 'yesterday' => 'Yesterday',
855 'added' => 'Added',
856 'with' => 'With',
857 'without' => 'Without',
858 'Want to filter your subject' => 'Want to filter your {subject}?',
859 "minimum_rate" => "Minimum rate",
860 "maximum_rate" => "Maximum rate",
861 "want_to_manage_datatable" => "Want to manage datatable?",
862 "please_drag_and_drop_your_column_to_reorder_your_table_and_enable_see_option_as_you_want" => "Please drag and drop your column to reorder your table and enable see option as you want.",
863 "manage_columns" => "Manage Columns",
864 "search" => "Search",
865 'You can filter the list based on their type' => 'You can filter the list based on their {type}.',
866 "You can filter the list which have segment and which doesn't have" => 'You can filter the list which have segment and which doesn\'t have.',
867
868 // Modal
869 "are_you_sure" => "Are you sure?",
870 "this_content_will_be_deleted_permanently" => "This content will be deleted permanently.",
871
872 // Empty data
873 "nothing_to_show_here" => "Nothing to show here",
874 "thank_you" => "Thank you",
875 "no_of_sent_email"=> "No. of email sent",
876 "no_of_segment_used"=> "No. of segment used",
877 "go_back_to_your_page" => "Go back to your page",
878 "something_went_wrong" => "Something went wrong!",
879 "empty_data_block_dummy_message" => "Please add a new entity or manage the data table to see the content here",
880 'not_found_message' => 'No {subject} found',
881 'not_active_yet' => 'not active yet',
882 'not_added_yet' => 'Not added yet',
883 'not_attached_yet' => 'Not attached yet',
884 'no_roles_found' => 'No roles found',
885
886 // No notification
887 "no_notification_one" => "It's very much boring to do as usual stuff, let's have a party with some beer!",
888 "no_notification_two" => "Are you hungry there? Please have good food and get back to work.",
889 "no_notification_three" => "Rock & role time! Turn on your music and have some fun with your team.",
890 "all_notifications" => "All Notifications",
891 "recommended_company_logo_size"=> "(Recommended size: 135 x 55 px)",
892 "recommended_company_icon_size"=> "(Recommended size: 70 x 70 px)",
893 "recommended_company_banner_size"=> "(Recommended size: 1920 x 100 px)",
894
895 //file upload
896 "choose_file" => "Choose File",
897 "drag_and_drop" => "Drag & Drop",
898
899
900 'add_resource_front_end' => 'Add {resource}',
901 'add_resource_backend' => 'Add :resource',
902 'field_title' => '{subject} {infix} {title}',
903
904
905 //Activity Log
906 'track_location_in_your_campaigns' => 'Track location in your campaigns',
907 'track_clicks_in_your_campaigns' => 'Track clicks in your campaigns',
908 'track_open_in_campaigns' => 'Track open in your campaigns',
909 'notification_setting' => 'Notification setting',
910 'time_zone' => 'Time zone',
911 'company_name' => 'Company name',
912 'company_icon' => 'Company icon',
913 'company_logo' => 'Company logo',
914 'company_banner' => 'Company banner',
915 'from_email' => 'From email',
916 'from_name' => 'From name',
917 'default_mail' => 'Default mail',
918 'webhook_key' => 'Webhook key',
919 'brand_own_default_delivery_settings' => 'Brand delivery settings',
920
921 // Tooltip titles
922 "collapse_sidebar" => "Collapse sidebar",
923 "floating_sidebar" => "Floating sidebar",
924 "full_sidebar" => "Full sidebar",
925 "light_mood" => "Light mood",
926 "dark_mood" => "Dark mood",
927 "fullscreen" => "Fullscreen",
928 "exit_fullscreen" => "Exit fullscreen",
929
930 // Tenant Preview Card
931 "invited_by" => "Invited by",
932 "go_to_dashboard" => "Go To Dashboard",
933 'user_invitation_canceled_successfully' => 'User invitation canceled successfully.',
934
935
936 'csrf_token_mismatch_message' => 'Maybe you are in a frame. Please remove the frame and try again',
937
938 'de-active' => 'De-active',
939 'you_are_going_to_deactivate_this_brand' => 'You are going to de-activate this brand.',
940 'you_are_going_to_activate_this_brand' => 'You are going to activate this brand.'
941
942], include 'custom.php');
943