var breeze_prefetch = {"local_url":"https:\/\/penisizexl.co","ignore_remote_prefetch":"1","ignore_list":["\/cart\/","\/checkout\/","\/my-account\/","wp-admin","wp-login.php"]};
document.addEventListener("DOMContentLoaded", function() {
// Function to check if localStorage is available
function localStorageAvailable() {
try {
var test = "__localStorage_test__";
localStorage.setItem(test, test);
localStorage.removeItem(test);
return true;
} catch (e) {
return false;
}
}
var exactTimeGlobal = null;
if (localStorageAvailable()) {
// Check if exactTimeGlobal is already stored in localStorage
exactTimeGlobal = localStorage.getItem('exactTimeGlobal');
}
// Common attributes and styles for hidden fields
var commonAttributes = {
'aria-hidden': "true", // Accessibility
tabindex: "-1", // Accessibility
autocomplete: "off", // Prevent browser autofill
class: "maspik-field"
};
var hiddenFieldStyles = {
position: "absolute",
left: "-99999px"
};
// Function to create a hidden field
function createHiddenField(attributes, styles) {
var field = document.createElement("input");
for (var attr in attributes) {
field.setAttribute(attr, attributes[attr]);
}
for (var style in styles) {
field.style[style] = styles[style];
}
return field;
}
// Function to add hidden fields to the form if they do not already exist
function addHiddenFields(formSelector, fieldClass) {
document.querySelectorAll(formSelector).forEach(function(form) {
if (!form.querySelector('.maspik-field')) {
if ("1") {
var honeypot = createHiddenField({
type: "text",
name: "full-name-maspik-hp",
id: "full-name-maspik-hp",
class: fieldClass + " maspik-field",
placeholder: "Leave this field empty"
}, hiddenFieldStyles);
form.appendChild(honeypot);
}
if (null) {
var currentYearField = createHiddenField({
type: "text",
name: "Maspik-currentYear",
id: "Maspik-currentYear",
class: fieldClass + " maspik-field"
}, hiddenFieldStyles);
form.appendChild(currentYearField);
}
if (null) {
var exactTimeField = createHiddenField({
type: "text",
name: "Maspik-exactTime",
id: "Maspik-exactTime",
class: fieldClass + " maspik-field"
}, hiddenFieldStyles);
form.appendChild(exactTimeField);
}
}
});
}
// Add hidden fields to various form types
//Not suported ninja form
addHiddenFields('form.brxe-brf-pro-forms', 'brxe-brf-pro-forms-field-text');
//formidable
addHiddenFields('form.frm-show-form', 'frm_form_field');
addHiddenFields('form.elementor-form', 'elementor-field-textual');
// Function to set the current year and exact time in the appropriate fields
function setDateFields() {
var currentYear = new Date().getFullYear();
if (!exactTimeGlobal) {
exactTimeGlobal = Math.floor(Date.now() / 1000);
if (localStorageAvailable()) {
localStorage.setItem('exactTimeGlobal', exactTimeGlobal);
}
}
document.querySelectorAll('input[name="Maspik-currentYear"]').forEach(function(input) {
input.value = currentYear;
});
document.querySelectorAll('input[name="Maspik-exactTime"]').forEach(function(input) {
input.value = exactTimeGlobal;
});
}
// Initial call to set date fields
setDateFields();
// Use MutationObserver to detect AJAX form reloads and reset hidden fields
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
if (mutation.type === 'childList' && mutation.addedNodes.length) {
setTimeout(function() {
setDateFields();
}, 500);
}
});
});
observer.observe(document.body, { childList: true, subtree: true });
});
// Parse the URL
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
// Give the URL parameters variable names
var c_utm_source = getParameterByName('utm_source');
var c_content_site = getParameterByName('content_site');
var c_exone = getParameterByName('exone');
var c_utm_medium = getParameterByName('utm_medium');
var c_gclid = getParameterByName('gclid');
var c_fbclid = getParameterByName('fbclid');
var c_utm_campaign = getParameterByName('utm_campaign');
var c_AgId = getParameterByName('AgId');
var c_utm_term = getParameterByName('utm_term');
var c_AdPos = getParameterByName('AdPos');
var c_utm_content = getParameterByName('utm_content');
var c_device = getParameterByName('device');
var c_GeoLoc = getParameterByName('GeoLoc');
var c_lp = getParameterByName('lp');
function getGa4MeasurementIdsFromGtag() {
const measurementIds = [];
if (typeof gtag !== "undefined") {
const scripts = document.getElementsByTagName("script");
Array.from(scripts).forEach((script) => {
const match = script.src.match(/id=([^&]+)/);
if (match) {
const id = match[1];
if (id.startsWith('G-') && !measurementIds.includes(id)) {
measurementIds.push(id);
}
}
});
}
return measurementIds;
}
function get_ga_clientid(retryCount = 0) {
var cookie = {};
document.cookie.split(";").forEach(function(el) {
var splitCookie = el.split("=");
var key = splitCookie[0].trim();
var value = splitCookie[1];
cookie[key] = value;
});
if (typeof cookie["_ga"] != "undefined") {
document.cookie = "cc_ga4_cid=" + cookie["_ga"].substring(6);
} else if (retryCount < 5) {
setTimeout(function() {
get_ga_clientid(retryCount + 1);
}, 200);
} else {
console.log("Leader: Max retries reached for ga4_cid.");
createCookie("cc_ga4_cid", "", 7);
}
}
var user_set_tid = ""; // client gave tid (google analytics Measurement id)
//If the user set the MeasurementID, it is set without delay
if (typeof user_set_tid !== 'undefined' && user_set_tid !== "") {
c_ga4_tid = user_set_tid;
createCookie("cc_ga4_tid", c_ga4_tid, 7); // Set cookie
console.log("Leader: MeasurementID implemented via Leader Plugin.");
}
//All Google and FB analytics set to launch after a small delay
setTimeout(function() {
if (typeof ga != "undefined") {
if (typeof ga.getAll != "undefined") {
var c_cid = ga.getAll()[0].get("clientId");
} // Set cookie}
} else {
var c_cid = "";
}
if (typeof gtag === "function") {
if (typeof user_set_tid !== 'undefined' && user_set_tid !== "") {
} else {
var ga4_tid = getGa4MeasurementIdsFromGtag();
c_ga4_tid = ga4_tid[ga4_tid.length - 1];
}
get_ga_clientid();
} else {
if (typeof user_set_tid !== 'undefined' && user_set_tid !== "") {
} else {
console.log("GTAG Not Found on Page. If you believe you have GTAG installed for GA4, it is likely not a standard implementation. In this case, please manually enter the measurement ID in the Advanced tab of the Leader plugin settings.");
var c_ga4_tid = "";
}
function checkCookie(name) {
var cookieArr = document.cookie.split(";");
for (var i = 0; i < cookieArr.length; i++) {
var cookiePair = cookieArr[i].split("=");
if (name == cookiePair[0].trim()) {
return true; // Cookie exists
}
}
return false; // Cookie does not exist
}
if (checkCookie('_ga')) {
get_ga_clientid();
} else {
var c_ga4_cid = "";
createCookie("cc_ga4_cid", c_ga4_cid, 7);
}
}
function checkFbqState(retries, delay) {
if (typeof fbq.getState != 'undefined') {
// fbq.getState is a function, so call it
c_fbq_account = fbq.getState().pixels[0]["id"];
createCookie("cc_fbq_account", c_fbq_account, 7);
} else if (retries > 0) {
// Retry after a delay
setTimeout(function() {
checkFbqState(retries - 1, delay);
}, delay);
} else {
c_fbq_account = "";
createCookie("cc_fbq_account", c_fbq_account, 7);
// Handle the case where fbq.getState never becomes available
console.log("Leader: fbq.getState is not available after multiple attempts");
}
}
function get_fbq_client(retryCount = 0) {
var cookie = {};
document.cookie.split(";").forEach(function(el) {
var splitCookie = el.split("=");
var key = splitCookie[0].trim();
var value = splitCookie[1];
cookie[key] = value;
});
if (typeof cookie["_fbp"] != "undefined") {
document.cookie = "cc_fbq_client=" + cookie["_fbp"];
} else if (retryCount < 5) {
setTimeout(function() {
get_fbq_client(retryCount + 1);
}, 150);
} else {
console.log("Leader: Max retries reached. _fbp cookie not found.");
createCookie("cc_fbq_client", "", 7);
}
}
if (typeof fbq != "undefined") {
get_fbq_client();
checkFbqState(5, 150);
} else {
var c_fbq_account = "";
var c_fbq_client = "";
createCookie("cc_fbq_account", c_fbq_account, 7);
createCookie("cc_fbq_client", c_fbq_client, 7); // Set cookie
}
createCookie("cc_cid", c_cid, 5);
//This code checks if the cookie already exists, and if it doesn't, it creates it (In case the user has not put in the Measurement ID in the advanced tab)
if (document.cookie.indexOf('cc_ga4_tid') != -1) {} else {
createCookie("cc_ga4_tid", c_ga4_tid, 7); // Set cookie
}
}, 1000);
var c_fbq_time = Date.now();
createCookie('cc_fbq_time', c_fbq_time, 5); // Set cookie
if (c_utm_source) {
createCookie('cc_utm_source', c_utm_source, 5); // Set cookie
createCookie('cc_content_site', c_content_site, 5); // Set cookie
createCookie('cc_exone', c_exone, 5); // Set cookie
createCookie('cc_utm_medium', c_utm_medium, 5); // Set cookie
createCookie('cc_gclid', c_gclid, 5); // Set cookie
createCookie('cc_fbclid', c_fbclid, 5); // Set cookie
createCookie('cc_utm_campaign', c_utm_campaign, 5); // Set cookie
createCookie('cc_AgId', c_AgId, 5); // Set cookie
createCookie('cc_utm_term', c_utm_term, 5); // Set cookie
createCookie('cc_AdPos', c_AdPos, 5); // Set cookie
createCookie('cc_utm_content', c_utm_content, 5); // Set cookie
createCookie('cc_device', c_device, 5); // Set cookie
createCookie('cc_GeoLoc', c_GeoLoc, 5); // Set cookie
createCookie('cc_lp', c_lp, 5); // Set cookie
console.log(readCookie('cc_utm_source'));
} else {
var refurl = document.createElement('a');
refurl.href = document.referrer;
//return url.hostname;
var refhostname = refurl.hostname;
// if the document refferer is not our domain insert value in last_refferer
if ((refhostname) != (window.location.hostname)) {
var hostname_nowwww = refhostname.replace(/^www./, "");
var last_referrer = hostname_nowwww;
} else {
var last_referrer = "";
}
}
// now get cookies variables and give theme variable names to use later
var gt_cc_utm_source = readCookie('cc_utm_source');
var gt_cc_utm_medium = readCookie('cc_utm_medium') ? readCookie('cc_utm_medium') : "";
var gt_cc_utm_campaign = readCookie('cc_utm_campaign') ? readCookie('cc_utm_campaign') : "";
var gt_cc_AgId = readCookie('cc_AgId') ? readCookie('cc_AgId') : "";
var gt_cc_utm_term = readCookie('cc_utm_term') ? readCookie('cc_utm_term') : "";
var gt_cc_AdPos = readCookie('cc_AdPos') ? readCookie('cc_AdPos') : "";
var gt_cc_utm_content = readCookie('cc_utm_content') ? readCookie('cc_utm_content') : "";
var gt_cc_exone = readCookie('cc_exone') ? readCookie('cc_exone') : "";
var gt_cc_gclid = readCookie('cc_gclid') ? readCookie('cc_gclid') : "";
var gt_cc_fbclid = readCookie('cc_fbclid') ? readCookie('cc_fbclid') : "";
var gt_cc_cid = readCookie('cc_cid') ? readCookie('cc_cid') : "";
var gt_cc_device = readCookie('cc_device') ? readCookie('cc_device') : "";
var gt_cc_GeoLoc = readCookie('cc_GeoLoc') ? readCookie('cc_GeoLoc') : "";
var gt_cc_content_site = readCookie('cc_content_site') ? readCookie('cc_content_site') : "";
var gt_cc_lp = readCookie('cc_lp') ? readCookie('cc_lp') : "";
if (gt_cc_utm_source) {
} else {
//console.log('no utm now checking for last_referrer');
if (last_referrer) {
//console.log('utm_source from reff now');
createCookie('cc_utm_source', last_referrer, 5); // Set cookie
gt_cc_utm_source = readCookie('cc_utm_source');
} else {
gt_cc_utm_source = "direct";
//console.log ("did not find any refferer so call it direct");
//console.log("utm_source:" + gt_cc_utm_source);
}
}
var pageInfoDataFromPhp = {"multisiteCrmId":"0","ClientID":"25614","TenantID":"318","projectID":"0","pageId":"452","projectTypeID":"0","pageUrl":"http:\/\/penisizexl.co\/%D8%B9%D9%85%D9%84%D9%8A%D8%A9-%D8%A5%D9%86%D9%87%D8%A7%D8%A1-%D8%A7%D9%84%D8%B7%D9%84%D8%A8\/","requestUrlToCrm":"https:\/\/api.fixdigital.co.il\/add-view-wordpress","integrationsScriptsUrl":"https:\/\/api.fixdigital.co.il\/google-analytics-wp","currReferer":null,"propertyId":"0","propertyTypeId":"0","system":"0","version":"2.35.1"};
var formPageDataFromPhp = {"pageId":"452","formPageUrl":"http:\/\/penisizexl.co\/%D8%B9%D9%85%D9%84%D9%8A%D8%A9-%D8%A5%D9%86%D9%87%D8%A7%D8%A1-%D8%A7%D9%84%D8%B7%D9%84%D8%A8\/","getParams":[],"referrer":null,"sendLeadsOnlyFromForms":[]};
var dataForPhoneReplacingScriptFromPhp = {"urlToGetPhone":"https:\/\/www.fixdigital.co.il\/api\/phones\/forchannel\/","listSelectors":{"labelsAndLinks":[],"onlyLinks":[]},"disableReplacing":""};
var woo_variation_swatches_options = {"show_variation_label":"","clear_on_reselect":"","variation_label_separator":":","is_mobile":"","show_variation_stock":"","stock_label_threshold":"5","cart_redirect_after_add":"yes","enable_ajax_add_to_cart":"yes","cart_url":"https:\/\/penisizexl.co\/checkout\/","is_cart":""};
var wc_order_attribution = {"params":{"lifetime":1.0e-5,"session":30,"base64":false,"ajaxurl":"https:\/\/penisizexl.co\/wp-admin\/admin-ajax.php","prefix":"wc_order_attribution_","allowTracking":true},"fields":{"source_type":"current.typ","referrer":"current_add.rf","utm_campaign":"current.cmp","utm_source":"current.src","utm_medium":"current.mdm","utm_content":"current.cnt","utm_id":"current.id","utm_term":"current.trm","utm_source_platform":"current.plt","utm_creative_format":"current.fmt","utm_marketing_tactic":"current.tct","session_entry":"current_add.ep","session_start_time":"current_add.fd","session_pages":"session.pgs","session_count":"udata.vst","user_agent":"udata.uag"}};
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"field":["\u05e9\u05d3\u05d4"],"Please select a %s":["\u05d9\u05e9 \u05dc\u05d1\u05d7\u05d5\u05e8 %s"],"Select a %s":["\u05d9\u05e9 \u05dc\u05d1\u05d7\u05d5\u05e8 %s"],"+ Add %s":["+ \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 %s"],"Please select a valid option":["\u05d9\u05e9 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05ea\u05e7\u05e4\u05d4"],"Calculate shipping for your location":["\u05dc\u05d7\u05e9\u05d1 \u05d0\u05ea \u05d4\u05de\u05e9\u05dc\u05d5\u05d7 \u05dc\u05de\u05d9\u05e7\u05d5\u05dd \u05e9\u05dc\u05da"],"Something went wrong when placing the order. Check your account's order history or your email for order updates before retrying.":["\u05de\u05e9\u05d4\u05d5 \u05d4\u05e9\u05ea\u05d1\u05e9 \u05d1\u05e2\u05ea \u05d1\u05d9\u05e6\u05d5\u05e2 \u05d4\u05d4\u05d6\u05de\u05e0\u05d4. \u05dc\u05e4\u05e0\u05d9 \u05d1\u05d9\u05e6\u05d5\u05e2 \u05e0\u05d9\u05e1\u05d9\u05d5\u05df \u05e0\u05d5\u05e1\u05e3, \u05d9\u05e9 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05d4\u05d9\u05e1\u05d8\u05d5\u05e8\u05d9\u05d9\u05ea \u05d4\u05d4\u05d6\u05de\u05e0\u05d5\u05ea \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05d0\u05d5 \u05d0\u05ea \u05ea\u05d9\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05e8 \u05db\u05d3\u05d9 \u05dc\u05d7\u05e4\u05e9 \u05e2\u05d3\u05db\u05d5\u05e0\u05d9 \u05d4\u05d6\u05de\u05e0\u05d5\u05ea."],"Something went wrong when placing the order. Check your email for order updates before retrying.":["\u05de\u05e9\u05d4\u05d5 \u05d4\u05e9\u05ea\u05d1\u05e9 \u05d1\u05e2\u05ea \u05d1\u05d9\u05e6\u05d5\u05e2 \u05d4\u05d4\u05d6\u05de\u05e0\u05d4. \u05dc\u05e4\u05e0\u05d9 \u05d1\u05d9\u05e6\u05d5\u05e2 \u05e0\u05d9\u05e1\u05d9\u05d5\u05df \u05e0\u05d5\u05e1\u05e3, \u05d9\u05e9 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05ea\u05d9\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\u05e8 \u05db\u05d3\u05d9 \u05dc\u05d7\u05e4\u05e9 \u05e2\u05d3\u05db\u05d5\u05e0\u05d9 \u05d4\u05d6\u05de\u05e0\u05d5\u05ea."],"Totals will be recalculated when a valid shipping method is selected.":["\u05d4\u05e1\u05db\u05d5\u05de\u05d9\u05dd \u05d4\u05db\u05d5\u05dc\u05dc\u05d9\u05dd \u05d9\u05d7\u05d5\u05e9\u05d1\u05d5 \u05de\u05d7\u05d3\u05e9 \u05db\u05e9\u05d9\u05d9\u05d1\u05d7\u05e8 \u05d0\u05de\u05e6\u05e2\u05d9 \u05de\u05e9\u05dc\u05d5\u05d7 \u05ea\u05e7\u05d9\u05df."],"Collection from %s":["\u05d0\u05d9\u05e1\u05d5\u05e3 \u05de\u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05e9\u05dc %s"],"Please enter a valid postcode":["\u05d9\u05e9 \u05dc\u05d4\u05d6\u05d9\u05df \u05de\u05d9\u05e7\u05d5\u05d3 \u05ea\u05e7\u05e3"],"Please fix the following errors before continuing":["\u05d9\u05e9 \u05dc\u05ea\u05e7\u05df \u05d0\u05ea \u05d4\u05e9\u05d2\u05d9\u05d0\u05d5\u05ea \u05d4\u05d1\u05d0\u05d5\u05ea \u05dc\u05e4\u05e0\u05d9 \u05d4\u05d4\u05de\u05e9\u05da"],"Add an address for shipping options":["\u05d9\u05e9 \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05db\u05ea\u05d5\u05d1\u05ea \u05dc\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d4\u05de\u05e9\u05dc\u05d5\u05d7"],"Add a coupon":["\u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05e7\u05d5\u05e4\u05d5\u05df"],"Flat rate shipping":["\u05ea\u05e2\u05e8\u05d9\u05e3 \u05e7\u05d1\u05d5\u05e2 \u05dc\u05de\u05e9\u05dc\u05d5\u05d7"],"Multiple shipments must have the same pickup location":["\u05d9\u05e9 \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05d0\u05ea \u05d0\u05d5\u05ea\u05d5 \u05d4\u05de\u05d9\u05e7\u05d5\u05dd \u05dc\u05d0\u05d9\u05e1\u05d5\u05e3 \u05e2\u05d1\u05d5\u05e8 \u05de\u05e1\u05e4\u05e8 \u05e8\u05d1 \u05e9\u05dc \u05de\u05e9\u05dc\u05d5\u05d7\u05d9\u05dd"],"Remove %s from cart":["\u05dc\u05d4\u05e1\u05d9\u05e8 \u05d0\u05ea %s \u05de\u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea"],"Increase quantity of %s":["\u05dc\u05d4\u05d2\u05d3\u05d9\u05dc \u05d0\u05ea \u05d4\u05db\u05de\u05d5\u05ea \u05e9\u05dc %s"],"Reduce quantity of %s":["\u05dc\u05d4\u05e4\u05d7\u05d9\u05ea \u05d0\u05ea \u05d4\u05db\u05de\u05d5\u05ea \u05e9\u05dc %s"],"Please enter a valid %s":["\u05d9\u05e9 \u05dc\u05d4\u05d6\u05d9\u05df \u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05ea\u05e7\u05e4\u05d9\u05dd \u05e2\u05d1\u05d5\u05e8 %s"],"Including %s":["\u05db\u05d5\u05dc\u05dc %s"],"T-Shirt":["\u05d7\u05d5\u05dc\u05e6\u05ea \u05d8\u05d9"],"Hoodie with Pocket":["\u05e7\u05e4\u05d5\u05e6'\u05d5\u05df \u05e2\u05dd \u05db\u05d9\u05e1"],"Hoodie with Logo":["\u05e7\u05e4\u05d5\u05e6'\u05d5\u05df \u05e2\u05dd \u05dc\u05d5\u05d2\u05d5"],"Hoodie with Zipper":["\u05e7\u05e4\u05d5\u05e6'\u05d5\u05df \u05e2\u05dd \u05e8\u05d5\u05db\u05e1\u05df"],"Long Sleeve Tee":["\u05d7\u05d5\u05dc\u05e6\u05d4 \u05e2\u05dd \u05e9\u05e8\u05d5\u05d5\u05dc \u05d0\u05e8\u05d5\u05da"],"Polo":["\u05d7\u05d5\u05dc\u05e6\u05ea \u05e4\u05d5\u05dc\u05d5"],"We are experiencing difficulties with this payment method. Please contact us for assistance.":["\u05e0\u05ea\u05e7\u05dc\u05e0\u05d5 \u05d1\u05e7\u05e9\u05d9\u05d9\u05dd \u05e2\u05dd \u05d0\u05de\u05e6\u05e2\u05d9 \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05d4\u05d6\u05d4. \u05d9\u05e9 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d0\u05ea\u05e0\u05d5 \u05e7\u05e9\u05e8 \u05dc\u05e2\u05d6\u05e8\u05d4."],"No shipping options available":["\u05d0\u05d9\u05df \u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05de\u05e9\u05dc\u05d5\u05d7 \u05d6\u05de\u05d9\u05e0\u05d5\u05ea"],"There are no shipping options available. Please check your shipping address.":["\u05d0\u05d9\u05df \u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05de\u05e9\u05dc\u05d5\u05d7 \u05d6\u05de\u05d9\u05e0\u05d5\u05ea. \u05d9\u05e9 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05dc\u05de\u05e9\u05dc\u05d5\u05d7."],"%s has been removed from your cart.":["\u05d4\u05de\u05d5\u05e6\u05e8 %s \u05d4\u05d5\u05e1\u05e8 \u05de\u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea."],"Total price for %1$d %2$s item: %3$s":["\u05d4\u05de\u05d7\u05d9\u05e8 \u05d4\u05db\u05d5\u05dc\u05dc \u05dc\u05e4\u05e8\u05d9\u05d8 \u2066%1$d\u2069 %2$s: %3$s","\u05d4\u05de\u05d7\u05d9\u05e8 \u05d4\u05db\u05d5\u05dc\u05dc \u05dc-\u2066%1$d\u2069 \u2066%2$s\u2069 \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd: \u2066%3$s\u2069"],"Sorry, this order requires a shipping option.":["\u05de\u05e6\u05d8\u05e2\u05e8\u05d9\u05dd, \u05dc\u05d4\u05d6\u05de\u05e0\u05d4 \u05d6\u05d5 \u05e0\u05d3\u05e8\u05e9\u05ea \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05de\u05e9\u05dc\u05d5\u05d7."],"%d item":["\u05e4\u05e8\u05d9\u05d8 %d","%d \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd"],"Express Checkout":["\u05ea\u05e9\u05dc\u05d5\u05dd \u05de\u05d4\u05d9\u05e8 \u05d1\u05e7\u05d5\u05e4\u05d4"],"No registered Payment Methods":["\u05d0\u05d9\u05df \u05d0\u05de\u05e6\u05e2\u05d9 \u05ea\u05e9\u05dc\u05d5\u05dd \u05e8\u05e9\u05d5\u05de\u05d9\u05dd"],"Price between %1$s and %2$s":["\u05d4\u05de\u05d7\u05d9\u05e8 \u05d4\u05d5\u05d0 \u05d1\u05d9\u05df \u2066%1$s\u2069 \u05dc-\u2066%2$s\u2069"],"The type returned by checkout filters must be the same as the type they receive. The function received %1$s but returned %2$s.":["\u05d4\u05e1\u05d5\u05d2 \u05e9\u05de\u05d5\u05d7\u05d6\u05e8 \u05e2\u05dc \u05d9\u05d3\u05d9 \u05d4\u05de\u05e1\u05e0\u05e0\u05d9\u05dd \u05d1\u05e7\u05d5\u05e4\u05d4 \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05d9\u05d5\u05ea \u05d6\u05d4\u05d4 \u05dc\u05e1\u05d5\u05d2 \u05e9\u05d4\u05dd \u05de\u05e7\u05d1\u05dc\u05d9\u05dd. \u05d4\u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d4 \u05e7\u05d9\u05d1\u05dc\u05d4 \u2066%1$s\u2069 \u05d0\u05d1\u05dc \u05d4\u05d7\u05d6\u05d9\u05e8\u05d4 \u2066%2$s\u2069."],"Returned value must include %1$s, you passed \"%2$s\"":["\u05e2\u05e8\u05da \u05d4\u05d4\u05d7\u05d6\u05e8\u05d4 \u05d7\u05d9\u05d9\u05d1 \u05dc\u05d4\u05db\u05d9\u05dc \u2066%1$s\u2069, \u05e2\u05d1\u05e8\u05ea \u05d0\u05ea \"\u2066%2$s\u2069\""],"%s (optional)":["%s (\u05d0\u05d5\u05e4\u05e6\u05d9\u05d5\u05e0\u05dc\u05d9)"],"Other available payment methods":["\u05d0\u05de\u05e6\u05e2\u05d9 \u05ea\u05e9\u05dc\u05d5\u05dd \u05d6\u05de\u05d9\u05e0\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd"],"Use another payment method.":["\u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d0\u05de\u05e6\u05e2\u05d9 \u05ea\u05e9\u05dc\u05d5\u05dd \u05d0\u05d7\u05e8."],"%1$s (%2$d unit)":["\u2066%1$s\u2069 (\u05d9\u05d7\u05d9\u05d3\u05d4 \u2066%2$d\u2069)","%1$s (\u2066%2$d\u2069 \u05d9\u05d7\u05d9\u05d3\u05d5\u05ea)"],"Remove \"%s\"":["\u05dc\u05d4\u05e1\u05d9\u05e8 \u05d0\u05ea '%s'"],"Shipping to %s":["\u05de\u05e9\u05dc\u05d5\u05d7 \u05d0\u05dc %s"],"Remove item":["\u05dc\u05d4\u05e1\u05d9\u05e8 \u05e4\u05e8\u05d9\u05d8"],"Details":["\u05e4\u05e8\u05d8\u05d9\u05dd"],"Orange":["\u05db\u05ea\u05d5\u05dd"],"Lightweight baseball cap":["\u05db\u05d5\u05d1\u05e2 \u05d1\u05d9\u05d9\u05e1\u05d1\u05d5\u05dc \u05e7\u05dc"],"Cap":["\u05db\u05d5\u05d1\u05e2"],"Yellow":["\u05e6\u05d4\u05d5\u05d1"],"Warm hat for winter":["\u05db\u05d5\u05d1\u05e2 \u05d7\u05dd \u05dc\u05d7\u05d5\u05e8\u05e3"],"Beanie":["\u05db\u05d5\u05d1\u05e2 \u05d2\u05e8\u05d1"],"example product in Cart Block\u0004Beanie":["\u05db\u05d5\u05d1\u05e2 \u05d2\u05e8\u05d1"],"example product in Cart Block\u0004Beanie with Logo":["\u05db\u05d5\u05d1\u05e2 \u05d2\u05e8\u05d1 \u05e2\u05dd \u05dc\u05d5\u05d2\u05d5"],"Remove coupon \"%s\"":["\u05dc\u05d4\u05e1\u05d9\u05e8 \u05d0\u05ea \u05d4\u05e7\u05d5\u05e4\u05d5\u05df \"%s\""],"Quantity increased to %s.":["\u05d4\u05db\u05de\u05d5\u05ea \u05d4\u05d5\u05d2\u05d3\u05dc\u05d4 \u05dc-%s."],"Quantity reduced to %s.":["\u05d4\u05db\u05de\u05d5\u05ea \u05d4\u05d5\u05e4\u05d7\u05ea\u05d4 \u05dc-%s."],"Quantity of %s in your cart.":["\u05d9\u05e9\u05e0\u05d4 \u05db\u05de\u05d5\u05ea \u05e9\u05dc %s \u05d1\u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea \u05e9\u05dc\u05da."],"Loading shipping rates\u2026":["\u05d8\u05d5\u05e2\u05df \u05d0\u05ea \u05ea\u05e2\u05e8\u05d9\u05e4\u05d9 \u05d4\u05de\u05e9\u05dc\u05d5\u05d7..."],"%d shipping option was found":["%d \u05e0\u05de\u05e6\u05d0\u05d4 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05de\u05e9\u05dc\u05d5\u05d7","%d \u05e0\u05de\u05e6\u05d0\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05dc\u05de\u05e9\u05dc\u05d5\u05d7"],"Shipping option searched for %d package.":["\u05d7\u05d9\u05e4\u05e9\u05e0\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05de\u05e9\u05dc\u05d5\u05d7 \u05e9\u05dc \u05d7\u05d1\u05d9\u05dc\u05d4 %d.","\u05d7\u05d9\u05e4\u05e9\u05e0\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05de\u05e9\u05dc\u05d5\u05d7 \u05e2\u05d1\u05d5\u05e8 %d \u05d7\u05d1\u05d9\u05dc\u05d5\u05ea."],"%d shipping option was found.":["%d \u05e0\u05de\u05e6\u05d0\u05d4 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05de\u05e9\u05dc\u05d5\u05d7.","%d \u05e0\u05de\u05e6\u05d0\u05d5 \u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05dc\u05de\u05e9\u05dc\u05d5\u05d7."],"Choose a shipping option":["\u05dc\u05d1\u05d7\u05d5\u05e8 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05de\u05e9\u05dc\u05d5\u05d7"],"Calculate":["\u05dc\u05d7\u05e9\u05d1"],"Calculated during checkout":["\u05dc\u05d7\u05e9\u05d1 \u05d1\u05de\u05d4\u05dc\u05da \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05d1\u05e7\u05d5\u05e4\u05d4"],"Removing coupon\u2026":["\u05de\u05e1\u05d9\u05e8 \u05e7\u05d5\u05e4\u05d5\u05df..."],"Please select your country":["\u05e0\u05d0 \u05dc\u05d1\u05d7\u05d5\u05e8 \u05de\u05d3\u05d9\u05e0\u05d4"],"There was an error with this payment method. Please verify it's configured correctly.":["\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05e2\u05dd \u05d0\u05de\u05e6\u05e2\u05d9 \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd. \u05e2\u05dc\u05d9\u05da \u05dc\u05d0\u05de\u05ea \u05e9\u05d4\u05d5\u05d0 \u05d4\u05d5\u05d2\u05d3\u05e8 \u05d1\u05e6\u05d5\u05e8\u05d4 \u05ea\u05e7\u05d9\u05e0\u05d4."],"Save payment information to my account for future purchases.":["\u05dc\u05e9\u05de\u05d5\u05e8 \u05d0\u05ea \u05e4\u05e8\u05d8\u05d9 \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05dc\u05d9 \u05dc\u05e8\u05db\u05d9\u05e9\u05d5\u05ea \u05e2\u05ea\u05d9\u05d3\u05d9\u05d5\u05ea."],"Saved token for %s":["\u05d4\u05d0\u05e1\u05d9\u05de\u05d5\u05df \u05e0\u05e9\u05de\u05e8 \u05e2\u05d1\u05d5\u05e8 %s"],"%1$s ending in %2$s (expires %3$s)":["\u2066%1$s\u2069 \u05e9\u05de\u05e1\u05ea\u05d9\u05d9\u05dd \u05d1\u05e1\u05e4\u05e8\u05d5\u05ea \u2066%2$s\u2069 (\u05d1\u05ea\u05d5\u05e7\u05e3 \u05e2\u05d3 \u2066%3$s\u2069)"],"There are no payment methods available. This may be an error on our side. Please contact us if you need any help placing your order.":["\u05d0\u05d9\u05df \u05d0\u05de\u05e6\u05e2\u05d9 \u05ea\u05e9\u05dc\u05d5\u05dd \u05d6\u05de\u05d9\u05e0\u05d9\u05dd. \u05d9\u05d9\u05ea\u05db\u05df \u05e9\u05de\u05e7\u05d5\u05e8 \u05d4\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05de\u05e2\u05e8\u05db\u05ea \u05e9\u05dc\u05e0\u05d5. \u05d0\u05e4\u05e9\u05e8 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d0\u05d9\u05ea\u05e0\u05d5 \u05e7\u05e9\u05e8 \u05d0\u05dd \u05e0\u05d3\u05e8\u05e9\u05ea \u05dc\u05da \u05e2\u05d6\u05e8\u05d4 \u05d1\u05d1\u05d9\u05e6\u05d5\u05e2 \u05d4\u05d4\u05d6\u05de\u05e0\u05d4."],"Order summary":["\u05e1\u05d9\u05db\u05d5\u05dd \u05d4\u05d6\u05de\u05e0\u05d4"],"There was a problem with your shipping option.":["\u05d0\u05d9\u05e8\u05e2\u05d4 \u05d1\u05e2\u05d9\u05d4 \u05e2\u05dd \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d4\u05de\u05e9\u05dc\u05d5\u05d7 \u05e9\u05dc\u05da."],"There was a problem with your payment option.":["\u05d0\u05d9\u05e8\u05e2\u05d4 \u05d1\u05e2\u05d9\u05d4 \u05e2\u05dd \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e9\u05dc\u05da."],"Something went wrong. Please contact us to get assistance.":["\u05de\u05e9\u05d4\u05d5 \u05d4\u05e9\u05ea\u05d1\u05e9. \u05d9\u05e9 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d0\u05ea\u05e0\u05d5 \u05e7\u05e9\u05e8 \u05dc\u05e7\u05d1\u05dc\u05ea \u05e2\u05d6\u05e8\u05d4."],"Or continue below":["\u05d0\u05d5 \u05dc\u05d4\u05de\u05e9\u05d9\u05da \u05dc\u05de\u05d8\u05d4"],"Return to Cart":["\u05d7\u05d6\u05e8\u05d4 \u05dc\u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea"],"%d left in stock":["%d \u05e0\u05d5\u05ea\u05e8\u05d5 \u05d1\u05de\u05dc\u05d0\u05d9"],"Discounted price:":["\u05de\u05d7\u05d9\u05e8 \u05dc\u05d0\u05d7\u05e8 \u05d4\u05e0\u05d7\u05d4:"],"Previous price:":["\u05de\u05d7\u05d9\u05e8 \u05e7\u05d5\u05d3\u05dd:"],"Including <TaxAmount\/> in taxes":["\u05db\u05d5\u05dc\u05dc \u05de\u05d9\u05e1\u05d9\u05dd \u05e2\u05dc \u05e1\u05da <TaxAmount\/>"],"Enter code":["\u05d9\u05e9 \u05dc\u05d4\u05d6\u05d9\u05df \u05e7\u05d5\u05d3"],"Applying coupon\u2026":["\u05de\u05d7\u05d9\u05dc \u05e7\u05d5\u05e4\u05d5\u05e0\u05d9\u05dd..."],"Coupon code \"%s\" has been applied to your cart.":["\u05e7\u05d5\u05d3 \u05d4\u05e7\u05d5\u05e4\u05d5\u05df \"%s\" \u05d4\u05d5\u05d7\u05dc \u05e2\u05dc \u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea \u05e9\u05dc\u05da."],"Coupon code \"%s\" has been removed from your cart.":["\u05e7\u05d5\u05d3 \u05d4\u05e7\u05d5\u05e4\u05d5\u05df \"%s\" \u05d4\u05d5\u05e1\u05e8 \u05de\u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea \u05e9\u05dc\u05da."],"Taxes:":["\u05de\u05d9\u05e1\u05d9\u05dd:"],"Loading\u2026":["\u05d8\u05d5\u05e2\u05df\u2026"],"Unable to get cart data from the API.":["\u05d0\u05d9\u05df \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05e7\u05d1\u05dc \u05d0\u05ea \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc \u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea \u05de\u05de\u05de\u05e9\u05e7 API."],"Sales tax":["\u05de\u05e1 \u05e7\u05e0\u05d9\u05d9\u05d4"],"Dismiss this notice":["\u05dc\u05d4\u05ea\u05e2\u05dc\u05dd \u05de\u05d4\u05d5\u05d3\u05e2\u05d4 \u05d6\u05d5"],"Fees:":["\u05e2\u05de\u05dc\u05d5\u05ea:"],"Color":["\u05e6\u05d1\u05e2"],"Small":["\u05e7\u05d8\u05df"],"Size":["\u05d2\u05d5\u05d3\u05dc"],"Or":["\u05d0\u05d5"],"Show less":["\u05d4\u05e6\u05d2\u05d4 \u05e9\u05dc \u05e4\u05d7\u05d5\u05ea \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd"],"Show less options":["\u05dc\u05d4\u05e6\u05d9\u05d2 \u05e4\u05d7\u05d5\u05ea \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd"],"There was an error loading the content.":["\u05d4\u05d9\u05d9\u05ea\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05d8\u05e2\u05d9\u05e0\u05ea \u05d4\u05ea\u05d5\u05db\u05df."],"Oops!":["\u05d0\u05d5\u05e4\u05e1!"],"Show %s more option":["\u05dc\u05d4\u05e6\u05d9\u05d2 \u05e2\u05d5\u05d3 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea %s","\u05dc\u05d4\u05e6\u05d9\u05d2 \u05e2\u05d5\u05d3 %s \u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea"],"Show %s more":["\u05dc\u05d4\u05e6\u05d9\u05d2 \u05e2\u05d5\u05d3 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d0\u05d7\u05ea","\u05dc\u05d4\u05e6\u05d9\u05d2 \u05e2\u05d5\u05d3 %s \u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea"],"Read less":["\u05dc\u05e7\u05e8\u05d5\u05d0 \u05e4\u05d7\u05d5\u05ea"],"Change address":["\u05e9\u05d9\u05e0\u05d5\u05d9 \u05d4\u05db\u05ea\u05d5\u05d1\u05ea"],"Please enter a valid email address":["\u05e0\u05d0 \u05dc\u05d4\u05d6\u05d9\u05df \u05db\u05ea\u05d5\u05d1\u05ea \u05d0\u05d9\u05de\u05d9\u05d9\u05dc \u05ea\u05e7\u05e4\u05d4"],"%1$s ending in %2$s":["%1$s \u05de\u05e1\u05ea\u05d9\u05d9\u05dd \u05d1-%2$s"],"Coupon: %s":["\u05e7\u05d5\u05e4\u05d5\u05df: %s"],"Free shipping":["\u05de\u05e9\u05dc\u05d5\u05d7 \u05d7\u05d9\u05e0\u05dd"],"Error:":["\u05e9\u05d2\u05d9\u05d0\u05d4:"],"Shipping options":["\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05de\u05e9\u05dc\u05d5\u05d7"],"Subtotal":["\u05e1\u05db\u05d5\u05dd \u05d1\u05d9\u05e0\u05d9\u05d9\u05dd"],"Free":["\u05d7\u05d9\u05e0\u05dd"],"Discount":["\u05d4\u05e0\u05d7\u05d4"],"Close":["\u05e1\u05d2\u05d5\u05e8"],"Save %s":["\u05e9\u05de\u05d5\u05e8 \u05d0\u05ea %s"],"Shipping":["\u05de\u05e9\u05dc\u05d5\u05d7"],"Apply":["\u05d4\u05d7\u05dc"],"Taxes":["\u05de\u05d9\u05e1\u05d9\u05dd"],"Total":["\u05e1\u05d4\"\u05db"],"Remove":["\u05d4\u05e1\u05e8"],"Update":["\u05e2\u05d3\u05db\u05df"],"Coupons":["\u05e7\u05d5\u05e4\u05d5\u05e0\u05d9\u05dd"],"Product":["\u05de\u05d5\u05e6\u05e8"],"Subtotal:":["\u05e1\u05db\u05d5\u05dd \u05d1\u05d9\u05e0\u05d9\u05d9\u05dd:"],"Discount:":["\u05d4\u05e0\u05d7\u05d4:"],"Shipping:":["\u05de\u05e9\u05dc\u05d5\u05d7:"],"Available on backorder":["\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d6\u05de\u05e0\u05d4 \u05de\u05e8\u05d0\u05e9"],"Fee":["\u05e2\u05de\u05dc\u05d4"],"Local pickup":["\u05d0\u05d9\u05e1\u05d5\u05e3 \u05de\u05e7\u05d5\u05de\u05d9"],"Read more":["\u05de\u05d9\u05d3\u05e2 \u05e0\u05d5\u05e1\u05e3"]}},"comment":{"reference":"assets\/client\/blocks\/wc-cart-checkout-base-frontend.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"The quantity of \"%1$s\" was changed to %2$d.":["\u05d4\u05db\u05de\u05d5\u05ea \u05e9\u05dc \"\u2066%1$s\u2069\" \u05e9\u05d5\u05e0\u05ea\u05d4 \u05dc\u05db\u05de\u05d5\u05ea \u2066%2$d\u2069."],"The quantity of \"%1$s\" was decreased to %2$d. This is the maximum allowed quantity.":["\u05d4\u05db\u05de\u05d5\u05ea \u05e9\u05dc \"\u2066%1$s\u2069\" \u05d4\u05d5\u05e4\u05d7\u05ea\u05d4 \u05dc\u05db\u05de\u05d5\u05ea \u2066%2$d\u2069. \u05d6\u05d5\u05d4\u05d9 \u05d4\u05db\u05de\u05d5\u05ea \u05d4\u05de\u05e7\u05e1\u05d9\u05de\u05dc\u05d9\u05ea \u05d4\u05de\u05d5\u05e8\u05e9\u05d9\u05ea \u05dc\u05d4\u05d6\u05de\u05e0\u05d4."],"The quantity of \"%1$s\" was increased to %2$d. This is the minimum required quantity.":["\u05d4\u05db\u05de\u05d5\u05ea \u05e9\u05dc \"\u2066%1$s\u2069\" \u05d4\u05d5\u05e2\u05dc\u05ea\u05d4 \u05dc\u05db\u05de\u05d5\u05ea \u2066%2$d\u2069. \u05d6\u05d5\u05d4\u05d9 \u05d4\u05db\u05de\u05d5\u05ea \u05d4\u05de\u05d9\u05e0\u05d9\u05de\u05dc\u05d9\u05ea \u05d4\u05e0\u05d3\u05e8\u05e9\u05ea \u05dc\u05d4\u05d6\u05de\u05e0\u05d4."],"The quantity of \"%1$s\" was changed to %2$d. You must purchase this product in groups of %3$d.":["\u05d4\u05db\u05de\u05d5\u05ea \u05e9\u05dc \"\u2066%1$s\u2069\" \u05e9\u05d5\u05e0\u05ea\u05d4 \u05dc\u05db\u05de\u05d5\u05ea \u2066%2$d\u2069. \u05e2\u05dc\u05d9\u05da \u05dc\u05e8\u05db\u05d5\u05e9 \u05d0\u05ea \u05d4\u05de\u05d5\u05e6\u05e8 \u05d4\u05d6\u05d4 \u05d1\u05e7\u05d1\u05d5\u05e6\u05d5\u05ea \u05e9\u05dc \u2066%3$d\u2069."],"\"%s\" was removed from your cart.":["\u05d4\u05de\u05d5\u05e6\u05e8 \"%s\" \u05d4\u05d5\u05e1\u05e8 \u05de\u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea \u05e9\u05dc\u05da."],"Flat rate shipping":["\u05ea\u05e2\u05e8\u05d9\u05e3 \u05e7\u05d1\u05d5\u05e2 \u05dc\u05de\u05e9\u05dc\u05d5\u05d7"],"T-Shirt":["\u05d7\u05d5\u05dc\u05e6\u05ea \u05d8\u05d9"],"Hoodie with Pocket":["\u05e7\u05e4\u05d5\u05e6'\u05d5\u05df \u05e2\u05dd \u05db\u05d9\u05e1"],"Hoodie with Logo":["\u05e7\u05e4\u05d5\u05e6'\u05d5\u05df \u05e2\u05dd \u05dc\u05d5\u05d2\u05d5"],"Hoodie with Zipper":["\u05e7\u05e4\u05d5\u05e6'\u05d5\u05df \u05e2\u05dd \u05e8\u05d5\u05db\u05e1\u05df"],"Long Sleeve Tee":["\u05d7\u05d5\u05dc\u05e6\u05d4 \u05e2\u05dd \u05e9\u05e8\u05d5\u05d5\u05dc \u05d0\u05e8\u05d5\u05da"],"Polo":["\u05d7\u05d5\u05dc\u05e6\u05ea \u05e4\u05d5\u05dc\u05d5"],"%s (optional)":["%s (\u05d0\u05d5\u05e4\u05e6\u05d9\u05d5\u05e0\u05dc\u05d9)"],"There was an error registering the payment method with id '%s': ":["\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e2\u05ea \u05e8\u05d9\u05e9\u05d5\u05dd \u05e9\u05d9\u05d8\u05ea \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e2\u05dd \u05d4\u05de\u05d6\u05d4\u05d4 '%s':"],"Orange":["\u05db\u05ea\u05d5\u05dd"],"Lightweight baseball cap":["\u05db\u05d5\u05d1\u05e2 \u05d1\u05d9\u05d9\u05e1\u05d1\u05d5\u05dc \u05e7\u05dc"],"Cap":["\u05db\u05d5\u05d1\u05e2"],"Yellow":["\u05e6\u05d4\u05d5\u05d1"],"Warm hat for winter":["\u05db\u05d5\u05d1\u05e2 \u05d7\u05dd \u05dc\u05d7\u05d5\u05e8\u05e3"],"Beanie":["\u05db\u05d5\u05d1\u05e2 \u05d2\u05e8\u05d1"],"example product in Cart Block\u0004Beanie":["\u05db\u05d5\u05d1\u05e2 \u05d2\u05e8\u05d1"],"example product in Cart Block\u0004Beanie with Logo":["\u05db\u05d5\u05d1\u05e2 \u05d2\u05e8\u05d1 \u05e2\u05dd \u05dc\u05d5\u05d2\u05d5"],"Something went wrong. Please contact us to get assistance.":["\u05de\u05e9\u05d4\u05d5 \u05d4\u05e9\u05ea\u05d1\u05e9. \u05d9\u05e9 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d0\u05ea\u05e0\u05d5 \u05e7\u05e9\u05e8 \u05dc\u05e7\u05d1\u05dc\u05ea \u05e2\u05d6\u05e8\u05d4."],"The response is not a valid JSON response.":["\u05d4\u05ea\u05d2\u05d5\u05d1\u05d4 \u05d0\u05d9\u05e0\u05d4 \u05ea\u05d2\u05d5\u05d1\u05d4 \u05d7\u05d5\u05e7\u05d9\u05ea \u05e9\u05dc JSON."],"Unable to get cart data from the API.":["\u05d0\u05d9\u05df \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05e7\u05d1\u05dc \u05d0\u05ea \u05d4\u05e0\u05ea\u05d5\u05e0\u05d9\u05dd \u05e9\u05dc \u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea \u05de\u05de\u05de\u05e9\u05e7 API."],"Sales tax":["\u05de\u05e1 \u05e7\u05e0\u05d9\u05d9\u05d4"],"Color":["\u05e6\u05d1\u05e2"],"Small":["\u05e7\u05d8\u05df"],"Size":["\u05d2\u05d5\u05d3\u05dc"],"Free shipping":["\u05de\u05e9\u05dc\u05d5\u05d7 \u05d7\u05d9\u05e0\u05dd"],"Shipping":["\u05de\u05e9\u05dc\u05d5\u05d7"],"Fee":["\u05e2\u05de\u05dc\u05d4"],"Local pickup":["\u05d0\u05d9\u05e1\u05d5\u05e3 \u05de\u05e7\u05d5\u05de\u05d9"]}},"comment":{"reference":"assets\/client\/blocks\/wc-blocks-data.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Something went wrong. Please contact us for assistance.":["\u05de\u05e9\u05d4\u05d5 \u05d4\u05e9\u05ea\u05d1\u05e9. \u05d9\u05e9 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d0\u05ea\u05e0\u05d5 \u05e7\u05e9\u05e8 \u05dc\u05e2\u05d6\u05e8\u05d4."],"The checkout has encountered an unexpected error. <button>Try reloading the page<\/button>. If the error persists, please get in touch with us so we can assist.":["\u05d0\u05d9\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05dc\u05d0 \u05e6\u05e4\u05d5\u05d9\u05d4 \u05d1\u05ea\u05d4\u05dc\u05d9\u05da \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05d1\u05e7\u05d5\u05e4\u05d4. <button>\u05db\u05d3\u05d0\u05d9 \u05dc\u05e0\u05e1\u05d5\u05ea \u05dc\u05d8\u05e2\u05d5\u05df \u05d0\u05ea \u05d4\u05e2\u05de\u05d5\u05d3 \u05e9\u05d5\u05d1<\/button>. \u05d0\u05dd \u05d4\u05e9\u05d2\u05d9\u05d0\u05d4 \u05de\u05de\u05e9\u05d9\u05db\u05d4, \u05db\u05d3\u05d0\u05d9 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d0\u05d9\u05ea\u05e0\u05d5 \u05e7\u05e9\u05e8 \u05db\u05d3\u05d9 \u05e9\u05e0\u05d5\u05db\u05dc \u05dc\u05e2\u05d6\u05d5\u05e8."],"Browse store":["\u05dc\u05e1\u05d9\u05d9\u05e8 \u05d1\u05d7\u05e0\u05d5\u05ea"],"Checkout is not available whilst your cart is empty\u2014please take a look through our store and come back when you're ready to place an order.":["\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05d1\u05e6\u05e2 \u05ea\u05e9\u05dc\u05d5\u05dd \u05d1\u05e7\u05d5\u05e4\u05d4 \u05db\u05d0\u05e9\u05e8 \u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea \u05e8\u05d9\u05e7\u05d4 \u2013 \u05de\u05d5\u05de\u05dc\u05e5 \u05dc\u05e1\u05d9\u05d9\u05e8 \u05d1\u05d7\u05e0\u05d5\u05ea \u05e9\u05dc\u05e0\u05d5 \u05d5\u05dc\u05d7\u05d6\u05d5\u05e8 \u05dc\u05db\u05d0\u05df \u05db\u05d0\u05e9\u05e8 \u05d4\u05db\u05d5\u05dc \u05de\u05d5\u05db\u05df \u05dc\u05d1\u05d9\u05e6\u05d5\u05e2 \u05d4\u05d4\u05d6\u05de\u05e0\u05d4."],"Your cart is currently empty!":["\u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea \u05e9\u05dc\u05da \u05e8\u05d9\u05e7\u05d4 \u05db\u05e2\u05ea!"],"Click here to log in.":["\u05d9\u05e9 \u05dc\u05dc\u05d7\u05d5\u05e5 \u05db\u05d0\u05df \u05db\u05d3\u05d9 \u05dc\u05d4\u05ea\u05d7\u05d1\u05e8."],"Edit your cart":["\u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea \u05e9\u05dc\u05da"],"Please edit your cart and try again.":["\u05d9\u05e9 \u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea \u05d5\u05dc\u05e0\u05e1\u05d5\u05ea \u05e9\u05d5\u05d1."],"There is a problem with your cart":["\u05d0\u05d9\u05e8\u05e2\u05d4 \u05d1\u05e2\u05d9\u05d4 \u05e2\u05dd \u05e2\u05d2\u05dc\u05ea \u05d4\u05e7\u05e0\u05d9\u05d5\u05ea \u05e9\u05dc\u05da"],"Checkout error":["\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05ea\u05e9\u05dc\u05d5\u05dd \u05d1\u05e7\u05d5\u05e4\u05d4"],"There was a problem checking out. Please try again. If the problem persists, please get in touch with us so we can assist.":["\u05d0\u05d9\u05e8\u05e2\u05d4 \u05d1\u05e2\u05d9\u05d4 \u05d1\u05ea\u05d4\u05dc\u05d9\u05da \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05d1\u05e7\u05d5\u05e4\u05d4. \u05d9\u05e9 \u05dc\u05e0\u05e1\u05d5\u05ea \u05e9\u05d5\u05d1. \u05d0\u05dd \u05d4\u05d1\u05e2\u05d9\u05d4 \u05de\u05de\u05e9\u05d9\u05db\u05d4, \u05db\u05d3\u05d0\u05d9 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05d0\u05d9\u05ea\u05e0\u05d5 \u05e7\u05e9\u05e8 \u05db\u05d3\u05d9 \u05e9\u05e0\u05d5\u05db\u05dc \u05dc\u05e2\u05d6\u05d5\u05e8."],"Retry":["\u05d9\u05e9 \u05dc\u05e0\u05e1\u05d5\u05ea \u05e9\u05e0\u05d9\u05ea"],"You must be logged in to checkout.":["\u05d9\u05e9 \u05dc\u05d4\u05ea\u05d7\u05d1\u05e8 \u05db\u05d3\u05d9 \u05dc\u05e9\u05dc\u05dd."]}},"comment":{"reference":"assets\/client\/blocks\/checkout-frontend.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Please read and accept the terms and conditions.":["\u05d9\u05e9 \u05dc\u05e7\u05e8\u05d5\u05d0 \u05d0\u05ea \u05d4\u05ea\u05e0\u05d0\u05d9\u05dd \u05d5\u05d4\u05d4\u05ea\u05e0\u05d9\u05d5\u05ea \u05d5\u05dc\u05d0\u05e9\u05e8 \u05d0\u05d5\u05ea\u05dd."]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/terms-style.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Edit billing address":["\u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05dc\u05d7\u05d9\u05d5\u05d1"],"Edit shipping address":["\u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05dc\u05de\u05e9\u05dc\u05d5\u05d7"],"Enter the billing and shipping address that matches your payment method.":["\u05d9\u05e9 \u05dc\u05d4\u05d6\u05d9\u05df \u05d0\u05ea \u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05dc\u05d7\u05d9\u05d5\u05d1 \u05e9\u05ea\u05d5\u05d0\u05de\u05ea \u05dc\u05d0\u05de\u05e6\u05e2\u05d9 \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e9\u05dc\u05da."],"Billing and shipping address":["\u05db\u05ea\u05d5\u05d1\u05ea \u05dc\u05d7\u05d9\u05d5\u05d1 \u05d5\u05dc\u05de\u05e9\u05dc\u05d5\u05d7"],"Enter the billing address that matches your payment method.":["\u05d9\u05e9 \u05dc\u05d4\u05d6\u05d9\u05df \u05d0\u05ea \u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05dc\u05d7\u05d9\u05d5\u05d1 \u05e9\u05ea\u05d5\u05d0\u05de\u05ea \u05dc\u05d0\u05de\u05e6\u05e2\u05d9 \u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e9\u05dc\u05da."],"Step description text.":["\u05d8\u05e7\u05e1\u05d8 \u05dc\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05e9\u05dc\u05d1."],"Step":["\u05e9\u05dc\u05d1"],"Billing address":["\u05db\u05ea\u05d5\u05d1\u05ea \u05dc\u05d7\u05d9\u05d5\u05d1"],"Edit":["\u05e2\u05e8\u05d9\u05db\u05d4"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/billing-address-frontend.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Edit billing address":["\u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05dc\u05d7\u05d9\u05d5\u05d1"],"Edit shipping address":["\u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05dc\u05de\u05e9\u05dc\u05d5\u05d7"],"Enter the address where you want your order delivered.":["\u05d9\u05e9 \u05dc\u05d4\u05d6\u05d9\u05df \u05d0\u05ea \u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05e4\u05d9\u05d6\u05d9\u05ea \u05e9\u05d0\u05dc\u05d9\u05d4 \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05e9\u05dc\u05d5\u05d7 \u05d0\u05ea \u05d4\u05d4\u05d6\u05de\u05e0\u05d4 \u05e9\u05dc\u05da."],"Step description text.":["\u05d8\u05e7\u05e1\u05d8 \u05dc\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05e9\u05dc\u05d1."],"Step":["\u05e9\u05dc\u05d1"],"Use same address for billing":["\u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05db\u05ea\u05d5\u05d1\u05ea \u05d2\u05dd \u05dc\u05d7\u05d9\u05d5\u05d1"],"Shipping address":["\u05db\u05ea\u05d5\u05d1\u05ea \u05de\u05e9\u05dc\u05d5\u05d7"],"Edit":["\u05e2\u05e8\u05d9\u05db\u05d4"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/shipping-address-frontend.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Place Order":["\u05dc\u05d1\u05e6\u05e2 \u05d4\u05d6\u05de\u05e0\u05d4"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/actions-frontend.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Add a note to your order":["\u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d4\u05e2\u05e8\u05d4 \u05dc\u05d4\u05d6\u05de\u05e0\u05d4"],"Notes about your order.":["\u05d4\u05e2\u05e8\u05d5\u05ea \u05dc\u05d2\u05d1\u05d9 \u05d4\u05d4\u05d6\u05de\u05e0\u05d4 \u05e9\u05dc\u05da."],"Notes about your order, e.g. special notes for delivery.":["\u05d4\u05e2\u05e8\u05d5\u05ea \u05e2\u05dc \u05d4\u05d4\u05d6\u05de\u05e0\u05d4, \u05dc\u05d3\u05d5\u05d2\u05de\u05d4, \u05d4\u05e2\u05e8\u05d5\u05ea \u05de\u05d9\u05d5\u05d7\u05d3\u05d5\u05ea \u05dc\u05de\u05e1\u05d9\u05e8\u05d4."]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/order-note-frontend.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Shipping options are not available":["\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d4\u05de\u05e9\u05dc\u05d5\u05d7 \u05dc\u05d0 \u05d6\u05de\u05d9\u05e0\u05d5\u05ea"],"calculated with an address":["\u05d4\u05e0\u05ea\u05d5\u05df \u05de\u05d7\u05d5\u05e9\u05d1 \u05e2\u05dd \u05d4\u05db\u05ea\u05d5\u05d1\u05ea"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/shipping-method-style.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"<price\/> x <packageCount\/> package":["<price\/>\u200f x \u05d7\u05d1\u05d9\u05dc\u05d4 \u200e<packageCount\/>\u200e","<price\/> \u200fx\u200f <packageCount\/> \u05d7\u05d1\u05d9\u05dc\u05d5\u05ea"],"Pickup locations":["\u05de\u05d9\u05e7\u05d5\u05de\u05d9\u05dd \u05dc\u05d0\u05d9\u05e1\u05d5\u05e3"],"free":["\u05d1\u05d7\u05d9\u05e0\u05dd"],"Step description text.":["\u05d8\u05e7\u05e1\u05d8 \u05dc\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05e9\u05dc\u05d1."],"Step":["\u05e9\u05dc\u05d1"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/pickup-options-frontend.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Add a shipping address to view shipping options.":["\u05d9\u05e9 \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05db\u05ea\u05d5\u05d1\u05ea \u05de\u05e9\u05dc\u05d5\u05d7 \u05db\u05d3\u05d9 \u05dc\u05d4\u05e6\u05d9\u05d2 \u05d0\u05ea \u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d4\u05de\u05e9\u05dc\u05d5\u05d7."],"There are no shipping options available. Please check your shipping address.":["\u05d0\u05d9\u05df \u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05de\u05e9\u05dc\u05d5\u05d7 \u05d6\u05de\u05d9\u05e0\u05d5\u05ea. \u05d9\u05e9 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05dc\u05de\u05e9\u05dc\u05d5\u05d7."],"Step description text.":["\u05d8\u05e7\u05e1\u05d8 \u05dc\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05e9\u05dc\u05d1."],"Step":["\u05e9\u05dc\u05d1"],"Shipping options will be displayed here after entering your full shipping address.":["\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d4\u05de\u05e9\u05dc\u05d5\u05d7 \u05d9\u05d5\u05e6\u05d2\u05d5 \u05db\u05d0\u05df \u05dc\u05d0\u05d7\u05e8 \u05d4\u05d6\u05e0\u05ea \u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05de\u05dc\u05d0\u05d4 \u05dc\u05de\u05e9\u05dc\u05d5\u05d7."],"Shipping options":["\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05de\u05e9\u05dc\u05d5\u05d7"],"Free":["\u05d7\u05d9\u05e0\u05dd"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/shipping-methods-frontend.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Delivery":["\u05de\u05e9\u05dc\u05d5\u05d7"],"Ship":["\u05de\u05e9\u05dc\u05d5\u05d7"],"Pickup":["\u05d0\u05d9\u05e1\u05d5\u05e3"],"Shipping options are not available":["\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d4\u05de\u05e9\u05dc\u05d5\u05d7 \u05dc\u05d0 \u05d6\u05de\u05d9\u05e0\u05d5\u05ea"],"Select how you would like to receive your order.":["\u05dc\u05d1\u05d7\u05d5\u05e8 \u05d0\u05d9\u05da \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05e7\u05d1\u05dc \u05d0\u05ea \u05d4\u05d4\u05d6\u05de\u05e0\u05d4 \u05e9\u05dc\u05da."],"calculated with an address":["\u05d4\u05e0\u05ea\u05d5\u05df \u05de\u05d7\u05d5\u05e9\u05d1 \u05e2\u05dd \u05d4\u05db\u05ea\u05d5\u05d1\u05ea"],"free":["\u05d1\u05d7\u05d9\u05e0\u05dd"],"from <price \/>":["\u05d4\u05d7\u05dc \u05de-<price \/>"],"Step description text.":["\u05d8\u05e7\u05e1\u05d8 \u05dc\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05e9\u05dc\u05d1."],"Step":["\u05e9\u05dc\u05d1"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/shipping-method-frontend.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Step description text.":["\u05d8\u05e7\u05e1\u05d8 \u05dc\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05e9\u05dc\u05d1."],"Payment options":["\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05ea\u05e9\u05dc\u05d5\u05dd"],"Step":["\u05e9\u05dc\u05d1"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/payment-frontend.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Additional order information":["\u05de\u05d9\u05d3\u05e2 \u05e0\u05d5\u05e1\u05e3 \u05dc\u05d2\u05d1\u05d9 \u05d4\u05d4\u05d6\u05de\u05e0\u05d4"],"Step description text.":["\u05d8\u05e7\u05e1\u05d8 \u05dc\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05e9\u05dc\u05d1."],"Step":["\u05e9\u05dc\u05d1"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/additional-information-frontend.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Create an account with %s":["\u05dc\u05d9\u05e6\u05d5\u05e8 \u05d7\u05e9\u05d1\u05d5\u05df \u05e2\u05dd %s"],"You are currently checking out as a guest.":["\u05d4\u05ea\u05e9\u05dc\u05d5\u05dd \u05e9\u05dc\u05da \u05d1\u05e7\u05d5\u05e4\u05d4 \u05de\u05ea\u05d1\u05e6\u05e2 \u05db\u05d0\u05d5\u05e8\u05d7."],"Please create a stronger password":["\u05e2\u05dc\u05d9\u05da \u05dc\u05d9\u05e6\u05d5\u05e8 \u05e1\u05d9\u05e1\u05de\u05d4 \u05d7\u05d6\u05e7\u05d4 \u05d9\u05d5\u05ea\u05e8"],"Please enter a valid password":["\u05d9\u05e9 \u05dc\u05d4\u05d6\u05d9\u05df \u05e1\u05d9\u05e1\u05de\u05d4 \u05ea\u05e7\u05d9\u05e0\u05d4"],"Create a password":["\u05d9\u05e9 \u05dc\u05d9\u05e6\u05d5\u05e8 \u05e1\u05d9\u05e1\u05de\u05d4"],"Password strength: %1$s (%2$d characters long)":["\u05d7\u05d5\u05d6\u05e7 \u05d4\u05e1\u05d9\u05e1\u05de\u05d4: \u2066%1$s\u2069 (\u05d0\u05d5\u05e8\u05da \u05e9\u05dc \u2066%2$d\u2069 \u05ea\u05d5\u05d5\u05d9\u05dd)"],"Password strength":["\u05d7\u05d5\u05d6\u05e7 \u05d4\u05e1\u05d9\u05e1\u05de\u05d4"],"Very strong":["\u05d7\u05d6\u05e7\u05d4 \u05de\u05d0\u05d5\u05d3"],"Strong":["\u05d7\u05d6\u05e7\u05d4"],"Weak":["\u05d7\u05dc\u05e9\u05d4"],"Too weak":["\u05d7\u05dc\u05e9\u05d4 \u05de\u05d3\u05d9"],"Medium":["\u05d1\u05d9\u05e0\u05d5\u05e0\u05d9"],"Step description text.":["\u05d8\u05e7\u05e1\u05d8 \u05dc\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05e9\u05dc\u05d1."],"Step":["\u05e9\u05dc\u05d1"],"We'll use this email to send you details and updates about your order.":["\u05d0\u05e0\u05d7\u05e0\u05d5 \u05e0\u05e9\u05ea\u05de\u05e9 \u05d1\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d0\u05d9\u05de\u05d9\u05d9\u05dc \u05d4\u05d6\u05d0\u05ea \u05db\u05d3\u05d9 \u05dc\u05e9\u05dc\u05d5\u05d7 \u05dc\u05da \u05d0\u05ea \u05e4\u05e8\u05d8\u05d9 \u05d4\u05d4\u05d6\u05de\u05e0\u05d4 \u05d5\u05e2\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05dc\u05d2\u05d1\u05d9\u05d4."],"Contact information":["\u05e4\u05e8\u05d8\u05d9\u05dd \u05dc\u05d9\u05e6\u05d9\u05e8\u05ea \u05e7\u05e9\u05e8"],"Log in":["\u05d4\u05ea\u05d7\u05d1\u05e8\u05d5\u05ea"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/contact-information-frontend.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Log in":["\u05d4\u05ea\u05d7\u05d1\u05e8\u05d5\u05ea"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/contact-information-style.js"}} );
( function( domain, translations ) {
var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
localeData[""].domain = domain;
wp.i18n.setLocaleData( localeData, domain );
} )( "woocommerce", {"translation-revision-date":"2024-09-19 17:54:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"Please read and accept the terms and conditions.":["\u05d9\u05e9 \u05dc\u05e7\u05e8\u05d5\u05d0 \u05d0\u05ea \u05d4\u05ea\u05e0\u05d0\u05d9\u05dd \u05d5\u05d4\u05d4\u05ea\u05e0\u05d9\u05d5\u05ea \u05d5\u05dc\u05d0\u05e9\u05e8 \u05d0\u05d5\u05ea\u05dd."],"You must accept our %1$s and %2$s to continue with your purchase.":["\u05e2\u05dc\u05d9\u05da \u05dc\u05e7\u05d1\u05dc \u05d0\u05ea \u2066%1$s\u2069 \u05d5\u05d0\u05ea \u2066%2$s\u2069 \u05db\u05d3\u05d9 \u05dc\u05d4\u05de\u05e9\u05d9\u05da \u05d1\u05e8\u05db\u05d9\u05e9\u05d4."],"By proceeding with your purchase you agree to our %1$s and %2$s":["\u05d4\u05de\u05e9\u05da \u05d4\u05e4\u05e2\u05d5\u05dc\u05d4 \u05de\u05d4\u05d5\u05d5\u05d4 \u05d0\u05ea \u05d4\u05e1\u05db\u05de\u05ea\u05da \u05e2\u05dc \u2066%1$s\u2069 \u05d5\u05e2\u05dc \u2066%2$s\u2069"],"Terms and Conditions":["\u05ea\u05e0\u05d0\u05d9\u05dd \u05d5\u05d4\u05ea\u05e0\u05d9\u05d5\u05ea"],"Privacy Policy":["\u05de\u05d3\u05d9\u05e0\u05d9\u05d5\u05ea \u05e4\u05e8\u05d8\u05d9\u05d5\u05ea"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/terms-frontend.js"}} );
var wcf_ca_vars = {"ajaxurl":"https:\/\/penisizexl.co\/wp-admin\/admin-ajax.php","_nonce":"de7665f8ca","_gdpr_nonce":"134a7ca154","_post_id":"452","_show_gdpr_message":"","_gdpr_message":"Your email & cart are saved so we can send email reminders about this order.","_gdpr_nothanks_msg":"No Thanks","_gdpr_after_no_thanks_msg":"You won't receive further emails from us, thank you!","enable_ca_tracking":"1","_is_block_based_checkout":"1"};
var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/penisizexl.co\/wp-admin\/admin-ajax.php","nonce":"d5992614d2","urls":{"assets":"https:\/\/penisizexl.co\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/penisizexl.co\/wp-json\/"},"settings":{"lazy_load_background_images":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"woocommerce":{"menu_cart":{"cart_page_url":"https:\/\/penisizexl.co\/cart\/","checkout_page_url":"https:\/\/penisizexl.co\/checkout\/","fragments_nonce":"a632da326f"}},"facebook_sdk":{"lang":"he_IL","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/penisizexl.co\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};