mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2025-12-26 19:17:51 -05:00
* Improve code style and PSR-12 compliance - refactored code formatting to adhere to PSR-12 guidelines - standardized coding conventions across the codebase - added missing framework files and reverted markup changes - reformatted arrays for enhanced readability - updated language files for consistent styling and clarity - minor miscellaneous improvements
17 lines
702 B
PHP
17 lines
702 B
PHP
<?php
|
|
|
|
return [
|
|
"first_name" => "First name",
|
|
"last_name" => "Last name",
|
|
"message" => "Message",
|
|
"message_placeholder" => "Your Message here...",
|
|
"message_required" => "Message required",
|
|
"multiple_phones" => "(In case of multiple recipients, enter mobile numbers separated by commas)",
|
|
"phone" => "Phone number",
|
|
"phone_number_required" => "Phone number required",
|
|
"phone_placeholder" => "Mobile Number(s) here...",
|
|
"sms_send" => "Send SMS",
|
|
"successfully_sent" => "Message successfully sent to: ",
|
|
"unsuccessfully_sent" => "Message unsuccessfully sent to: ",
|
|
];
|