| 1 |
<?php |
| 2 |
namespace YayMail; |
| 3 |
|
| 4 |
defined( 'ABSPATH' ) || exit; |
| 5 |
/** |
| 6 |
* I18n Logic |
| 7 |
*/ |
| 8 |
class I18n { |
| 9 |
|
| 10 |
protected static $instance = null; |
| 11 |
|
| 12 |
public static function getInstance() { |
| 13 |
if ( null == self::$instance ) { |
| 14 |
self::$instance = new self(); |
| 15 |
self::$instance->doHooks(); |
| 16 |
} |
| 17 |
|
| 18 |
return self::$instance; |
| 19 |
} |
| 20 |
|
| 21 |
private function doHooks() {} |
| 22 |
|
| 23 |
private function __construct() {} |
| 24 |
|
| 25 |
public static function loadPluginTextdomain() { |
| 26 |
if ( function_exists( 'determine_locale' ) ) { |
| 27 |
$locale = determine_locale(); |
| 28 |
} else { |
| 29 |
$locale = is_admin() ? get_user_locale() : get_locale(); |
| 30 |
} |
| 31 |
|
| 32 |
unload_textdomain( 'yaymail' ); |
| 33 |
load_textdomain( 'yaymail', YAYMAIL_PLUGIN_PATH . '/i18n/languages/yaymail-' . $locale . '.mo' ); |
| 34 |
|
| 35 |
load_plugin_textdomain( |
| 36 |
'yaymail', |
| 37 |
false, |
| 38 |
YAYMAIL_PLUGIN_URL . 'i18n/languages/' |
| 39 |
); |
| 40 |
} |
| 41 |
|
| 42 |
public static function jsTranslate() { |
| 43 |
return array( |
| 44 |
'ELEMENTS' => __( 'ELEMENTS', 'yaymail' ), |
| 45 |
'SETTINGS' => __( 'SETTINGS', 'yaymail' ), |
| 46 |
'WooCommerceEmailCustomizer' => __( 'WooCommerce Email Customizer', 'yaymail' ), |
| 47 |
'BACKGROUNDCOLOR' => __( 'BACKGROUND COLOR', 'yaymail' ), |
| 48 |
'SelectColor' => __( 'Select Color', 'yaymail' ), |
| 49 |
'Basic' => __( 'Basic', 'yaymail' ), |
| 50 |
'General' => __( 'General', 'yaymail' ), |
| 51 |
'WooCommerce' => __( 'WooCommerce', 'yaymail' ), |
| 52 |
'DIRECTIONRTL' => __( 'DIRECTION RTL', 'yaymail' ), |
| 53 |
'CONTAINERWIDTHPX' => __( 'CONTAINER WIDTH (PX)', 'yaymail' ), |
| 54 |
'Emailwidthmustbe' => __( 'Email width must be 480px (min) - 900px (max)', 'yaymail' ), |
| 55 |
'Pleaseinputcontainerwidth' => __( 'Please input container width!', 'yaymail' ), |
| 56 |
'DISPLAYPAYMENTINSTRUCTIONANDDETAILS' => __( 'DISPLAY PAYMENT INSTRUCTION AND DETAILS', 'yaymail' ), |
| 57 |
'Yes' => __( 'Yes', 'yaymail' ), |
| 58 |
'No' => __( 'No', 'yaymail' ), |
| 59 |
'Onlyforcustomer' => __( 'Only for customer', 'yaymail' ), |
| 60 |
'SHOWPRODUCTIMAGE' => __( 'SHOW PRODUCT IMAGE', 'yaymail' ), |
| 61 |
'PRODUCTIMAGEPOSITION' => __( 'PRODUCT IMAGE POSITION', 'yaymail' ), |
| 62 |
'IMAGESIZE' => __( 'IMAGE SIZE', 'yaymail' ), |
| 63 |
'Thumbnail' => __( 'Thumbnail', 'yaymail' ), |
| 64 |
'Full' => __( 'Full', 'yaymail' ), |
| 65 |
'IMAGEHEIGHT' => __( 'IMAGE HEIGHT (PX)', 'yaymail' ), |
| 66 |
'Imageheightmustbe' => __( 'Image height must be 30px (min) - 300px (max)', 'yaymail' ), |
| 67 |
'Pleaseinputimgageheight' => __( 'Please input imgage height!', 'yaymail' ), |
| 68 |
'IMAGEWIDTH' => __( 'IMAGE WIDTH (PX)', 'yaymail' ), |
| 69 |
'Imagewidthmustbe' => __( 'Image width must be 30px (min) - 300px (max)', 'yaymail' ), |
| 70 |
'Pleaseinputimgagewidth' => __( 'Please input imgage width!', 'yaymail' ), |
| 71 |
'SHOWPRODUCTSKU' => __( 'SHOW PRODUCT SKU', 'yaymail' ), |
| 72 |
'SHOWPRODUCTDESCRIPTION' => __( 'SHOW PRODUCT DESCRIPTION', 'yaymail' ), |
| 73 |
'SHOWPRODUCTHYPERLINKS' => __( 'SHOW PRODUCT HYPERLINKS', 'yaymail' ), |
| 74 |
'SHOWPRODUCTREGULARPRICE' => __( 'SHOW PRODUCT REGULAR PRICE', 'yaymail' ), |
| 75 |
'SHOWPRODUCTITEMCOST' => __( 'SHOW PRODUCT ITEM COST', 'yaymail' ), |
| 76 |
'CUSTOMCSS' => __( 'CUSTOM CSS', 'yaymail' ), |
| 77 |
'Refresh' => __( 'Refresh', 'yaymail' ), |
| 78 |
'Cancel' => __( 'Cancel', 'yaymail' ), |
| 79 |
'Changeemailsubjectandformname' => __( 'Change email subject and form name', 'yaymail' ), |
| 80 |
'Clickhere' => __( 'Click here', 'yaymail' ), |
| 81 |
'Pleasecheckagain' => __( 'Please check again', 'yaymail' ), |
| 82 |
'Save' => __( 'Save', 'yaymail' ), |
| 83 |
'PleaserefreshpagetoapplyCustomCSS' => __( 'Please refresh page to apply Custom CSS. Make sure to save your changes before refreshing.', 'yaymail' ), |
| 84 |
'EmailSettings' => __( 'Email Settings', 'yaymail' ), |
| 85 |
'EMAILCONTENTBACKGROUNDCOLOR' => __( 'EMAIL CONTENT BACKGROUND COLOR', 'yaymail' ), |
| 86 |
'ResetDefault' => __( 'Reset default', 'yaymail' ), |
| 87 |
'TEXTLINKCOLOR' => __( 'TEXT LINK COLOR', 'yaymail' ), |
| 88 |
'EnableDisableTemplates' => __( 'Enable/Disable Templates', 'yaymail' ), |
| 89 |
'ResetTemplates' => __( 'Reset Templates', 'yaymail' ), |
| 90 |
'ResetTemplate' => __( 'Reset template', 'yaymail' ), |
| 91 |
'RESETALLTEMPLATESTODEFAULT' => __( 'RESET ALL TEMPLATES TO DEFAULT', 'yaymail' ), |
| 92 |
'Reset' => __( 'Reset', 'yaymail' ), |
| 93 |
'Yessure' => __( 'Yes, sure!', 'yaymail' ), |
| 94 |
'Allyoursavedtemplatewillberesettodefault' => __( 'All your saved template will be reset to default', 'yaymail' ), |
| 95 |
'ImportExportTemplates' => __( 'Import/Export Templates', 'yaymail' ), |
| 96 |
'EXPORT' => __( 'EXPORT', 'yaymail' ), |
| 97 |
'ExportTemplates' => __( 'Export Templates', 'yaymail' ), |
| 98 |
'IMPORTTEMPLATES' => __( 'IMPORT TEMPLATES', 'yaymail' ), |
| 99 |
'ChooseFile' => __( 'Choose File', 'yaymail' ), |
| 100 |
'Import' => __( 'Import', 'yaymail' ), |
| 101 |
'Nofilechosen' => __( 'No file chosen', 'yaymail' ), |
| 102 |
'BACKTOWORDPRESS' => __( 'BACK TO DASHBOARD', 'yaymail' ), |
| 103 |
'Sampleordertoshow' => __( 'Sample order to show', 'yaymail' ), |
| 104 |
'Shortcodes' => __( 'Shortcodes', 'yaymail' ), |
| 105 |
'generals' => __( 'generals', 'yaymail' ), |
| 106 |
'orderDetails' => __( 'order Details', 'yaymail' ), |
| 107 |
'shippings' => __( 'shippings', 'yaymail' ), |
| 108 |
'billings' => __( 'billings', 'yaymail' ), |
| 109 |
'Vendor' => __( 'Vendor', 'yaymail' ), |
| 110 |
'payments' => __( 'payments', 'yaymail' ), |
| 111 |
'newusers' => __( 'new users', 'yaymail' ), |
| 112 |
'resetpassword' => __( 'reset password', 'yaymail' ), |
| 113 |
'ORDERTAXES' => __( 'ORDER TAXES', 'yaymail' ), |
| 114 |
'CUSTOMORDERMETA' => __( 'CUSTOM ORDER META', 'yaymail' ), |
| 115 |
'AUTOMATEWOO' => __( 'AUTOMATEWOO', 'yaymail' ), |
| 116 |
'SendEmail' => __( 'Send Email', 'yaymail' ), |
| 117 |
'Emailaddressfortest' => __( 'Email address for test', 'yaymail' ), |
| 118 |
'Emailsentsuccessfully' => __( 'Yay! Email sent successfully.', 'yaymail' ), |
| 119 |
'Tosendemailstoinboxwerecommend' => __( 'To send emails to inbox, we recommend:', 'yaymail' ), |
| 120 |
'YaySMTPSimpleWPSMTPMail' => __( 'YaySMTP – Simple WP SMTP Mail', 'yaymail' ), |
| 121 |
'Details' => __( 'Details', 'yaymail' ), |
| 122 |
'FreeInstallNow' => __( 'Free Install Now', 'yaymail' ), |
| 123 |
'Areyousureyouwanttoleave' => __( 'Are you sure you want to leave?', 'yaymail' ), |
| 124 |
'Leave' => __( 'Leave', 'yaymail' ), |
| 125 |
'Copytemplate' => __( 'Import template from', 'yaymail' ), |
| 126 |
'Import' => __( 'Import', 'yaymail' ), |
| 127 |
'CopyFrom' => __( 'Copy From', 'yaymail' ), |
| 128 |
'Areyousureyouwanttoresetthistemplate' => __( 'Are you sure you want to reset this template?', 'yaymail' ), |
| 129 |
'Allchangesyoumadewontbesaved' => __( 'All changes you made won\'t be saved.', 'yaymail' ), |
| 130 |
'Preview' => __( 'Preview', 'yaymail' ), |
| 131 |
'Emailpreview' => __( 'Email preview', 'yaymail' ), |
| 132 |
'Desktoppreview' => __( 'Desktop preview', 'yaymail' ), |
| 133 |
'Mobilepreview' => __( 'Mobile preview', 'yaymail' ), |
| 134 |
'UpgradeTitle' => __( 'Yay! You\'ve made the right choice!', 'yaymail' ), |
| 135 |
'GetYayMailPro' => __( 'Get YayMail Pro', 'yaymail' ), |
| 136 |
'Unlockfullfeaturesandpremiumsupport' => __( 'Unlock full features and premium support', 'yaymail' ), |
| 137 |
'Undo&Redo' => __( 'Undo & Redo', 'yaymail' ), |
| 138 |
'Getrecenteditingactionsandrevisions' => __( 'Get recent editing actions and revisions', 'yaymail' ), |
| 139 |
'Compatiblewith20+third-partyplugins' => __( 'Compatible with 20+ third-party plugins', 'yaymail' ), |
| 140 |
'CustomOrderStatus' => __( 'Custom Order Status', 'yaymail' ), |
| 141 |
'WooCommerceShipmentTracking' => __( 'WooCommerce Shipment Tracking', 'yaymail' ), |
| 142 |
'CheckoutFieldEditor' => __( 'Checkout Field Editor', 'yaymail' ), |
| 143 |
'WPML,Polylang,TranslatePress,and more!' => __( 'WPML, Polylang, TranslatePress, and more!', 'yaymail' ), |
| 144 |
'BuyNow' => __( 'Buy Now', 'yaymail' ), |
| 145 |
'SaveTemplate' => __( 'Save template?', 'yaymail' ), |
| 146 |
'NoDontSave' => __( 'No, don\'t save', 'yaymail' ), |
| 147 |
'DoYouWantToSaveBeforeMovingToAnotherTemplate' => __( 'Do you want to save before moving to another template?', 'yaymail' ), |
| 148 |
'EmailToShow' => __( 'Email to show', 'yaymail' ), |
| 149 |
'ThisFeatureIsAvailableInYayMailPro' => __( 'This feature is available in YayMail Pro', 'yaymail' ), |
| 150 |
'InputText' => __( 'Input text', 'yaymail' ), |
| 151 |
'ImportText' => __( 'Import text', 'yaymail' ), |
| 152 |
'TextPadding' => __( 'Text padding', 'yaymail' ), |
| 153 |
'ImportPathUrl' => __( 'Import path url', 'yaymail' ), |
| 154 |
'RefreshPage' => __( 'Refresh page?', 'yaymail' ), |
| 155 |
'GoPro' => __( 'Go Pro', 'yaymail' ), |
| 156 |
'Blocks' => __( 'Blocks', 'yaymail' ), |
| 157 |
'Elements' => __( 'Elements', 'yaymail' ), |
| 158 |
'History' => __( 'History', 'yaymail' ), |
| 159 |
'HappyWithYayMail' => __( 'Happy with YayMail', 'yaymail' ), |
| 160 |
'HappyWithYayMailReviewText' => __( 'Are you happy with YayMail? You can give a review to motivate our developers ', 'yaymail' ), |
| 161 |
'ReviewModalText' => __( 'All your saved template will be reset to default.', 'yaymail' ), |
| 162 |
'AlreadyDid' => __( 'Already Did', 'yaymail' ), |
| 163 |
'RateNow' => __( 'Rate Now', 'yaymail' ), |
| 164 |
'Padding' => __( 'Padding', 'yaymail' ), |
| 165 |
'Top' => __( 'Top', 'yaymail' ), |
| 166 |
'Left' => __( 'Left', 'yaymail' ), |
| 167 |
'Right' => __( 'Right', 'yaymail' ), |
| 168 |
'Bottom' => __( 'Bottom', 'yaymail' ), |
| 169 |
'BackgroundColor' => __( 'Background color', 'yaymail' ), |
| 170 |
'TitleColor' => __( 'Title color', 'yaymail' ), |
| 171 |
'TextColor' => __( 'Text color', 'yaymail' ), |
| 172 |
'BorderColor' => __( 'Border color', 'yaymail' ), |
| 173 |
'FontFamily' => __( 'Font family', 'yaymail' ), |
| 174 |
'OrderItemTitle' => __( 'Order item title', 'yaymail' ), |
| 175 |
'ProductTitle' => __( 'Product title', 'yaymail' ), |
| 176 |
'CostTitle' => __( 'Cost title', 'yaymail' ), |
| 177 |
'QuantityTitle' => __( 'Quantity title', 'yaymail' ), |
| 178 |
'PriceTitle' => __( 'Price title', 'yaymail' ), |
| 179 |
'SubtotalTitle' => __( 'Order item title', 'yaymail' ), |
| 180 |
'DiscountTitle' => __( 'Product title', 'yaymail' ), |
| 181 |
'CostTitle' => __( 'Cost title', 'yaymail' ), |
| 182 |
'PaymentMethodTitle' => __( 'Quantity title', 'yaymail' ), |
| 183 |
'TotalTitle' => __( 'Price title', 'yaymail' ), |
| 184 |
'OrderFullyRefundedTitle' => __( 'Order fully refunded title', 'yaymail' ), |
| 185 |
'NoteTitle' => __( 'Note title', 'yaymail' ), |
| 186 |
'ExpiresTitle' => __( 'Expires title', 'yaymail' ), |
| 187 |
'DownloadTitle' => __( 'Download title', 'yaymail' ), |
| 188 |
'HeaderTitle' => __( 'Header title', 'yaymail' ), |
| 189 |
'Title' => __( 'Title', 'yaymail' ), |
| 190 |
'TitleSize' => __( 'Title size', 'yaymail' ), |
| 191 |
'Subtitle' => __( 'Subtitle', 'yaymail' ), |
| 192 |
'SubtitleSize' => __( 'Subtitle size', 'yaymail' ), |
| 193 |
'BillingTitle' => __( 'Billing title', 'yaymail' ), |
| 194 |
'ShippingTitle' => __( 'Shipping title', 'yaymail' ), |
| 195 |
'Type' => __( 'Type', 'yaymail' ), |
| 196 |
'Align' => __( 'Align', 'yaymail' ), |
| 197 |
'BorderWidth' => __( 'Border width', 'yaymail' ), |
| 198 |
'BorderStyle' => __( 'Border style', 'yaymail' ), |
| 199 |
'Solid' => __( 'Solid', 'yaymail' ), |
| 200 |
'Dashed' => __( 'Dashed', 'yaymail' ), |
| 201 |
'Dotted' => __( 'Dotted', 'yaymail' ), |
| 202 |
'BorderRadius' => __( 'Border radius', 'yaymail' ), |
| 203 |
'ProductType' => __( 'Product type', 'yaymail' ), |
| 204 |
'SortedBy' => __( 'Sorted by', 'yaymail' ), |
| 205 |
'Categories' => __( 'Categories', 'yaymail' ), |
| 206 |
'Tags' => __( 'Tags', 'yaymail' ), |
| 207 |
'Products' => __( 'Products', 'yaymail' ), |
| 208 |
'NumberOfShowingProducts' => __( 'Number of showing products', 'yaymail' ), |
| 209 |
'ViewProducts' => __( 'View products', 'yaymail' ), |
| 210 |
'Close' => __( 'Close', 'yaymail' ), |
| 211 |
'NoProductFound' => __( 'NoProductFound', 'yaymail' ), |
| 212 |
'Image' => __( 'Image', 'yaymail' ), |
| 213 |
'Name' => __( 'Name', 'yaymail' ), |
| 214 |
'Price' => __( 'Price', 'yaymail' ), |
| 215 |
'ChangeVideo' => __( 'Change video', 'yaymail' ), |
| 216 |
'Newest' => __( 'Newest', 'yaymail' ), |
| 217 |
'OnSale' => __( 'On sale', 'yaymail' ), |
| 218 |
'Featured' => __( 'Featured', 'yaymail' ), |
| 219 |
'CategorySelections' => __( 'Category selections', 'yaymail' ), |
| 220 |
'TagSelections' => __( 'Tag selections', 'yaymail' ), |
| 221 |
'ProductSelections' => __( 'Product selections', 'yaymail' ), |
| 222 |
'None' => __( 'None', 'yaymail' ), |
| 223 |
'NameA-Z' => __( 'Name A-Z', 'yaymail' ), |
| 224 |
'NameZ-A' => __( 'Name Z-A', 'yaymail' ), |
| 225 |
'AscendingPrice' => __( 'Ascending price', 'yaymail' ), |
| 226 |
'DescendingPrice' => __( 'Descending price', 'yaymail' ), |
| 227 |
'Random' => __( 'Random', 'yaymail' ), |
| 228 |
'ChangeImage' => __( 'Change image', 'yaymail' ), |
| 229 |
'ImageURL' => __( 'Image URL', 'yaymail' ), |
| 230 |
'URL' => __( 'URL', 'yaymail' ), |
| 231 |
'Width' => __( 'Width', 'yaymail' ), |
| 232 |
'Duplicate' => __( 'Duplicate', 'yaymail' ), |
| 233 |
'CopyThisElementTo' => __( 'Copy this element to', 'yaymail' ), |
| 234 |
'Remove' => __( 'Remove', 'yaymail' ), |
| 235 |
'YesSure' => __( 'Yes, sure!', 'yaymail' ), |
| 236 |
'OpenMailbox' => __( 'Open mailbox', 'yaymail' ), |
| 237 |
'CopyTemplateElement' => __( 'Copy template element', 'yaymail' ), |
| 238 |
'CopyTo' => __( 'Copy to', 'yaymail' ), |
| 239 |
'CopyElement' => __( 'Copy Element', 'yaymail' ), |
| 240 |
'ImportTemplate' => __( 'Import template', 'yaymail' ), |
| 241 |
'LoadingProducts' => __( 'Loading products', 'yaymail' ), |
| 242 |
'Blank' => __( 'Blank', 'yaymail' ), |
| 243 |
'SendTestEmail' => __( 'Send test email', 'yaymail' ), |
| 244 |
'SelectTemplate' => __( 'Select template', 'yaymail' ), |
| 245 |
'AreYouSure' => __( 'Are you sure?', 'yaymail' ), |
| 246 |
'Search' => __( 'Search', 'yaymail' ), |
| 247 |
'Loading' => __( 'Loading', 'yaymail' ), |
| 248 |
'ShowingItems' => __( 'Showing items', 'yaymail' ), |
| 249 |
'TopContent' => __( 'Top content', 'yaymail' ), |
| 250 |
'ProductPriceColor' => __( 'Product price color', 'yaymail' ), |
| 251 |
'ProductOriginalPriceColor' => __( 'Product original price color', 'yaymail' ), |
| 252 |
'BuyText' => __( 'Buy text', 'yaymail' ), |
| 253 |
'BuyBackgroundColor' => __( 'Buy background color', 'yaymail' ), |
| 254 |
'BuyTextColor' => __( 'Buy text color', 'yaymail' ), |
| 255 |
'NumberOfProductsPerRow' => __( 'Number of products per row', 'yaymail' ), |
| 256 |
'Content' => __( 'Content', 'yaymail' ), |
| 257 |
'ButtonText' => __( 'Button text', 'yaymail' ), |
| 258 |
'ButtonUrl' => __( 'Button url', 'yaymail' ), |
| 259 |
'ButtonBackgroundColor' => __( 'Button background color', 'yaymail' ), |
| 260 |
'ButtonTextColor' => __( 'Button text color', 'yaymail' ), |
| 261 |
'ContentWidth' => __( 'Content width', 'yaymail' ), |
| 262 |
'ContentAlign' => __( 'Content align', 'yaymail' ), |
| 263 |
'BackgroundImage' => __( 'Background image', 'yaymail' ), |
| 264 |
'BackgroundRepeat' => __( 'Background repeat', 'yaymail' ), |
| 265 |
'ButtonAlign' => __( 'Button align', 'yaymail' ), |
| 266 |
'FontSize' => __( 'Font size', 'yaymail' ), |
| 267 |
'Height' => __( 'Height', 'yaymail' ), |
| 268 |
'Weight' => __( 'Weight', 'yaymail' ), |
| 269 |
'LineHeight' => __( 'Line height', 'yaymail' ), |
| 270 |
'LineColor' => __( 'Line color', 'yaymail' ), |
| 271 |
'LineType' => __( 'Line type', 'yaymail' ), |
| 272 |
'WcHookOrderItem' => __( 'Wc hook order item', 'yaymail' ), |
| 273 |
'IconSpacing' => __( 'Icon spacing', 'yaymail' ), |
| 274 |
'StylesTheme' => __( 'Styles theme', 'yaymail' ), |
| 275 |
'TrackingDetails' => __( 'Tracking details', 'yaymail' ), |
| 276 |
'ImageOverlay' => __( 'Image overlay', 'yaymail' ), |
| 277 |
'VideoUrl' => __( 'Video url', 'yaymail' ), |
| 278 |
'ApplyToAllTemplates' => __( 'Apply to all templates', 'yaymail' ), |
| 279 |
'SetAsDefault' => __( 'Set as default', 'yaymail' ), |
| 280 |
'BackgroundPosition' => __( 'Background position', 'yaymail' ), |
| 281 |
'Position' => __( 'Position', 'yaymail' ), |
| 282 |
'Default' => __( 'Default', 'yaymail' ), |
| 283 |
'Center' => __( 'Center', 'yaymail' ), |
| 284 |
'Custom' => __( 'Custom', 'yaymail' ), |
| 285 |
'Auto' => __( 'Auto', 'yaymail' ), |
| 286 |
'Cover' => __( 'Cover', 'yaymail' ), |
| 287 |
'Contain' => __( 'Contain', 'yaymail' ), |
| 288 |
'Column' => __( 'Column', 'yaymail' ), |
| 289 |
'ColumnWidth' => __( 'Column width', 'yaymail' ), |
| 290 |
'HTMLCode' => __( 'HTML code', 'yaymail' ), |
| 291 |
'ImportHTMLCode' => __( 'Import HTML code', 'yaymail' ), |
| 292 |
'SelectColumnNumber' => __( 'Select column number', 'yaymail' ), |
| 293 |
'Copy' => __( 'Copy', 'yaymail' ), |
| 294 |
'CopyColumn' => __( 'Copy column', 'yaymail' ), |
| 295 |
'Socials' => __( 'Socials', 'yaymail' ), |
| 296 |
'BackgroundSize' => __( 'Background size', 'yaymail' ), |
| 297 |
'AddSocial' => __( 'Add social', 'yaymail' ), |
| 298 |
'SelectSocial' => __( 'Select social', 'yaymail' ), |
| 299 |
'Update' => __( 'Update', 'yaymail' ), |
| 300 |
'SelectButtonNumber' => __( 'Select button number', 'yaymail' ), |
| 301 |
'SelectColumnNumber' => __( 'Select column number', 'yaymail' ), |
| 302 |
'TranslateIntegrationPriority' => __( 'Translate Integration Priority', 'yaymail' ), |
| 303 |
'SearchElement' => __( 'Search element', 'yaymail' ), |
| 304 |
'RecommendedAddonText' => __( 'This email template can be fully customized with YayMail Premium Addon.', 'yaymail' ), |
| 305 |
'UnavailableAddonBeforeText' => __( 'This email template is unavailable at the moment.', 'yaymail' ), |
| 306 |
'UnavailableAddonAfterText' => __( 'to see if it can be customized with', 'yaymail' ), |
| 307 |
'ContactUs' => __( 'Contact us', 'yaymail' ), |
| 308 |
'EmailHeading' => __( 'Email heading', 'yaymail' ), |
| 309 |
'ClearAll' => __( 'Clear all', 'yaymail' ), |
| 310 |
'YouHaveNoRevision' => __( 'You have no revision.', 'yaymail' ), |
| 311 |
'SavedBy' => __( 'saved by', 'yaymail' ), |
| 312 |
'DisableThisTemplate' => __( 'Disable this template', 'yaymail' ), |
| 313 |
'EnableThisTemplate' => __( 'Enable this template', 'yaymail' ), |
| 314 |
'MoveUp' => __( 'Move up', 'yaymail' ), |
| 315 |
'MoveDown' => __( 'Move down', 'yaymail' ), |
| 316 |
'Info' => __( 'Info', 'yaymail' ), |
| 317 |
'Success' => __( 'Success', 'yaymail' ), |
| 318 |
'Warning' => __( 'Warning', 'yaymail' ), |
| 319 |
'Danger' => __( 'Danger', 'yaymail' ), |
| 320 |
'Undo' => __( 'Undo', 'yaymail' ), |
| 321 |
'Redo' => __( 'Redo', 'yaymail' ), |
| 322 |
'PleaseSaveBeforeSendTest' => __( 'Please save before send test', 'yaymail' ), |
| 323 |
'ChangesYouMadeWillBeLost' => __( 'Changes you made will be lost.', 'yaymail' ), |
| 324 |
'Small' => __( 'Small', 'yaymail' ), |
| 325 |
'Medium' => __( 'Medium', 'yaymail' ), |
| 326 |
'Large' => __( 'Large', 'yaymail' ), |
| 327 |
'XL' => __( 'XL', 'yaymail' ), |
| 328 |
'XXL' => __( 'XXL', 'yaymail' ), |
| 329 |
'Button' => __( 'Button', 'yaymail' ), |
| 330 |
'Border' => __( 'Border', 'yaymail' ), |
| 331 |
'Before' => __( 'Before', 'yaymail' ), |
| 332 |
'After' => __( 'After', 'yaymail' ), |
| 333 |
'ProductImage' => __( 'Product image', 'yaymail' ), |
| 334 |
'ProductName' => __( 'Product name', 'yaymail' ), |
| 335 |
'ProductPrice' => __( 'Product price', 'yaymail' ), |
| 336 |
'ProductOriginalPrice' => __( 'Product original price', 'yaymail' ), |
| 337 |
'ProductPrice' => __( 'Product price', 'yaymail' ), |
| 338 |
'BuyButton' => __( 'Buy button', 'yaymail' ), |
| 339 |
'Edit' => __( 'Edit', 'yaymail' ), |
| 340 |
'NoRepeat' => __( 'No-repeat', 'yaymail' ), |
| 341 |
'Repeat' => __( 'Repeat', 'yaymail' ), |
| 342 |
'RepeatX' => __( 'Repeat-X', 'yaymail' ), |
| 343 |
'RepeatY' => __( 'Repeat-Y', 'yaymail' ), |
| 344 |
'SolidDark' => __( 'Solid Dark', 'yaymail' ), |
| 345 |
'Colorful' => __( 'Colorful', 'yaymail' ), |
| 346 |
'LineDark' => __( 'Line Dark', 'yaymail' ), |
| 347 |
'SolidLight' => __( 'Solid Light', 'yaymail' ), |
| 348 |
'LineLight' => __( 'Line Light', 'yaymail' ), |
| 349 |
'Color' => __( 'Color', 'yaymail' ), |
| 350 |
'MediaImageLibrary' => __( 'Media Image Library', 'yaymail' ), |
| 351 |
'SelectAMedia' => __( 'Select a media', 'yaymail' ), |
| 352 |
'UseThisImage' => __( 'Use this image', 'yaymail' ), |
| 353 |
'UseThisVideo' => __( 'Use this video', 'yaymail' ), |
| 354 |
'ACTIONS' => __( 'ACTIONS', 'yaymail' ), |
| 355 |
'REVISIONS' => __( 'REVISIONS', 'yaymail' ), |
| 356 |
'SaveAnyway' => __( 'Save anyway', 'yaymail' ), |
| 357 |
'InvalidConditionText' => __( 'There are invalid values in your conditions, they will be removed when you proceed to save', 'yaymail' ), |
| 358 |
); |
| 359 |
} |
| 360 |
} |
| 361 |
|