Sin descripción

woocommerce-admin.pot 229KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173
  1. # Copyright (C) 2021 WooCommerce
  2. # This file is distributed under the same license as the WooCommerce Admin package.
  3. msgid ""
  4. msgstr ""
  5. "Project-Id-Version: WooCommerce Admin 2.6.5\n"
  6. "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/2.6.5\n"
  7. "POT-Creation-Date: 2021-09-22 22:45:55+00:00\n"
  8. "MIME-Version: 1.0\n"
  9. "Content-Type: text/plain; charset=utf-8\n"
  10. "Content-Transfer-Encoding: 8bit\n"
  11. "PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
  12. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  13. "Language-Team: LANGUAGE <LL@li.org>\n"
  14. "Language: en\n"
  15. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  16. "X-Poedit-Country: United States\n"
  17. "X-Poedit-SourceCharset: UTF-8\n"
  18. "X-Poedit-KeywordsList: "
  19. "__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
  20. "attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
  21. "X-Poedit-Basepath: ../\n"
  22. "X-Poedit-SearchPath-0: .\n"
  23. "X-Poedit-Bookmarks: \n"
  24. "X-Textdomain-Support: yes\n"
  25. "X-Generator: grunt-wp-i18n 1.0.3\n"
  26. #: docs/examples/extensions/add-report/woocommerce-admin-add-report-example.php:39
  27. msgid "Example"
  28. msgstr ""
  29. #: docs/examples/extensions/sql-modification/woocommerce-admin-sql-modification.php:47
  30. msgid "United States Dollar"
  31. msgstr ""
  32. #: docs/examples/extensions/sql-modification/woocommerce-admin-sql-modification.php:51
  33. msgid "New Zealand Dollar"
  34. msgstr ""
  35. #: docs/examples/extensions/sql-modification/woocommerce-admin-sql-modification.php:55
  36. msgid "South African Rand"
  37. msgstr ""
  38. #: includes/connect-existing-pages.php:26
  39. #: src/Features/Navigation/CoreMenu.php:113
  40. msgid "Marketplace"
  41. msgstr ""
  42. #: includes/connect-existing-pages.php:30
  43. #: src/Features/Navigation/CoreMenu.php:102
  44. msgid "Reports"
  45. msgstr ""
  46. #: includes/connect-existing-pages.php:34 src/Features/Analytics.php:304
  47. #: src/Features/Navigation/CoreMenu.php:119 src/Features/Settings.php:89
  48. #: client/homescreen/activity-panel/orders/index.js:282
  49. #: client/layout/controller.js:192
  50. #: client/marketing/overview/installed-extensions/row.js:45
  51. #: client/store-management-links/index.js:72
  52. msgid "Settings"
  53. msgstr ""
  54. #: includes/connect-existing-pages.php:38
  55. #: src/API/Reports/Orders/Controller.php:536
  56. #: src/API/Reports/Products/Controller.php:398
  57. #: src/API/Reports/Stock/Controller.php:540
  58. #: src/API/Reports/Variations/Controller.php:420
  59. #: client/analytics/report/orders/table.js:49
  60. #: client/analytics/report/products/table.js:85
  61. #: client/analytics/report/stock/table.js:45
  62. #: client/analytics/report/variations/table.js:73
  63. msgid "Status"
  64. msgstr ""
  65. #: includes/connect-existing-pages.php:42
  66. #: src/Features/Navigation/CoreMenu.php:276
  67. msgid "System status"
  68. msgstr ""
  69. #: includes/connect-existing-pages.php:43
  70. #: src/Features/Navigation/CoreMenu.php:126
  71. msgid "Tools"
  72. msgstr ""
  73. #: includes/connect-existing-pages.php:44
  74. #: src/Features/Navigation/CoreMenu.php:278
  75. msgid "Logs"
  76. msgstr ""
  77. #. Author of the plugin/theme
  78. msgid "WooCommerce"
  79. msgstr ""
  80. #: includes/connect-existing-pages.php:132 src/API/Leaderboards.php:128
  81. #: src/API/Leaderboards.php:264 src/API/Reports/Categories/Controller.php:333
  82. #: src/API/Reports/Coupons/Controller.php:300
  83. #: src/API/Reports/Customers/Controller.php:591
  84. #: src/API/Reports/Orders/Stats/Controller.php:170
  85. #: src/API/Reports/Products/Controller.php:392
  86. #: src/API/Reports/Revenue/Stats/Controller.php:449
  87. #: src/API/Reports/Taxes/Controller.php:307
  88. #: src/API/Reports/Variations/Controller.php:416 src/Features/Analytics.php:228
  89. #: src/Features/Navigation/CoreMenu.php:85 src/ReportCSVEmail.php:36
  90. #: client/analytics/report/categories/config.js:40
  91. #: client/analytics/report/categories/table.js:59
  92. #: client/analytics/report/coupons/table.js:38
  93. #: client/analytics/report/customers/table.js:59
  94. #: client/analytics/report/get-reports.js:78
  95. #: client/analytics/report/orders/config.js:26
  96. #: client/analytics/report/orders/table.js:347
  97. #: client/analytics/report/products/config.js:43
  98. #: client/analytics/report/products/table.js:69
  99. #: client/analytics/report/revenue/table.js:65
  100. #: client/analytics/report/taxes/config.js:47
  101. #: client/analytics/report/taxes/table.js:58
  102. #: client/analytics/report/variations/config.js:44
  103. #: client/analytics/report/variations/table.js:66
  104. #: client/dashboard/dashboard-charts/config.js:40
  105. #: client/homescreen/activity-panel/panels.js:41
  106. msgid "Orders"
  107. msgstr ""
  108. #: includes/connect-existing-pages.php:143
  109. #: includes/connect-existing-pages.php:174
  110. #: includes/connect-existing-pages.php:204
  111. msgid "Add New"
  112. msgstr ""
  113. #: includes/connect-existing-pages.php:153
  114. msgid "Edit Order"
  115. msgstr ""
  116. #: includes/connect-existing-pages.php:163
  117. #: src/API/Reports/Revenue/Stats/Controller.php:453
  118. #: src/Features/Analytics.php:258 src/Features/Coupons.php:75
  119. #: src/Features/Coupons.php:76 src/ReportCSVEmail.php:33
  120. #: client/analytics/report/coupons/table.js:233
  121. #: client/analytics/report/get-reports.js:94
  122. #: client/analytics/report/orders/table.js:82
  123. #: client/analytics/report/revenue/config.js:32
  124. #: client/analytics/report/revenue/table.js:86
  125. msgid "Coupons"
  126. msgstr ""
  127. #: includes/connect-existing-pages.php:184
  128. msgid "Edit Coupon"
  129. msgstr ""
  130. #: includes/connect-existing-pages.php:193
  131. #: src/API/Reports/Categories/Controller.php:332 src/Features/Analytics.php:208
  132. #: src/Features/Navigation/CoreMenu.php:90 src/ReportCSVEmail.php:37
  133. #: client/analytics/report/categories/table.js:53
  134. #: client/analytics/report/get-reports.js:62
  135. #: client/analytics/report/orders/config.js:120
  136. #: client/analytics/report/orders/table.js:68
  137. #: client/analytics/report/products/table.js:365
  138. #: client/analytics/report/variations/config.js:220
  139. msgid "Products"
  140. msgstr ""
  141. #: includes/connect-existing-pages.php:214
  142. msgid "Edit Product"
  143. msgstr ""
  144. #: includes/connect-existing-pages.php:224
  145. msgid "Import Products"
  146. msgstr ""
  147. #: includes/connect-existing-pages.php:234
  148. msgid "Export Products"
  149. msgstr ""
  150. #: includes/connect-existing-pages.php:244
  151. msgid "Product categories"
  152. msgstr ""
  153. #: includes/connect-existing-pages.php:254
  154. msgid "Edit category"
  155. msgstr ""
  156. #: includes/connect-existing-pages.php:264
  157. msgid "Product tags"
  158. msgstr ""
  159. #: includes/connect-existing-pages.php:274
  160. msgid "Edit tag"
  161. msgstr ""
  162. #: includes/connect-existing-pages.php:284
  163. #: src/Features/Navigation/CoreMenu.php:218
  164. msgid "Attributes"
  165. msgstr ""
  166. #: includes/connect-existing-pages.php:294
  167. msgid "Edit attribute"
  168. msgstr ""
  169. #: includes/connect-existing-pages.php:303
  170. #: src/Features/Navigation/CoreMenu.php:259
  171. msgid "My Subscriptions"
  172. msgstr ""
  173. #: includes/emails/html-admin-report-export-download.php:19
  174. #. translators: %s: report name
  175. msgid "Download your %s Report"
  176. msgstr ""
  177. #: includes/emails/plain-admin-report-export-download.php:15
  178. #. translators: %1$s: report name, %2$s: download URL
  179. msgid "Download your %1$s Report: %2$s"
  180. msgstr ""
  181. #: includes/emails/plain-merchant-notification.php:19
  182. #. translators: %1$s: action label, %2$s: action URL
  183. msgid "%1$s: %2$s"
  184. msgstr ""
  185. #: src/API/Coupons.php:34
  186. msgid "Limit results to coupons with codes matching a given string."
  187. msgstr ""
  188. #: src/API/CustomAttributeTraits.php:26
  189. msgid "No product attribute with that slug was found."
  190. msgstr ""
  191. #: src/API/Customers.php:50 src/API/Notes.php:60
  192. msgid "Unique ID for the resource."
  193. msgstr ""
  194. #: src/API/Data.php:38
  195. msgid "An endpoint used for searching download logs for a specific IP address."
  196. msgstr ""
  197. #: src/API/DataDownloadIPs.php:72
  198. msgid "Invalid request. Please pass the match parameter."
  199. msgstr ""
  200. #: src/API/DataDownloadIPs.php:136
  201. msgid "A partial IP address can be passed and matching results will be returned."
  202. msgstr ""
  203. #: src/API/DataDownloadIPs.php:157
  204. msgid "IP address."
  205. msgstr ""
  206. #: src/API/Features.php:61 src/API/Notes.php:224 src/API/Notes.php:238
  207. #: src/API/OnboardingFreeExtensions.php:61 src/API/OnboardingPayments.php:61
  208. #: src/API/OnboardingProfile.php:73 src/API/Reports/Controller.php:60
  209. msgid "Sorry, you cannot list resources."
  210. msgstr ""
  211. #: src/API/Leaderboards.php:122
  212. msgid "Top Coupons - Number of Orders"
  213. msgstr ""
  214. #: src/API/Leaderboards.php:125 src/API/Reports/Coupons/Controller.php:299
  215. #: client/analytics/report/coupons/table.js:31
  216. msgid "Coupon Code"
  217. msgstr ""
  218. #: src/API/Leaderboards.php:131 src/API/Reports/Coupons/Controller.php:301
  219. #: client/analytics/report/coupons/table.js:46
  220. msgid "Amount Discounted"
  221. msgstr ""
  222. #: src/API/Leaderboards.php:191
  223. msgid "Top Categories - Items Sold"
  224. msgstr ""
  225. #: src/API/Leaderboards.php:194 src/API/Reports/Categories/Controller.php:329
  226. #: src/API/Reports/Products/Controller.php:393
  227. #: client/analytics/report/categories/table.js:32
  228. #: client/analytics/report/products/table.js:75
  229. msgid "Category"
  230. msgstr ""
  231. #: src/API/Leaderboards.php:197 src/API/Leaderboards.php:333
  232. #: src/API/Reports/Categories/Controller.php:330
  233. #: src/API/Reports/Orders/Controller.php:540
  234. #: src/API/Reports/Products/Controller.php:390
  235. #: src/API/Reports/Variations/Controller.php:414
  236. #: client/analytics/report/categories/config.js:26
  237. #: client/analytics/report/categories/table.js:39
  238. #: client/analytics/report/orders/table.js:74
  239. #: client/analytics/report/products/config.js:29
  240. #: client/analytics/report/products/table.js:53
  241. #: client/analytics/report/variations/config.js:30
  242. #: client/analytics/report/variations/table.js:50
  243. #: client/dashboard/dashboard-charts/config.js:50
  244. msgid "Items Sold"
  245. msgstr ""
  246. #: src/API/Leaderboards.php:200 src/API/Leaderboards.php:336
  247. #: client/analytics/report/categories/config.js:33
  248. #: client/analytics/report/categories/table.js:47
  249. #: client/analytics/report/orders/config.js:31
  250. #: client/analytics/report/orders/table.js:89
  251. #: client/analytics/report/products/config.js:36
  252. #: client/analytics/report/products/table.js:62
  253. #: client/analytics/report/revenue/config.js:40
  254. #: client/analytics/report/revenue/table.js:93
  255. #: client/analytics/report/variations/config.js:37
  256. #: client/analytics/report/variations/table.js:59
  257. #: client/dashboard/dashboard-charts/config.js:35
  258. msgid "Net Sales"
  259. msgstr ""
  260. #: src/API/Leaderboards.php:258
  261. msgid "Top Customers - Total Spend"
  262. msgstr ""
  263. #: src/API/Leaderboards.php:261
  264. msgid "Customer Name"
  265. msgstr ""
  266. #: src/API/Leaderboards.php:267 src/API/Reports/Customers/Controller.php:592
  267. #: client/analytics/report/customers/config.js:341
  268. #: client/analytics/report/customers/table.js:65
  269. msgid "Total Spend"
  270. msgstr ""
  271. #: src/API/Leaderboards.php:327
  272. msgid "Top Products - Items Sold"
  273. msgstr ""
  274. #: src/API/Leaderboards.php:330
  275. #: client/analytics/report/downloads/config.js:58
  276. msgid "Product"
  277. msgstr ""
  278. #: src/API/Leaderboards.php:447 src/API/Notes.php:539
  279. #: src/API/ProductsLowInStock.php:289
  280. #: src/API/Reports/Categories/Controller.php:219
  281. #: src/API/Reports/Coupons/Controller.php:225
  282. #: src/API/Reports/Coupons/Stats/Controller.php:272
  283. #: src/API/Reports/Customers/Controller.php:351
  284. #: src/API/Reports/Downloads/Controller.php:252
  285. #: src/API/Reports/Downloads/Stats/Controller.php:229
  286. #: src/API/Reports/Orders/Controller.php:268
  287. #: src/API/Reports/Orders/Stats/Controller.php:333
  288. #: src/API/Reports/Products/Controller.php:261
  289. #: src/API/Reports/Products/Stats/Controller.php:314
  290. #: src/API/Reports/Revenue/Stats/Controller.php:358
  291. #: src/API/Reports/Stock/Controller.php:441
  292. #: src/API/Reports/Taxes/Controller.php:231
  293. #: src/API/Reports/Taxes/Stats/Controller.php:309
  294. #: src/API/Reports/Variations/Controller.php:259
  295. #: src/API/Reports/Variations/Stats/Controller.php:311
  296. msgid "Current page of the collection."
  297. msgstr ""
  298. #: src/API/Leaderboards.php:455 src/API/Notes.php:547
  299. #: src/API/ProductsLowInStock.php:297
  300. #: src/API/Reports/Categories/Controller.php:227
  301. #: src/API/Reports/Coupons/Controller.php:233
  302. #: src/API/Reports/Coupons/Stats/Controller.php:280
  303. #: src/API/Reports/Customers/Controller.php:359
  304. #: src/API/Reports/Downloads/Controller.php:260
  305. #: src/API/Reports/Downloads/Stats/Controller.php:237
  306. #: src/API/Reports/Orders/Controller.php:276
  307. #: src/API/Reports/Orders/Stats/Controller.php:341
  308. #: src/API/Reports/Products/Controller.php:269
  309. #: src/API/Reports/Products/Stats/Controller.php:322
  310. #: src/API/Reports/Revenue/Stats/Controller.php:366
  311. #: src/API/Reports/Stock/Controller.php:449
  312. #: src/API/Reports/Taxes/Controller.php:239
  313. #: src/API/Reports/Taxes/Stats/Controller.php:317
  314. #: src/API/Reports/Variations/Controller.php:267
  315. #: src/API/Reports/Variations/Stats/Controller.php:319
  316. msgid "Maximum number of items to be returned in result set."
  317. msgstr ""
  318. #: src/API/Leaderboards.php:464 src/API/Reports/Categories/Controller.php:236
  319. #: src/API/Reports/Coupons/Controller.php:242
  320. #: src/API/Reports/Coupons/Stats/Controller.php:289
  321. #: src/API/Reports/Downloads/Controller.php:269
  322. #: src/API/Reports/Downloads/Stats/Controller.php:246
  323. #: src/API/Reports/Orders/Controller.php:285
  324. #: src/API/Reports/Orders/Stats/Controller.php:350
  325. #: src/API/Reports/PerformanceIndicators/Controller.php:673
  326. #: src/API/Reports/Products/Controller.php:278
  327. #: src/API/Reports/Products/Stats/Controller.php:331
  328. #: src/API/Reports/Revenue/Stats/Controller.php:375
  329. #: src/API/Reports/Taxes/Controller.php:248
  330. #: src/API/Reports/Taxes/Stats/Controller.php:326
  331. #: src/API/Reports/Variations/Controller.php:276
  332. #: src/API/Reports/Variations/Stats/Controller.php:328
  333. msgid "Limit response to resources published after a given ISO8601 compliant date."
  334. msgstr ""
  335. #: src/API/Leaderboards.php:470 src/API/Reports/Categories/Controller.php:242
  336. #: src/API/Reports/Coupons/Controller.php:248
  337. #: src/API/Reports/Coupons/Stats/Controller.php:295
  338. #: src/API/Reports/Downloads/Controller.php:275
  339. #: src/API/Reports/Downloads/Stats/Controller.php:252
  340. #: src/API/Reports/Orders/Controller.php:291
  341. #: src/API/Reports/Orders/Stats/Controller.php:356
  342. #: src/API/Reports/PerformanceIndicators/Controller.php:679
  343. #: src/API/Reports/Products/Controller.php:284
  344. #: src/API/Reports/Products/Stats/Controller.php:337
  345. #: src/API/Reports/Revenue/Stats/Controller.php:381
  346. #: src/API/Reports/Taxes/Controller.php:254
  347. #: src/API/Reports/Taxes/Stats/Controller.php:332
  348. #: src/API/Reports/Variations/Controller.php:282
  349. #: src/API/Reports/Variations/Stats/Controller.php:334
  350. msgid "Limit response to resources published before a given ISO8601 compliant date."
  351. msgstr ""
  352. #: src/API/Leaderboards.php:476
  353. msgid "URL query to persist across links."
  354. msgstr ""
  355. #: src/API/Leaderboards.php:496
  356. msgid "Leaderboard ID."
  357. msgstr ""
  358. #: src/API/Leaderboards.php:502
  359. msgid "Displayed title for the leaderboard."
  360. msgstr ""
  361. #: src/API/Leaderboards.php:508
  362. msgid "Table headers."
  363. msgstr ""
  364. #: src/API/Leaderboards.php:515
  365. msgid "Table column header."
  366. msgstr ""
  367. #: src/API/Leaderboards.php:525
  368. msgid "Table rows."
  369. msgstr ""
  370. #: src/API/Leaderboards.php:532
  371. msgid "Table cell display."
  372. msgstr ""
  373. #: src/API/Leaderboards.php:538
  374. msgid "Table cell value."
  375. msgstr ""
  376. #: src/API/MarketingOverview.php:86
  377. msgid "Invalid plugin."
  378. msgstr ""
  379. #: src/API/MarketingOverview.php:92
  380. msgid "The plugin could not be activated."
  381. msgstr ""
  382. #: src/API/MarketingOverview.php:113 src/API/Plugins.php:180
  383. msgid "Sorry, you cannot manage plugins."
  384. msgstr ""
  385. #: src/API/NavigationFavorites.php:173 src/API/NavigationFavorites.php:225
  386. #: src/API/NavigationFavorites.php:266
  387. msgid "You must be authenticated to use this endpoint"
  388. msgstr ""
  389. #: src/API/NavigationFavorites.php:198
  390. msgid "Invalid user_id provided"
  391. msgstr ""
  392. #: src/API/NoteActions.php:32
  393. msgid "Unique ID for the Note."
  394. msgstr ""
  395. #: src/API/NoteActions.php:36
  396. msgid "Unique ID for the Note Action."
  397. msgstr ""
  398. #: src/API/NoteActions.php:63 src/API/NoteActions.php:73 src/API/Notes.php:143
  399. #: src/API/Notes.php:256
  400. msgid "Sorry, there is no resource with that ID."
  401. msgstr ""
  402. #: src/API/Notes.php:277
  403. msgid "Sorry, there is no note with that ID."
  404. msgstr ""
  405. #: src/API/Notes.php:365
  406. msgid "Please provide an array of IDs through the noteIds param."
  407. msgstr ""
  408. #: src/API/Notes.php:391 src/API/OnboardingProfile.php:87
  409. #: src/API/Reports/Import/Controller.php:110
  410. msgid "Sorry, you cannot edit this resource."
  411. msgstr ""
  412. #: src/API/Notes.php:519 src/API/Reports/Categories/Controller.php:248
  413. #: src/API/Reports/Coupons/Controller.php:254
  414. #: src/API/Reports/Coupons/Stats/Controller.php:301
  415. #: src/API/Reports/Customers/Controller.php:368
  416. #: src/API/Reports/Downloads/Controller.php:281
  417. #: src/API/Reports/Downloads/Stats/Controller.php:258
  418. #: src/API/Reports/Orders/Controller.php:297
  419. #: src/API/Reports/Orders/Stats/Controller.php:362
  420. #: src/API/Reports/Products/Controller.php:290
  421. #: src/API/Reports/Products/Stats/Controller.php:343
  422. #: src/API/Reports/Revenue/Stats/Controller.php:387
  423. #: src/API/Reports/Stock/Controller.php:482
  424. #: src/API/Reports/Taxes/Controller.php:260
  425. #: src/API/Reports/Taxes/Stats/Controller.php:338
  426. #: src/API/Reports/Variations/Controller.php:298
  427. #: src/API/Reports/Variations/Stats/Controller.php:350
  428. msgid "Order sort attribute ascending or descending."
  429. msgstr ""
  430. #: src/API/Notes.php:526 src/API/Reports/Categories/Controller.php:255
  431. #: src/API/Reports/Coupons/Controller.php:261
  432. #: src/API/Reports/Coupons/Stats/Controller.php:308
  433. #: src/API/Reports/Customers/Controller.php:375
  434. #: src/API/Reports/Downloads/Controller.php:288
  435. #: src/API/Reports/Downloads/Stats/Controller.php:265
  436. #: src/API/Reports/Orders/Controller.php:304
  437. #: src/API/Reports/Orders/Stats/Controller.php:369
  438. #: src/API/Reports/Products/Controller.php:297
  439. #: src/API/Reports/Products/Stats/Controller.php:350
  440. #: src/API/Reports/Revenue/Stats/Controller.php:394
  441. #: src/API/Reports/Stock/Controller.php:489
  442. #: src/API/Reports/Taxes/Controller.php:267
  443. #: src/API/Reports/Taxes/Stats/Controller.php:345
  444. #: src/API/Reports/Variations/Controller.php:305
  445. #: src/API/Reports/Variations/Stats/Controller.php:357
  446. msgid "Sort collection by object attribute."
  447. msgstr ""
  448. #: src/API/Notes.php:556
  449. msgid "Type of note."
  450. msgstr ""
  451. #: src/API/Notes.php:566
  452. msgid "Status of note."
  453. msgstr ""
  454. #: src/API/Notes.php:576
  455. msgid "Source of note."
  456. msgstr ""
  457. #: src/API/Notes.php:599
  458. msgid "ID of the note record."
  459. msgstr ""
  460. #: src/API/Notes.php:605
  461. msgid "Name of the note."
  462. msgstr ""
  463. #: src/API/Notes.php:611
  464. msgid "The type of the note (e.g. error, warning, etc.)."
  465. msgstr ""
  466. #: src/API/Notes.php:617
  467. msgid "Locale used for the note title and content."
  468. msgstr ""
  469. #: src/API/Notes.php:623
  470. msgid "Title of the note."
  471. msgstr ""
  472. #: src/API/Notes.php:629
  473. msgid "Content of the note."
  474. msgstr ""
  475. #: src/API/Notes.php:635
  476. msgid "Content data for the note. JSON string. Available for re-localization."
  477. msgstr ""
  478. #: src/API/Notes.php:641
  479. msgid "The status of the note (e.g. unactioned, actioned)."
  480. msgstr ""
  481. #: src/API/Notes.php:646
  482. msgid "Source of the note."
  483. msgstr ""
  484. #: src/API/Notes.php:652
  485. msgid "Date the note was created."
  486. msgstr ""
  487. #: src/API/Notes.php:658
  488. msgid "Date the note was created (GMT)."
  489. msgstr ""
  490. #: src/API/Notes.php:664
  491. msgid "Date after which the user should be reminded of the note, if any."
  492. msgstr ""
  493. #: src/API/Notes.php:670
  494. msgid "Date after which the user should be reminded of the note, if any (GMT)."
  495. msgstr ""
  496. #: src/API/Notes.php:676
  497. msgid "Whether or not a user can request to be reminded about the note."
  498. msgstr ""
  499. #: src/API/Notes.php:682
  500. msgid "An array of actions, if any, for the note."
  501. msgstr ""
  502. #: src/API/Notes.php:688
  503. msgid "The layout of the note (e.g. banner, thumbnail, plain)."
  504. msgstr ""
  505. #: src/API/Notes.php:694
  506. msgid "The image of the note, if any."
  507. msgstr ""
  508. #: src/API/Notes.php:700
  509. msgid "Registers whether the note is deleted or not"
  510. msgstr ""
  511. #: src/API/OnboardingProfile.php:146
  512. msgid "Onboarding profile data has been updated."
  513. msgstr ""
  514. #: src/API/OnboardingProfile.php:217
  515. msgid "Whether or not the profile was completed."
  516. msgstr ""
  517. #: src/API/OnboardingProfile.php:224
  518. msgid "Whether or not the profile was skipped."
  519. msgstr ""
  520. #: src/API/OnboardingProfile.php:231
  521. msgid "Industry."
  522. msgstr ""
  523. #: src/API/OnboardingProfile.php:241
  524. msgid "Types of products sold."
  525. msgstr ""
  526. #: src/API/OnboardingProfile.php:253
  527. msgid "Number of products to be added."
  528. msgstr ""
  529. #: src/API/OnboardingProfile.php:267
  530. msgid "Other places the store is selling products."
  531. msgstr ""
  532. #: src/API/OnboardingProfile.php:281
  533. msgid "Current annual revenue of the store."
  534. msgstr ""
  535. #: src/API/OnboardingProfile.php:297
  536. msgid "Name of other platform used to sell."
  537. msgstr ""
  538. #: src/API/OnboardingProfile.php:315
  539. msgid "Name of other platform used to sell (not listed)."
  540. msgstr ""
  541. #: src/API/OnboardingProfile.php:322
  542. msgid "Extra business extensions to install."
  543. msgstr ""
  544. #: src/API/OnboardingProfile.php:343
  545. msgid "Selected store theme."
  546. msgstr ""
  547. #: src/API/OnboardingProfile.php:351
  548. msgid "Whether or not this store was setup for a client."
  549. msgstr ""
  550. #: src/API/OnboardingProfile.php:358
  551. msgid ""
  552. "Whether or not the store was connected to WooCommerce.com during the "
  553. "extension flow."
  554. msgstr ""
  555. #: src/API/OnboardingTasks.php:92
  556. msgid "Product template name."
  557. msgstr ""
  558. #: src/API/OnboardingTasks.php:110
  559. msgid "Sorry, you are not allowed to create resources."
  560. msgstr ""
  561. #: src/API/OnboardingTasks.php:124
  562. msgid "Sorry, you are not allowed to create new pages."
  563. msgstr ""
  564. #: src/API/OnboardingTasks.php:138
  565. msgid "Sorry, you are not allowed to retrieve onboarding status."
  566. msgstr ""
  567. #: src/API/OnboardingTasks.php:167
  568. msgid "Sorry, the sample products data file was not found."
  569. msgstr ""
  570. #: src/API/OnboardingTasks.php:201
  571. #. translators: %s is template name
  572. msgid "Sorry, creating the product with template failed."
  573. msgstr ""
  574. #: src/API/OnboardingTasks.php:272 src/API/OnboardingTasks.php:287
  575. msgid "Write title…"
  576. msgstr ""
  577. #: src/API/OnboardingTasks.php:273 src/API/OnboardingTasks.php:288
  578. msgid "Welcome to the store"
  579. msgstr ""
  580. #: src/API/OnboardingTasks.php:277 src/API/OnboardingTasks.php:292
  581. msgid "Write a short welcome message here"
  582. msgstr ""
  583. #: src/API/OnboardingTasks.php:281 src/API/OnboardingTasks.php:296
  584. msgid "Go shopping"
  585. msgstr ""
  586. #: src/API/OnboardingTasks.php:314 src/API/OnboardingTasks.php:321
  587. msgid "Content…"
  588. msgstr ""
  589. #: src/API/OnboardingTasks.php:340
  590. msgid "Shop by Category"
  591. msgstr ""
  592. #: src/API/OnboardingTasks.php:346
  593. msgid "New In"
  594. msgstr ""
  595. #: src/API/OnboardingTasks.php:350
  596. msgid "Fan Favorites"
  597. msgstr ""
  598. #: src/API/OnboardingTasks.php:354
  599. msgid "On Sale"
  600. msgstr ""
  601. #: src/API/OnboardingTasks.php:358
  602. msgid "Best Sellers"
  603. msgstr ""
  604. #: src/API/OnboardingTasks.php:377
  605. msgid "New Products"
  606. msgstr ""
  607. #: src/API/OnboardingTasks.php:477
  608. msgid "Homepage"
  609. msgstr ""
  610. #: src/API/OnboardingTasks.php:505
  611. msgid "Homepage created"
  612. msgstr ""
  613. #: src/API/OnboardingTasks.php:527
  614. msgid "Country codes that support Automated Taxes."
  615. msgstr ""
  616. #: src/API/OnboardingTasks.php:536
  617. msgid "If the store has a homepage created."
  618. msgstr ""
  619. #: src/API/OnboardingTasks.php:542
  620. msgid "If the store has an enabled payment gateway."
  621. msgstr ""
  622. #: src/API/OnboardingTasks.php:548
  623. msgid "If the store has any physical (non-virtual) products."
  624. msgstr ""
  625. #: src/API/OnboardingTasks.php:554
  626. msgid "If the store has any products."
  627. msgstr ""
  628. #: src/API/OnboardingTasks.php:560
  629. msgid "If the tax step has been completed."
  630. msgstr ""
  631. #: src/API/OnboardingTasks.php:566
  632. msgid "The number of shipping zones configured for the store."
  633. msgstr ""
  634. #: src/API/OnboardingTasks.php:572
  635. msgid "Country codes that are supported by Stripe."
  636. msgstr ""
  637. #: src/API/OnboardingTasks.php:581
  638. msgid "If the store has the TaxJar extension active."
  639. msgstr ""
  640. #: src/API/OnboardingTasks.php:587
  641. msgid "Active theme modifications."
  642. msgstr ""
  643. #: src/API/OnboardingTasks.php:593
  644. msgid "If the store is using WooCommerce Payments."
  645. msgstr ""
  646. #: src/API/OnboardingThemes.php:73
  647. msgid "Sorry, you cannot manage themes."
  648. msgstr ""
  649. #: src/API/OnboardingThemes.php:89 src/API/OnboardingThemes.php:162
  650. msgid "Invalid theme."
  651. msgstr ""
  652. #: src/API/OnboardingThemes.php:123
  653. #. translators: %s: theme slug (example: woocommerce-services)
  654. msgid "The requested theme `%s` could not be installed. Theme API call failed."
  655. msgstr ""
  656. #: src/API/OnboardingThemes.php:138
  657. #. translators: %s: theme slug (example: woocommerce-services)
  658. msgid "The requested theme `%s` could not be installed."
  659. msgstr ""
  660. #: src/API/OnboardingThemes.php:171
  661. #. translators: %s: theme slug (example: woocommerce-services)
  662. msgid "Invalid theme %s."
  663. msgstr ""
  664. #: src/API/OnboardingThemes.php:176
  665. msgid "The requested theme could not be activated."
  666. msgstr ""
  667. #: src/API/OnboardingThemes.php:198
  668. msgid "Theme slug."
  669. msgstr ""
  670. #: src/API/OnboardingThemes.php:204
  671. msgid "Theme name."
  672. msgstr ""
  673. #: src/API/OnboardingThemes.php:210
  674. msgid "Theme status."
  675. msgstr ""
  676. #: src/API/Options.php:73
  677. msgid "You must supply an array of options."
  678. msgstr ""
  679. #: src/API/Options.php:78
  680. msgid "Sorry, you cannot view these options."
  681. msgstr ""
  682. #: src/API/Options.php:112
  683. msgid "You must supply an array of options and values."
  684. msgstr ""
  685. #: src/API/Options.php:117
  686. msgid "Sorry, you cannot manage these options."
  687. msgstr ""
  688. #: src/API/Options.php:201
  689. msgid "Array of options with associated values."
  690. msgstr ""
  691. #: src/API/Orders.php:36
  692. msgid "Limit result set to orders matching part of an order number."
  693. msgstr ""
  694. #: src/API/Plugins.php:231 src/API/Plugins.php:375
  695. msgid "Plugins must be a non-empty array."
  696. msgstr ""
  697. #: src/API/Plugins.php:267 src/API/Plugins.php:279
  698. #. translators: %s: plugin slug (example: woocommerce-services)
  699. msgid "The requested plugin `%s` could not be installed. Plugin API call failed."
  700. msgstr ""
  701. #: src/API/Plugins.php:294
  702. #. translators: %s: plugin slug (example: woocommerce-services)
  703. msgid "The requested plugin `%s` could not be installed."
  704. msgstr ""
  705. #: src/API/Plugins.php:308
  706. #. translators: %s: plugin slug (example: woocommerce-services)
  707. msgid "The requested plugin `%s` could not be installed. Upgrader install failed."
  708. msgstr ""
  709. #: src/API/Plugins.php:326
  710. msgid "Plugins were successfully installed."
  711. msgstr ""
  712. #: src/API/Plugins.php:327
  713. msgid "There was a problem installing some of the requested plugins."
  714. msgstr ""
  715. #: src/API/Plugins.php:398
  716. #. translators: %s: plugin slug (example: woocommerce-services)
  717. msgid "The requested plugin `%s`. is not yet installed."
  718. msgstr ""
  719. #: src/API/Plugins.php:410
  720. #. translators: %s: plugin slug (example: woocommerce-services)
  721. msgid "The requested plugin `%s` could not be activated."
  722. msgstr ""
  723. #: src/API/Plugins.php:426
  724. msgid "Plugins were successfully activated."
  725. msgstr ""
  726. #: src/API/Plugins.php:427
  727. msgid "There was a problem activating some of the requested plugins."
  728. msgstr ""
  729. #: src/API/Plugins.php:482
  730. msgid "Jetpack is not installed or active."
  731. msgstr ""
  732. #: src/API/Plugins.php:493
  733. #: packages/data/build-module/plugins/constants.js:12
  734. #: packages/data/src/plugins/constants.ts:17
  735. msgid "Jetpack"
  736. msgstr ""
  737. #: src/API/Plugins.php:506 src/API/Plugins.php:569
  738. msgid "There was an error loading the WooCommerce.com Helper API."
  739. msgstr ""
  740. #: src/API/Plugins.php:523 src/API/Plugins.php:528 src/API/Plugins.php:585
  741. #: src/API/Plugins.php:590 src/API/Plugins.php:606
  742. msgid "There was an error connecting to WooCommerce.com. Please try again."
  743. msgstr ""
  744. #: src/API/Plugins.php:627
  745. msgid "There was an error connecting to Square."
  746. msgstr ""
  747. #: src/API/Plugins.php:679
  748. msgid "There was an error communicating with the WooCommerce Payments plugin."
  749. msgstr ""
  750. #: src/API/Plugins.php:707
  751. msgid "Plugin slug."
  752. msgstr ""
  753. #: src/API/Plugins.php:713
  754. msgid "Plugin name."
  755. msgstr ""
  756. #: src/API/Plugins.php:719
  757. msgid "Plugin status."
  758. msgstr ""
  759. #: src/API/Plugins.php:739
  760. msgid "Action that should be completed to connect Jetpack."
  761. msgstr ""
  762. #: src/API/ProductAttributeTerms.php:40 src/API/ProductAttributes.php:39
  763. msgid "Slug identifier for the resource."
  764. msgstr ""
  765. #: src/API/ProductAttributeTerms.php:65
  766. msgid "Sorry, you cannot view this resource."
  767. msgstr ""
  768. #: src/API/ProductAttributes.php:61
  769. msgid "Search by similar attribute name."
  770. msgstr ""
  771. #: src/API/ProductVariations.php:55
  772. msgid "Search by similar product name, sku, or attribute value."
  773. msgstr ""
  774. #: src/API/ProductVariations.php:163
  775. msgid "Product parent name."
  776. msgstr ""
  777. #: src/API/ProductVariations.php:168
  778. msgid "Product type."
  779. msgstr ""
  780. #: src/API/ProductVariations.php:175 src/API/Reports/Stock/Controller.php:390
  781. msgid "Product parent ID."
  782. msgstr ""
  783. #: src/API/Products.php:56
  784. msgid "The date the last order for this product was placed, in the site's timezone."
  785. msgstr ""
  786. #: src/API/Products.php:73
  787. msgid "Limit result set to products that are low or out of stock. (Deprecated)"
  788. msgstr ""
  789. #: src/API/Products.php:79
  790. msgid "Search by similar product name or sku."
  791. msgstr ""
  792. #: src/API/ProductsLowInStock.php:308
  793. msgid "Limit result set to products assigned a specific status."
  794. msgstr ""
  795. #: src/API/Reports/Categories/Controller.php:75
  796. msgid "Invalid response from data store."
  797. msgstr ""
  798. #: src/API/Reports/Categories/Controller.php:167
  799. msgid "Category ID."
  800. msgstr ""
  801. #: src/API/Reports/Categories/Controller.php:173
  802. msgid "Amount of items sold."
  803. msgstr ""
  804. #: src/API/Reports/Categories/Controller.php:179
  805. #: src/API/Reports/Revenue/Stats/Controller.php:167
  806. msgid "Total Sales."
  807. msgstr ""
  808. #: src/API/Reports/Categories/Controller.php:185
  809. #: src/API/Reports/Coupons/Controller.php:166
  810. #: src/API/Reports/Products/Stats/Controller.php:174
  811. #: src/API/Reports/Revenue/Stats/Controller.php:221
  812. #: src/API/Reports/Taxes/Controller.php:211
  813. #: src/API/Reports/Taxes/Stats/Controller.php:191
  814. #: src/API/Reports/Variations/Stats/Controller.php:171
  815. msgid "Number of orders."
  816. msgstr ""
  817. #: src/API/Reports/Categories/Controller.php:191
  818. msgid "Amount of products."
  819. msgstr ""
  820. #: src/API/Reports/Categories/Controller.php:201
  821. msgid "Category name."
  822. msgstr ""
  823. #: src/API/Reports/Categories/Controller.php:269
  824. #: src/API/Reports/Coupons/Stats/Controller.php:320
  825. #: src/API/Reports/Downloads/Stats/Controller.php:275
  826. #: src/API/Reports/Orders/Stats/Controller.php:381
  827. #: src/API/Reports/Products/Stats/Controller.php:367
  828. #: src/API/Reports/Revenue/Stats/Controller.php:412
  829. #: src/API/Reports/Taxes/Stats/Controller.php:358
  830. #: src/API/Reports/Variations/Stats/Controller.php:374
  831. msgid "Time interval to use for buckets in the returned data."
  832. msgstr ""
  833. #: src/API/Reports/Categories/Controller.php:283
  834. #: src/API/Reports/Orders/Controller.php:395
  835. #: src/API/Reports/Orders/Stats/Controller.php:405
  836. msgid "Limit result set to items that have the specified order status."
  837. msgstr ""
  838. #: src/API/Reports/Categories/Controller.php:293
  839. #: src/API/Reports/Orders/Controller.php:405
  840. #: src/API/Reports/Orders/Stats/Controller.php:416
  841. msgid "Limit result set to items that don't have the specified order status."
  842. msgstr ""
  843. #: src/API/Reports/Categories/Controller.php:303
  844. msgid ""
  845. "Limit result set to all items that have the specified term assigned in the "
  846. "categories taxonomy."
  847. msgstr ""
  848. #: src/API/Reports/Categories/Controller.php:312
  849. msgid "Add additional piece of info about each category to the report."
  850. msgstr ""
  851. #: src/API/Reports/Categories/Controller.php:331
  852. #: src/API/Reports/Revenue/Stats/Controller.php:456
  853. msgid "Net Revenue"
  854. msgstr ""
  855. #: src/API/Reports/Categories/DataStore.php:271
  856. #: src/API/Reports/Orders/Stats/DataStore.php:335
  857. #: src/API/Reports/Orders/Stats/DataStore.php:388
  858. #: src/API/Reports/Products/Stats/DataStore.php:186
  859. #: src/API/Reports/Products/Stats/DataStore.php:202
  860. #: src/API/Reports/Taxes/Stats/DataStore.php:189
  861. #: src/API/Reports/Variations/Stats/DataStore.php:211
  862. #: src/API/Reports/Variations/Stats/DataStore.php:229
  863. msgid "Sorry, fetching revenue data failed."
  864. msgstr ""
  865. #: src/API/Reports/Controller.php:78
  866. msgid ""
  867. "Batch endpoint for getting specific performance indicators from `stats` "
  868. "endpoints."
  869. msgstr ""
  870. #: src/API/Reports/Controller.php:82
  871. msgid "Stats about revenue."
  872. msgstr ""
  873. #: src/API/Reports/Controller.php:86
  874. msgid "Stats about orders."
  875. msgstr ""
  876. #: src/API/Reports/Controller.php:90
  877. msgid "Products detailed reports."
  878. msgstr ""
  879. #: src/API/Reports/Controller.php:94
  880. msgid "Stats about products."
  881. msgstr ""
  882. #: src/API/Reports/Controller.php:98
  883. msgid "Variations detailed reports."
  884. msgstr ""
  885. #: src/API/Reports/Controller.php:102
  886. msgid "Stats about variations."
  887. msgstr ""
  888. #: src/API/Reports/Controller.php:106
  889. msgid "Product categories detailed reports."
  890. msgstr ""
  891. #: src/API/Reports/Controller.php:110
  892. msgid "Stats about product categories."
  893. msgstr ""
  894. #: src/API/Reports/Controller.php:114
  895. msgid "Coupons detailed reports."
  896. msgstr ""
  897. #: src/API/Reports/Controller.php:118
  898. msgid "Stats about coupons."
  899. msgstr ""
  900. #: src/API/Reports/Controller.php:122
  901. msgid "Taxes detailed reports."
  902. msgstr ""
  903. #: src/API/Reports/Controller.php:126
  904. msgid "Stats about taxes."
  905. msgstr ""
  906. #: src/API/Reports/Controller.php:130
  907. msgid "Product downloads detailed reports."
  908. msgstr ""
  909. #: src/API/Reports/Controller.php:134
  910. msgid "Product download files detailed reports."
  911. msgstr ""
  912. #: src/API/Reports/Controller.php:138
  913. msgid "Stats about product downloads."
  914. msgstr ""
  915. #: src/API/Reports/Controller.php:142
  916. msgid "Customers detailed reports."
  917. msgstr ""
  918. #: src/API/Reports/Controller.php:287
  919. msgid "An alphanumeric identifier for the resource."
  920. msgstr ""
  921. #: src/API/Reports/Controller.php:293
  922. msgid "A human-readable description of the resource."
  923. msgstr ""
  924. #: src/API/Reports/Controller.php:299
  925. msgid "API path."
  926. msgstr ""
  927. #: src/API/Reports/Coupons/Controller.php:154
  928. msgid "Coupon ID."
  929. msgstr ""
  930. #: src/API/Reports/Coupons/Controller.php:160
  931. #: src/API/Reports/Coupons/Stats/Controller.php:144
  932. msgid "Net discount amount."
  933. msgstr ""
  934. #: src/API/Reports/Coupons/Controller.php:176
  935. msgid "Coupon code."
  936. msgstr ""
  937. #: src/API/Reports/Coupons/Controller.php:182
  938. msgid "Coupon creation date."
  939. msgstr ""
  940. #: src/API/Reports/Coupons/Controller.php:188
  941. msgid "Coupon creation date in GMT."
  942. msgstr ""
  943. #: src/API/Reports/Coupons/Controller.php:194
  944. msgid "Coupon expiration date."
  945. msgstr ""
  946. #: src/API/Reports/Coupons/Controller.php:200
  947. msgid "Coupon expiration date in GMT."
  948. msgstr ""
  949. #: src/API/Reports/Coupons/Controller.php:207
  950. msgid "Coupon discount type."
  951. msgstr ""
  952. #: src/API/Reports/Coupons/Controller.php:273
  953. #: src/API/Reports/Coupons/Stats/Controller.php:334
  954. msgid "Limit result set to coupons assigned specific coupon IDs."
  955. msgstr ""
  956. #: src/API/Reports/Coupons/Controller.php:282
  957. #: src/API/Reports/Orders/Controller.php:439
  958. msgid "Add additional piece of info about each coupon to the report."
  959. msgstr ""
  960. #: src/API/Reports/Coupons/Controller.php:302
  961. #: client/analytics/report/coupons/table.js:52
  962. msgid "Created"
  963. msgstr ""
  964. #: src/API/Reports/Coupons/Controller.php:303
  965. #: client/analytics/report/coupons/table.js:56
  966. msgid "Expires"
  967. msgstr ""
  968. #: src/API/Reports/Coupons/Controller.php:304
  969. #: client/analytics/report/coupons/table.js:60
  970. msgid "Type"
  971. msgstr ""
  972. #: src/API/Reports/Coupons/Controller.php:327
  973. #: src/API/Reports/Coupons/DataStore.php:173
  974. #: src/API/Reports/Products/Controller.php:436
  975. #: src/API/Reports/Products/Controller.php:437
  976. #: client/analytics/report/coupons/table.js:210
  977. #: client/analytics/report/products/table.js:267
  978. #: client/analytics/report/stock/table.js:131
  979. #: packages/components/build-module/summary/number.js:88
  980. msgid "N/A"
  981. msgstr ""
  982. #: src/API/Reports/Coupons/DataStore.php:168
  983. #: src/API/Reports/Products/DataStore.php:227
  984. #: client/analytics/report/downloads/table.js:94
  985. msgid "(Deleted)"
  986. msgstr ""
  987. #: src/API/Reports/Coupons/Stats/Controller.php:152
  988. msgid "Number of coupons."
  989. msgstr ""
  990. #: src/API/Reports/Coupons/Stats/Controller.php:158
  991. #: client/analytics/report/coupons/config.js:24
  992. #: client/dashboard/dashboard-charts/config.js:60
  993. msgid "Discounted Orders"
  994. msgstr ""
  995. #: src/API/Reports/Coupons/Stats/Controller.php:159
  996. msgid "Number of discounted orders."
  997. msgstr ""
  998. #: src/API/Reports/Coupons/Stats/Controller.php:169
  999. #: src/API/Reports/Orders/Stats/Controller.php:225
  1000. #: src/API/Reports/Products/Stats/Controller.php:183
  1001. #: src/API/Reports/Revenue/Stats/Controller.php:250
  1002. #: src/API/Reports/Taxes/Stats/Controller.php:206
  1003. #: src/API/Reports/Variations/Stats/Controller.php:180
  1004. msgid "Reports data grouped by segment condition."
  1005. msgstr ""
  1006. #: src/API/Reports/Coupons/Stats/Controller.php:177
  1007. #: src/API/Reports/Orders/Stats/Controller.php:233
  1008. #: src/API/Reports/Products/Stats/Controller.php:191
  1009. #: src/API/Reports/Revenue/Stats/Controller.php:258
  1010. #: src/API/Reports/Taxes/Stats/Controller.php:214
  1011. #: src/API/Reports/Variations/Stats/Controller.php:188
  1012. msgid "Segment identificator."
  1013. msgstr ""
  1014. #: src/API/Reports/Coupons/Stats/Controller.php:183
  1015. #: src/API/Reports/Coupons/Stats/Controller.php:248
  1016. #: src/API/Reports/Downloads/Stats/Controller.php:205
  1017. #: src/API/Reports/Orders/Stats/Controller.php:239
  1018. #: src/API/Reports/Orders/Stats/Controller.php:309
  1019. #: src/API/Reports/Products/Stats/Controller.php:204
  1020. #: src/API/Reports/Products/Stats/Controller.php:269
  1021. #: src/API/Reports/Revenue/Stats/Controller.php:264
  1022. #: src/API/Reports/Revenue/Stats/Controller.php:334
  1023. #: src/API/Reports/Taxes/Stats/Controller.php:220
  1024. #: src/API/Reports/Taxes/Stats/Controller.php:285
  1025. #: src/API/Reports/Variations/Stats/Controller.php:201
  1026. #: src/API/Reports/Variations/Stats/Controller.php:266
  1027. msgid "Interval subtotals."
  1028. msgstr ""
  1029. #: src/API/Reports/Coupons/Stats/Controller.php:202
  1030. #: src/API/Reports/Customers/Stats/Controller.php:164
  1031. #: src/API/Reports/Downloads/Stats/Controller.php:159
  1032. #: src/API/Reports/Orders/Stats/Controller.php:263
  1033. #: src/API/Reports/Products/Stats/Controller.php:223
  1034. #: src/API/Reports/Revenue/Stats/Controller.php:288
  1035. #: src/API/Reports/Stock/Stats/Controller.php:115
  1036. #: src/API/Reports/Taxes/Stats/Controller.php:239
  1037. #: src/API/Reports/Variations/Stats/Controller.php:220
  1038. msgid "Totals data."
  1039. msgstr ""
  1040. #: src/API/Reports/Coupons/Stats/Controller.php:209
  1041. #: src/API/Reports/Downloads/Stats/Controller.php:166
  1042. #: src/API/Reports/Orders/Stats/Controller.php:270
  1043. #: src/API/Reports/Products/Stats/Controller.php:230
  1044. #: src/API/Reports/Revenue/Stats/Controller.php:295
  1045. #: src/API/Reports/Taxes/Stats/Controller.php:246
  1046. #: src/API/Reports/Variations/Stats/Controller.php:227
  1047. msgid "Reports data grouped by intervals."
  1048. msgstr ""
  1049. #: src/API/Reports/Coupons/Stats/Controller.php:217
  1050. #: src/API/Reports/Downloads/Stats/Controller.php:174
  1051. #: src/API/Reports/Orders/Stats/Controller.php:278
  1052. #: src/API/Reports/Products/Stats/Controller.php:238
  1053. #: src/API/Reports/Revenue/Stats/Controller.php:303
  1054. #: src/API/Reports/Taxes/Stats/Controller.php:254
  1055. #: src/API/Reports/Variations/Stats/Controller.php:235
  1056. msgid "Type of interval."
  1057. msgstr ""
  1058. #: src/API/Reports/Coupons/Stats/Controller.php:224
  1059. #: src/API/Reports/Downloads/Stats/Controller.php:181
  1060. #: src/API/Reports/Orders/Stats/Controller.php:285
  1061. #: src/API/Reports/Products/Stats/Controller.php:245
  1062. #: src/API/Reports/Revenue/Stats/Controller.php:310
  1063. #: src/API/Reports/Taxes/Stats/Controller.php:261
  1064. #: src/API/Reports/Variations/Stats/Controller.php:242
  1065. msgid "The date the report start, in the site's timezone."
  1066. msgstr ""
  1067. #: src/API/Reports/Coupons/Stats/Controller.php:230
  1068. #: src/API/Reports/Downloads/Stats/Controller.php:187
  1069. #: src/API/Reports/Orders/Stats/Controller.php:291
  1070. #: src/API/Reports/Products/Stats/Controller.php:251
  1071. #: src/API/Reports/Revenue/Stats/Controller.php:316
  1072. #: src/API/Reports/Taxes/Stats/Controller.php:267
  1073. #: src/API/Reports/Variations/Stats/Controller.php:248
  1074. msgid "The date the report start, as GMT."
  1075. msgstr ""
  1076. #: src/API/Reports/Coupons/Stats/Controller.php:236
  1077. #: src/API/Reports/Downloads/Stats/Controller.php:193
  1078. #: src/API/Reports/Orders/Stats/Controller.php:297
  1079. #: src/API/Reports/Products/Stats/Controller.php:257
  1080. #: src/API/Reports/Revenue/Stats/Controller.php:322
  1081. #: src/API/Reports/Taxes/Stats/Controller.php:273
  1082. #: src/API/Reports/Variations/Stats/Controller.php:254
  1083. msgid "The date the report end, in the site's timezone."
  1084. msgstr ""
  1085. #: src/API/Reports/Coupons/Stats/Controller.php:242
  1086. #: src/API/Reports/Downloads/Stats/Controller.php:199
  1087. #: src/API/Reports/Orders/Stats/Controller.php:303
  1088. #: src/API/Reports/Products/Stats/Controller.php:263
  1089. #: src/API/Reports/Revenue/Stats/Controller.php:328
  1090. #: src/API/Reports/Taxes/Stats/Controller.php:279
  1091. #: src/API/Reports/Variations/Stats/Controller.php:260
  1092. msgid "The date the report end, as GMT."
  1093. msgstr ""
  1094. #: src/API/Reports/Coupons/Stats/Controller.php:343
  1095. #: src/API/Reports/Orders/Stats/Controller.php:552
  1096. #: src/API/Reports/Products/Stats/Controller.php:408
  1097. #: src/API/Reports/Revenue/Stats/Controller.php:426
  1098. #: src/API/Reports/Taxes/Stats/Controller.php:381
  1099. #: src/API/Reports/Variations/Stats/Controller.php:435
  1100. msgid "Segment the response by additional constraint."
  1101. msgstr ""
  1102. #: src/API/Reports/Coupons/Stats/Controller.php:354
  1103. #: src/API/Reports/Customers/Stats/Controller.php:379
  1104. #: src/API/Reports/Downloads/Stats/Controller.php:371
  1105. #: src/API/Reports/Orders/Stats/Controller.php:564
  1106. #: src/API/Reports/Products/Stats/Controller.php:418
  1107. #: src/API/Reports/Taxes/Stats/Controller.php:389
  1108. #: src/API/Reports/Variations/Stats/Controller.php:445
  1109. msgid "Limit stats fields to the specified items."
  1110. msgstr ""
  1111. #: src/API/Reports/Coupons/Stats/Segmenter.php:283
  1112. #: src/API/Reports/Orders/Stats/Segmenter.php:378
  1113. #: src/API/Reports/Products/Stats/Segmenter.php:169
  1114. msgid ""
  1115. "product_includes parameter need to specify exactly one product when "
  1116. "segmenting by variation."
  1117. msgstr ""
  1118. #: src/API/Reports/Customers/Controller.php:224
  1119. #: src/API/Reports/Orders/Controller.php:204
  1120. msgid "Customer ID."
  1121. msgstr ""
  1122. #: src/API/Reports/Customers/Controller.php:230
  1123. msgid "User ID."
  1124. msgstr ""
  1125. #: src/API/Reports/Customers/Controller.php:236
  1126. msgid "Name."
  1127. msgstr ""
  1128. #: src/API/Reports/Customers/Controller.php:242
  1129. msgid "Username."
  1130. msgstr ""
  1131. #: src/API/Reports/Customers/Controller.php:248
  1132. #: src/API/Reports/Taxes/Controller.php:175
  1133. msgid "Country / Region."
  1134. msgstr ""
  1135. #: src/API/Reports/Customers/Controller.php:254
  1136. msgid "City."
  1137. msgstr ""
  1138. #: src/API/Reports/Customers/Controller.php:260
  1139. msgid "Region."
  1140. msgstr ""
  1141. #: src/API/Reports/Customers/Controller.php:266
  1142. msgid "Postal code."
  1143. msgstr ""
  1144. #: src/API/Reports/Customers/Controller.php:272
  1145. msgid "Date registered."
  1146. msgstr ""
  1147. #: src/API/Reports/Customers/Controller.php:278
  1148. msgid "Date registered GMT."
  1149. msgstr ""
  1150. #: src/API/Reports/Customers/Controller.php:284
  1151. msgid "Date last active."
  1152. msgstr ""
  1153. #: src/API/Reports/Customers/Controller.php:290
  1154. msgid "Date last active GMT."
  1155. msgstr ""
  1156. #: src/API/Reports/Customers/Controller.php:296
  1157. msgid "Order count."
  1158. msgstr ""
  1159. #: src/API/Reports/Customers/Controller.php:302
  1160. msgid "Total spend."
  1161. msgstr ""
  1162. #: src/API/Reports/Customers/Controller.php:308
  1163. msgid "Avg order value."
  1164. msgstr ""
  1165. #: src/API/Reports/Customers/Controller.php:327
  1166. #: src/API/Reports/Customers/Controller.php:479
  1167. #: src/API/Reports/Customers/Stats/Controller.php:185
  1168. #: src/API/Reports/Customers/Stats/Controller.php:282
  1169. msgid ""
  1170. "Limit response to objects registered before (or at) a given ISO8601 "
  1171. "compliant datetime."
  1172. msgstr ""
  1173. #: src/API/Reports/Customers/Controller.php:333
  1174. #: src/API/Reports/Customers/Controller.php:485
  1175. #: src/API/Reports/Customers/Stats/Controller.php:191
  1176. #: src/API/Reports/Customers/Stats/Controller.php:288
  1177. msgid ""
  1178. "Limit response to objects registered after (or at) a given ISO8601 "
  1179. "compliant datetime."
  1180. msgstr ""
  1181. #: src/API/Reports/Customers/Controller.php:339
  1182. msgid ""
  1183. "Limit response to resources with orders published after a given ISO8601 "
  1184. "compliant date."
  1185. msgstr ""
  1186. #: src/API/Reports/Customers/Controller.php:345
  1187. msgid ""
  1188. "Limit response to resources with orders published before a given ISO8601 "
  1189. "compliant date."
  1190. msgstr ""
  1191. #: src/API/Reports/Customers/Controller.php:394
  1192. #: src/API/Reports/Customers/Stats/Controller.php:197
  1193. #: src/API/Reports/Downloads/Stats/Controller.php:289
  1194. #: src/API/Reports/Orders/Stats/Controller.php:395
  1195. #: src/API/Reports/Products/Controller.php:321
  1196. #: src/API/Reports/Variations/Controller.php:288
  1197. #: src/API/Reports/Variations/Stats/Controller.php:340
  1198. msgid ""
  1199. "Indicates whether all the conditions should be true for the resulting set, "
  1200. "or if any one of them is sufficient. Match affects the following "
  1201. "parameters: status_is, status_is_not, product_includes, product_excludes, "
  1202. "coupon_includes, coupon_excludes, customer, categories"
  1203. msgstr ""
  1204. #: src/API/Reports/Customers/Controller.php:404
  1205. #: src/API/Reports/Customers/Stats/Controller.php:207
  1206. msgid ""
  1207. "Limit response to objects with a customer field containing the search term. "
  1208. "Searches the field provided by `searchby`."
  1209. msgstr ""
  1210. #: src/API/Reports/Customers/Controller.php:419
  1211. #: src/API/Reports/Customers/Stats/Controller.php:222
  1212. msgid "Limit response to objects with specfic names."
  1213. msgstr ""
  1214. #: src/API/Reports/Customers/Controller.php:424
  1215. #: src/API/Reports/Customers/Stats/Controller.php:227
  1216. msgid "Limit response to objects excluding specfic names."
  1217. msgstr ""
  1218. #: src/API/Reports/Customers/Controller.php:429
  1219. #: src/API/Reports/Customers/Stats/Controller.php:232
  1220. msgid "Limit response to objects with specfic usernames."
  1221. msgstr ""
  1222. #: src/API/Reports/Customers/Controller.php:434
  1223. #: src/API/Reports/Customers/Stats/Controller.php:237
  1224. msgid "Limit response to objects excluding specfic usernames."
  1225. msgstr ""
  1226. #: src/API/Reports/Customers/Controller.php:439
  1227. #: src/API/Reports/Customers/Stats/Controller.php:242
  1228. msgid "Limit response to objects including emails."
  1229. msgstr ""
  1230. #: src/API/Reports/Customers/Controller.php:444
  1231. #: src/API/Reports/Customers/Stats/Controller.php:247
  1232. msgid "Limit response to objects excluding emails."
  1233. msgstr ""
  1234. #: src/API/Reports/Customers/Controller.php:449
  1235. #: src/API/Reports/Customers/Stats/Controller.php:252
  1236. msgid "Limit response to objects with specfic countries."
  1237. msgstr ""
  1238. #: src/API/Reports/Customers/Controller.php:454
  1239. #: src/API/Reports/Customers/Stats/Controller.php:257
  1240. msgid "Limit response to objects excluding specfic countries."
  1241. msgstr ""
  1242. #: src/API/Reports/Customers/Controller.php:459
  1243. #: src/API/Reports/Customers/Stats/Controller.php:262
  1244. msgid ""
  1245. "Limit response to objects last active before (or at) a given ISO8601 "
  1246. "compliant datetime."
  1247. msgstr ""
  1248. #: src/API/Reports/Customers/Controller.php:465
  1249. #: src/API/Reports/Customers/Stats/Controller.php:268
  1250. msgid ""
  1251. "Limit response to objects last active after (or at) a given ISO8601 "
  1252. "compliant datetime."
  1253. msgstr ""
  1254. #: src/API/Reports/Customers/Controller.php:471
  1255. #: src/API/Reports/Customers/Controller.php:491
  1256. #: src/API/Reports/Customers/Stats/Controller.php:274
  1257. #: src/API/Reports/Customers/Stats/Controller.php:294
  1258. msgid ""
  1259. "Limit response to objects last active between two given ISO8601 compliant "
  1260. "datetime."
  1261. msgstr ""
  1262. #: src/API/Reports/Customers/Controller.php:499
  1263. #: src/API/Reports/Customers/Stats/Controller.php:302
  1264. msgid ""
  1265. "Limit response to objects with an order count greater than or equal to "
  1266. "given integer."
  1267. msgstr ""
  1268. #: src/API/Reports/Customers/Controller.php:505
  1269. #: src/API/Reports/Customers/Stats/Controller.php:308
  1270. msgid ""
  1271. "Limit response to objects with an order count less than or equal to given "
  1272. "integer."
  1273. msgstr ""
  1274. #: src/API/Reports/Customers/Controller.php:511
  1275. #: src/API/Reports/Customers/Stats/Controller.php:314
  1276. msgid "Limit response to objects with an order count between two given integers."
  1277. msgstr ""
  1278. #: src/API/Reports/Customers/Controller.php:519
  1279. #: src/API/Reports/Customers/Stats/Controller.php:322
  1280. msgid ""
  1281. "Limit response to objects with a total order spend greater than or equal to "
  1282. "given number."
  1283. msgstr ""
  1284. #: src/API/Reports/Customers/Controller.php:524
  1285. #: src/API/Reports/Customers/Stats/Controller.php:327
  1286. msgid ""
  1287. "Limit response to objects with a total order spend less than or equal to "
  1288. "given number."
  1289. msgstr ""
  1290. #: src/API/Reports/Customers/Controller.php:529
  1291. #: src/API/Reports/Customers/Stats/Controller.php:332
  1292. msgid ""
  1293. "Limit response to objects with a total order spend between two given "
  1294. "numbers."
  1295. msgstr ""
  1296. #: src/API/Reports/Customers/Controller.php:537
  1297. #: src/API/Reports/Customers/Stats/Controller.php:340
  1298. msgid ""
  1299. "Limit response to objects with an average order spend greater than or equal "
  1300. "to given number."
  1301. msgstr ""
  1302. #: src/API/Reports/Customers/Controller.php:542
  1303. #: src/API/Reports/Customers/Stats/Controller.php:345
  1304. msgid ""
  1305. "Limit response to objects with an average order spend less than or equal to "
  1306. "given number."
  1307. msgstr ""
  1308. #: src/API/Reports/Customers/Controller.php:547
  1309. #: src/API/Reports/Customers/Stats/Controller.php:350
  1310. msgid ""
  1311. "Limit response to objects with an average order spend between two given "
  1312. "numbers."
  1313. msgstr ""
  1314. #: src/API/Reports/Customers/Controller.php:555
  1315. #: src/API/Reports/Customers/Stats/Controller.php:358
  1316. msgid ""
  1317. "Limit response to objects with last order before (or at) a given ISO8601 "
  1318. "compliant datetime."
  1319. msgstr ""
  1320. #: src/API/Reports/Customers/Controller.php:561
  1321. #: src/API/Reports/Customers/Stats/Controller.php:364
  1322. msgid ""
  1323. "Limit response to objects with last order after (or at) a given ISO8601 "
  1324. "compliant datetime."
  1325. msgstr ""
  1326. #: src/API/Reports/Customers/Controller.php:567
  1327. #: src/API/Reports/Customers/Stats/Controller.php:370
  1328. msgid "Limit result to items with specified customer ids."
  1329. msgstr ""
  1330. #: src/API/Reports/Customers/Controller.php:586
  1331. #: client/analytics/report/customers/config.js:81
  1332. #: client/analytics/report/customers/table.js:32
  1333. msgid "Name"
  1334. msgstr ""
  1335. #: src/API/Reports/Customers/Controller.php:587
  1336. #: client/analytics/report/customers/config.js:190
  1337. #: client/analytics/report/customers/table.js:39
  1338. #: client/analytics/report/downloads/config.js:100
  1339. #: client/analytics/report/downloads/table.js:57
  1340. msgid "Username"
  1341. msgstr ""
  1342. #: src/API/Reports/Customers/Controller.php:588
  1343. #: client/analytics/report/customers/table.js:44
  1344. msgid "Last Active"
  1345. msgstr ""
  1346. #: src/API/Reports/Customers/Controller.php:589
  1347. msgid "Sign Up"
  1348. msgstr ""
  1349. #: src/API/Reports/Customers/Controller.php:590
  1350. #: client/analytics/report/customers/config.js:241
  1351. #: client/analytics/report/customers/table.js:55
  1352. msgid "Email"
  1353. msgstr ""
  1354. #: src/API/Reports/Customers/Controller.php:593
  1355. #: client/analytics/report/customers/config.js:390
  1356. #: client/analytics/report/customers/table.js:71
  1357. msgid "AOV"
  1358. msgstr ""
  1359. #: src/API/Reports/Customers/Controller.php:594
  1360. #: client/analytics/report/customers/config.js:132
  1361. #: client/analytics/report/customers/table.js:80
  1362. #: client/dashboard/components/settings/general/store-address.js:201
  1363. msgid "Country / Region"
  1364. msgstr ""
  1365. #: src/API/Reports/Customers/Controller.php:595
  1366. #: client/analytics/report/customers/table.js:85
  1367. #: client/dashboard/components/settings/general/store-address.js:214
  1368. msgid "City"
  1369. msgstr ""
  1370. #: src/API/Reports/Customers/Controller.php:596
  1371. #: client/analytics/report/customers/table.js:91
  1372. msgid "Region"
  1373. msgstr ""
  1374. #: src/API/Reports/Customers/Controller.php:597
  1375. #: client/analytics/report/customers/table.js:97
  1376. msgid "Postal Code"
  1377. msgstr ""
  1378. #: src/API/Reports/Customers/Stats/Controller.php:131
  1379. msgid "Number of customers."
  1380. msgstr ""
  1381. #: src/API/Reports/Customers/Stats/Controller.php:137
  1382. msgid "Average number of orders."
  1383. msgstr ""
  1384. #: src/API/Reports/Customers/Stats/Controller.php:143
  1385. msgid "Average total spend per customer."
  1386. msgstr ""
  1387. #: src/API/Reports/Customers/Stats/Controller.php:150
  1388. msgid "Average AOV per customer."
  1389. msgstr ""
  1390. #: src/API/Reports/Downloads/Controller.php:169
  1391. msgid "ID."
  1392. msgstr ""
  1393. #: src/API/Reports/Downloads/Controller.php:175
  1394. #: src/API/Reports/Products/Controller.php:164
  1395. #: src/API/Reports/Variations/Controller.php:168
  1396. #: src/API/Reports/Variations/Controller.php:174
  1397. msgid "Product ID."
  1398. msgstr ""
  1399. #: src/API/Reports/Downloads/Controller.php:178
  1400. msgid "The date of the download, in the site's timezone."
  1401. msgstr ""
  1402. #: src/API/Reports/Downloads/Controller.php:184
  1403. msgid "The date of the download, as GMT."
  1404. msgstr ""
  1405. #: src/API/Reports/Downloads/Controller.php:193
  1406. msgid "Download ID."
  1407. msgstr ""
  1408. #: src/API/Reports/Downloads/Controller.php:199
  1409. msgid "File name."
  1410. msgstr ""
  1411. #: src/API/Reports/Downloads/Controller.php:205
  1412. msgid "File URL."
  1413. msgstr ""
  1414. #: src/API/Reports/Downloads/Controller.php:211
  1415. #: src/API/Reports/Orders/Controller.php:174
  1416. msgid "Order ID."
  1417. msgstr ""
  1418. #: src/API/Reports/Downloads/Controller.php:217
  1419. #: src/API/Reports/Orders/Controller.php:180
  1420. msgid "Order Number."
  1421. msgstr ""
  1422. #: src/API/Reports/Downloads/Controller.php:223
  1423. msgid "User ID for the downloader."
  1424. msgstr ""
  1425. #: src/API/Reports/Downloads/Controller.php:229
  1426. msgid "User name of the downloader."
  1427. msgstr ""
  1428. #: src/API/Reports/Downloads/Controller.php:235
  1429. msgid "IP address for the downloader."
  1430. msgstr ""
  1431. #: src/API/Reports/Downloads/Controller.php:298
  1432. msgid ""
  1433. "Indicates whether all the conditions should be true for the resulting set, "
  1434. "or if any one of them is sufficient. Match affects the following "
  1435. "parameters: products, orders, username, ip_address."
  1436. msgstr ""
  1437. #: src/API/Reports/Downloads/Controller.php:308
  1438. #: src/API/Reports/Downloads/Stats/Controller.php:299
  1439. #: src/API/Reports/Orders/Controller.php:315
  1440. #: src/API/Reports/Orders/Stats/Controller.php:426
  1441. msgid "Limit result set to items that have the specified product(s) assigned."
  1442. msgstr ""
  1443. #: src/API/Reports/Downloads/Controller.php:318
  1444. #: src/API/Reports/Downloads/Stats/Controller.php:309
  1445. #: src/API/Reports/Orders/Controller.php:325
  1446. #: src/API/Reports/Orders/Stats/Controller.php:436
  1447. msgid "Limit result set to items that don't have the specified product(s) assigned."
  1448. msgstr ""
  1449. #: src/API/Reports/Downloads/Controller.php:328
  1450. #: src/API/Reports/Downloads/Stats/Controller.php:318
  1451. #: src/API/Reports/Orders/Controller.php:446
  1452. msgid "Limit result set to items that have the specified order ids."
  1453. msgstr ""
  1454. #: src/API/Reports/Downloads/Controller.php:337
  1455. #: src/API/Reports/Downloads/Stats/Controller.php:327
  1456. #: src/API/Reports/Orders/Controller.php:455
  1457. msgid "Limit result set to items that don't have the specified order ids."
  1458. msgstr ""
  1459. #: src/API/Reports/Downloads/Controller.php:346
  1460. msgid "Limit response to objects that have the specified user ids."
  1461. msgstr ""
  1462. #: src/API/Reports/Downloads/Controller.php:355
  1463. msgid "Limit response to objects that don't have the specified user ids."
  1464. msgstr ""
  1465. #: src/API/Reports/Downloads/Controller.php:364
  1466. #: src/API/Reports/Downloads/Stats/Controller.php:354
  1467. msgid "Limit response to objects that have a specified ip address."
  1468. msgstr ""
  1469. #: src/API/Reports/Downloads/Controller.php:373
  1470. #: src/API/Reports/Downloads/Stats/Controller.php:363
  1471. msgid "Limit response to objects that don't have a specified ip address."
  1472. msgstr ""
  1473. #: src/API/Reports/Downloads/Controller.php:391
  1474. #: src/API/Reports/Orders/Controller.php:533
  1475. #: src/API/Reports/Revenue/Stats/Controller.php:448
  1476. #: client/analytics/report/downloads/table.js:34
  1477. #: client/analytics/report/orders/table.js:35
  1478. #: client/analytics/report/revenue/table.js:57
  1479. msgid "Date"
  1480. msgstr ""
  1481. #: src/API/Reports/Downloads/Controller.php:392
  1482. #: src/API/Reports/Products/Controller.php:388
  1483. #: client/analytics/report/downloads/table.js:42
  1484. #: client/analytics/report/products/table.js:40
  1485. msgid "Product Title"
  1486. msgstr ""
  1487. #: src/API/Reports/Downloads/Controller.php:393
  1488. #: client/analytics/report/downloads/table.js:48
  1489. msgid "File Name"
  1490. msgstr ""
  1491. #: src/API/Reports/Downloads/Controller.php:394
  1492. #: src/API/Reports/Orders/Controller.php:534
  1493. #: client/analytics/report/downloads/config.js:151
  1494. #: client/analytics/report/downloads/table.js:52
  1495. #: client/analytics/report/orders/table.js:43
  1496. msgid "Order #"
  1497. msgstr ""
  1498. #: src/API/Reports/Downloads/Controller.php:395
  1499. msgid "User Name"
  1500. msgstr ""
  1501. #: src/API/Reports/Downloads/Controller.php:396
  1502. #: client/analytics/report/downloads/table.js:61
  1503. msgid "IP"
  1504. msgstr ""
  1505. #: src/API/Reports/Downloads/Stats/Controller.php:144
  1506. #: src/Features/Analytics.php:278 src/Features/Onboarding.php:436
  1507. #: src/ReportCSVEmail.php:35
  1508. #: client/analytics/report/downloads/config.js:25
  1509. #: client/analytics/report/downloads/table.js:197
  1510. #: client/analytics/report/get-reports.js:125
  1511. #: client/dashboard/dashboard-charts/config.js:90
  1512. msgid "Downloads"
  1513. msgstr ""
  1514. #: src/API/Reports/Downloads/Stats/Controller.php:145
  1515. msgid "Number of downloads."
  1516. msgstr ""
  1517. #: src/API/Reports/Downloads/Stats/Controller.php:336
  1518. msgid "Limit response to objects that have the specified customer ids."
  1519. msgstr ""
  1520. #: src/API/Reports/Downloads/Stats/Controller.php:345
  1521. msgid "Limit response to objects that don't have the specified customer ids."
  1522. msgstr ""
  1523. #: src/API/Reports/Downloads/Stats/DataStore.php:118
  1524. #: src/API/Reports/Downloads/Stats/DataStore.php:134
  1525. msgid "Sorry, fetching downloads data failed."
  1526. msgstr ""
  1527. #: src/API/Reports/Export/Controller.php:76
  1528. msgid "Parameters to pass on to the exported report."
  1529. msgstr ""
  1530. #: src/API/Reports/Export/Controller.php:81
  1531. msgid "When true, email a link to download the export to the requesting user."
  1532. msgstr ""
  1533. #: src/API/Reports/Export/Controller.php:100
  1534. msgid "Export status."
  1535. msgstr ""
  1536. #: src/API/Reports/Export/Controller.php:106
  1537. msgid "Export status message."
  1538. msgstr ""
  1539. #: src/API/Reports/Export/Controller.php:112
  1540. msgid "Export ID."
  1541. msgstr ""
  1542. #: src/API/Reports/Export/Controller.php:135
  1543. msgid "Percentage complete."
  1544. msgstr ""
  1545. #: src/API/Reports/Export/Controller.php:141
  1546. msgid "Export download URL."
  1547. msgstr ""
  1548. #: src/API/Reports/Export/Controller.php:172
  1549. msgid "There is no data to export for the given request."
  1550. msgstr ""
  1551. #: src/API/Reports/Export/Controller.php:181
  1552. msgid "Your report file is being generated."
  1553. msgstr ""
  1554. #: src/API/Reports/Export/Controller.php:214
  1555. msgid "Sorry, there is no export with that ID."
  1556. msgstr ""
  1557. #: src/API/Reports/Import/Controller.php:187
  1558. msgid "Number of days to import."
  1559. msgstr ""
  1560. #: src/API/Reports/Import/Controller.php:194
  1561. msgid "Skip importing existing order data."
  1562. msgstr ""
  1563. #: src/API/Reports/Import/Controller.php:215
  1564. msgid "Regeneration status."
  1565. msgstr ""
  1566. #: src/API/Reports/Import/Controller.php:221
  1567. msgid "Regenerate data message."
  1568. msgstr ""
  1569. #: src/API/Reports/Import/Controller.php:243
  1570. msgid "All pending and in-progress import actions have been cancelled."
  1571. msgstr ""
  1572. #: src/API/Reports/Orders/Controller.php:186
  1573. msgid "Date the order was created, in the site's timezone."
  1574. msgstr ""
  1575. #: src/API/Reports/Orders/Controller.php:192
  1576. msgid "Date the order was created, as GMT."
  1577. msgstr ""
  1578. #: src/API/Reports/Orders/Controller.php:198
  1579. msgid "Order status."
  1580. msgstr ""
  1581. #: src/API/Reports/Orders/Controller.php:210
  1582. #: src/API/Reports/Products/Controller.php:170
  1583. #: src/API/Reports/Variations/Controller.php:180
  1584. msgid "Number of items sold."
  1585. msgstr ""
  1586. #: src/API/Reports/Orders/Controller.php:216
  1587. msgid "Net total revenue."
  1588. msgstr ""
  1589. #: src/API/Reports/Orders/Controller.php:222
  1590. msgid "Net total revenue (formatted)."
  1591. msgstr ""
  1592. #: src/API/Reports/Orders/Controller.php:228
  1593. msgid "Returning or new customer."
  1594. msgstr ""
  1595. #: src/API/Reports/Orders/Controller.php:238
  1596. msgid "List of order product IDs, names, quantities."
  1597. msgstr ""
  1598. #: src/API/Reports/Orders/Controller.php:244
  1599. msgid "List of order coupons."
  1600. msgstr ""
  1601. #: src/API/Reports/Orders/Controller.php:250
  1602. msgid "Order customer information."
  1603. msgstr ""
  1604. #: src/API/Reports/Orders/Controller.php:335
  1605. #: src/API/Reports/Orders/Stats/Controller.php:445
  1606. msgid "Limit result set to items that have the specified variation(s) assigned."
  1607. msgstr ""
  1608. #: src/API/Reports/Orders/Controller.php:345
  1609. #: src/API/Reports/Orders/Stats/Controller.php:455
  1610. msgid ""
  1611. "Limit result set to items that don't have the specified variation(s) "
  1612. "assigned."
  1613. msgstr ""
  1614. #: src/API/Reports/Orders/Controller.php:355
  1615. #: src/API/Reports/Orders/Stats/Controller.php:465
  1616. msgid "Limit result set to items that have the specified coupon(s) assigned."
  1617. msgstr ""
  1618. #: src/API/Reports/Orders/Controller.php:365
  1619. #: src/API/Reports/Orders/Stats/Controller.php:474
  1620. msgid "Limit result set to items that don't have the specified coupon(s) assigned."
  1621. msgstr ""
  1622. #: src/API/Reports/Orders/Controller.php:375
  1623. #: src/API/Reports/Orders/Stats/Controller.php:483
  1624. msgid "Limit result set to items that have the specified tax rate(s) assigned."
  1625. msgstr ""
  1626. #: src/API/Reports/Orders/Controller.php:385
  1627. #: src/API/Reports/Orders/Stats/Controller.php:493
  1628. msgid ""
  1629. "Limit result set to items that don't have the specified tax rate(s) "
  1630. "assigned."
  1631. msgstr ""
  1632. #: src/API/Reports/Orders/Controller.php:415
  1633. msgid "Limit result set to returning or new customers."
  1634. msgstr ""
  1635. #: src/API/Reports/Orders/Controller.php:426
  1636. #: src/API/Reports/Orders/Stats/Controller.php:521
  1637. msgid "Limit result set to specific types of refunds."
  1638. msgstr ""
  1639. #: src/API/Reports/Orders/Controller.php:464
  1640. #: src/API/Reports/Orders/Stats/Controller.php:534
  1641. #: src/API/Reports/Variations/Stats/Controller.php:454
  1642. msgid ""
  1643. "Limit result set to orders that include products with the specified "
  1644. "attributes."
  1645. msgstr ""
  1646. #: src/API/Reports/Orders/Controller.php:473
  1647. #: src/API/Reports/Orders/Stats/Controller.php:543
  1648. #: src/API/Reports/Variations/Stats/Controller.php:463
  1649. msgid ""
  1650. "Limit result set to orders that don't include products with the specified "
  1651. "attributes."
  1652. msgstr ""
  1653. #: src/API/Reports/Orders/Controller.php:507
  1654. #. translators: 1: numeric product quantity, 2: name of product
  1655. msgid "%1$s× %2$s"
  1656. msgstr ""
  1657. #: src/API/Reports/Orders/Controller.php:535
  1658. msgid "N. Revenue (Formatted)"
  1659. msgstr ""
  1660. #: src/API/Reports/Orders/Controller.php:537
  1661. #: client/analytics/report/orders/table.js:55
  1662. msgid "Customer"
  1663. msgstr ""
  1664. #: src/API/Reports/Orders/Controller.php:538
  1665. #: client/analytics/report/orders/config.js:249
  1666. #: client/analytics/report/orders/table.js:61
  1667. msgid "Customer Type"
  1668. msgstr ""
  1669. #: src/API/Reports/Orders/Controller.php:539
  1670. #: client/analytics/report/orders/table.js:67
  1671. msgid "Product(s)"
  1672. msgstr ""
  1673. #: src/API/Reports/Orders/Controller.php:541
  1674. #: client/analytics/report/orders/table.js:81
  1675. msgid "Coupon(s)"
  1676. msgstr ""
  1677. #: src/API/Reports/Orders/Controller.php:542
  1678. #: src/API/Reports/Products/Controller.php:391
  1679. #: src/API/Reports/Variations/Controller.php:415
  1680. msgid "N. Revenue"
  1681. msgstr ""
  1682. #: src/API/Reports/Orders/Stats/Controller.php:163
  1683. #: src/API/Reports/Products/Stats/Controller.php:167
  1684. #: src/API/Reports/Revenue/Stats/Controller.php:175
  1685. #: src/API/Reports/Variations/Stats/Controller.php:164
  1686. msgid "Net Sales."
  1687. msgstr ""
  1688. #: src/API/Reports/Orders/Stats/Controller.php:171
  1689. msgid "Number of orders"
  1690. msgstr ""
  1691. #: src/API/Reports/Orders/Stats/Controller.php:178
  1692. msgid "Average order value."
  1693. msgstr ""
  1694. #: src/API/Reports/Orders/Stats/Controller.php:186
  1695. msgid "Average items per order"
  1696. msgstr ""
  1697. #: src/API/Reports/Orders/Stats/Controller.php:192
  1698. msgid "Number of items sold"
  1699. msgstr ""
  1700. #: src/API/Reports/Orders/Stats/Controller.php:198
  1701. #: src/API/Reports/Revenue/Stats/Controller.php:183
  1702. msgid "Amount discounted by coupons."
  1703. msgstr ""
  1704. #: src/API/Reports/Orders/Stats/Controller.php:204
  1705. #: src/API/Reports/Revenue/Stats/Controller.php:189
  1706. msgid "Unique coupons count."
  1707. msgstr ""
  1708. #: src/API/Reports/Orders/Stats/Controller.php:210
  1709. msgid "Total distinct customers."
  1710. msgstr ""
  1711. #: src/API/Reports/Orders/Stats/Controller.php:216
  1712. msgid "Number of distinct products sold."
  1713. msgstr ""
  1714. #: src/API/Reports/Orders/Stats/Controller.php:503
  1715. msgid "Alias for customer_type (deprecated)."
  1716. msgstr ""
  1717. #: src/API/Reports/Orders/Stats/Controller.php:512
  1718. msgid "Limit result set to orders that have the specified customer_type"
  1719. msgstr ""
  1720. #: src/API/Reports/PerformanceIndicators/Controller.php:143
  1721. msgid "Sorry, fetching performance indicators failed."
  1722. msgstr ""
  1723. #: src/API/Reports/PerformanceIndicators/Controller.php:224
  1724. msgid "Visitors"
  1725. msgstr ""
  1726. #: src/API/Reports/PerformanceIndicators/Controller.php:230
  1727. msgid "Views"
  1728. msgstr ""
  1729. #: src/API/Reports/PerformanceIndicators/Controller.php:405
  1730. msgid "A list of stats to query must be provided."
  1731. msgstr ""
  1732. #: src/API/Reports/PerformanceIndicators/Controller.php:594
  1733. #: src/API/Reports/Stock/Controller.php:384
  1734. msgid "Unique identifier for the resource."
  1735. msgstr ""
  1736. #: src/API/Reports/PerformanceIndicators/Controller.php:601
  1737. msgid "The specific chart this stat referrers to."
  1738. msgstr ""
  1739. #: src/API/Reports/PerformanceIndicators/Controller.php:607
  1740. msgid "Human readable label for the stat."
  1741. msgstr ""
  1742. #: src/API/Reports/PerformanceIndicators/Controller.php:613
  1743. msgid "Format of the stat."
  1744. msgstr ""
  1745. #: src/API/Reports/PerformanceIndicators/Controller.php:620
  1746. msgid ""
  1747. "Value of the stat. Returns null if the stat does not exist or cannot be "
  1748. "loaded."
  1749. msgstr ""
  1750. #: src/API/Reports/PerformanceIndicators/Controller.php:651
  1751. msgid "There was an issue loading the report endpoints"
  1752. msgstr ""
  1753. #: src/API/Reports/PerformanceIndicators/Controller.php:661
  1754. #. translators: Allowed values is a list of stat endpoints.
  1755. msgid "Limit response to specific report stats. Allowed values: %s."
  1756. msgstr ""
  1757. #: src/API/Reports/Products/Controller.php:176
  1758. #: src/API/Reports/Variations/Controller.php:186
  1759. msgid "Total Net Sales of all items sold."
  1760. msgstr ""
  1761. #: src/API/Reports/Products/Controller.php:182
  1762. #: src/API/Reports/Variations/Controller.php:192
  1763. msgid "Number of orders product appeared in."
  1764. msgstr ""
  1765. #: src/API/Reports/Products/Controller.php:189
  1766. #: src/API/Reports/Stock/Controller.php:396
  1767. #: src/API/Reports/Variations/Controller.php:199
  1768. msgid "Product name."
  1769. msgstr ""
  1770. #: src/API/Reports/Products/Controller.php:195
  1771. #: src/API/Reports/Variations/Controller.php:205
  1772. msgid "Product price."
  1773. msgstr ""
  1774. #: src/API/Reports/Products/Controller.php:201
  1775. #: src/API/Reports/Variations/Controller.php:211
  1776. msgid "Product image."
  1777. msgstr ""
  1778. #: src/API/Reports/Products/Controller.php:207
  1779. #: src/API/Reports/Variations/Controller.php:217
  1780. msgid "Product link."
  1781. msgstr ""
  1782. #: src/API/Reports/Products/Controller.php:213
  1783. msgid "Product category IDs."
  1784. msgstr ""
  1785. #: src/API/Reports/Products/Controller.php:219
  1786. #: src/API/Reports/Variations/Controller.php:229
  1787. msgid "Product inventory status."
  1788. msgstr ""
  1789. #: src/API/Reports/Products/Controller.php:225
  1790. #: src/API/Reports/Variations/Controller.php:235
  1791. msgid "Product inventory quantity."
  1792. msgstr ""
  1793. #: src/API/Reports/Products/Controller.php:231
  1794. #: src/API/Reports/Variations/Controller.php:241
  1795. msgid "Product inventory threshold for low stock."
  1796. msgstr ""
  1797. #: src/API/Reports/Products/Controller.php:237
  1798. msgid "Product variations IDs."
  1799. msgstr ""
  1800. #: src/API/Reports/Products/Controller.php:243
  1801. msgid "Product SKU."
  1802. msgstr ""
  1803. #: src/API/Reports/Products/Controller.php:312
  1804. #: src/API/Reports/Products/Stats/Controller.php:381
  1805. #: src/API/Reports/Variations/Stats/Controller.php:388
  1806. msgid "Limit result to items from the specified categories."
  1807. msgstr ""
  1808. #: src/API/Reports/Products/Controller.php:331
  1809. #: src/API/Reports/Products/Stats/Controller.php:390
  1810. msgid "Limit result to items with specified product ids."
  1811. msgstr ""
  1812. #: src/API/Reports/Products/Controller.php:341
  1813. msgid "Add additional piece of info about each product to the report."
  1814. msgstr ""
  1815. #: src/API/Reports/Products/Controller.php:389
  1816. #: src/API/Reports/Stock/Controller.php:539
  1817. #: src/API/Reports/Variations/Controller.php:413
  1818. #: client/analytics/report/products/table.js:47
  1819. #: client/analytics/report/stock/table.js:40
  1820. #: client/analytics/report/variations/table.js:44
  1821. msgid "SKU"
  1822. msgstr ""
  1823. #: src/API/Reports/Products/Controller.php:394 src/Features/Analytics.php:238
  1824. #: src/ReportCSVEmail.php:41
  1825. #: client/analytics/report/get-reports.js:70
  1826. #: client/analytics/report/orders/config.js:162
  1827. #: client/analytics/report/products/table.js:79
  1828. #: client/analytics/report/variations/table.js:277
  1829. msgid "Variations"
  1830. msgstr ""
  1831. #: src/API/Reports/Products/Controller.php:399
  1832. #: src/API/Reports/Stock/Controller.php:541
  1833. #: src/API/Reports/Variations/Controller.php:421 src/Features/Analytics.php:288
  1834. #: src/ReportCSVEmail.php:39
  1835. #: client/analytics/report/get-reports.js:111
  1836. #: client/analytics/report/products/table.js:91
  1837. #: client/analytics/report/stock/table.js:198
  1838. #: client/analytics/report/variations/table.js:79
  1839. #: client/homescreen/activity-panel/panels.js:56
  1840. msgid "Stock"
  1841. msgstr ""
  1842. #: src/API/Reports/Products/DataStore.php:227
  1843. #. translators: %s is product name
  1844. msgid "%s (Deleted)"
  1845. msgstr ""
  1846. #: src/API/Reports/Products/Stats/Controller.php:159
  1847. msgid "Products Sold"
  1848. msgstr ""
  1849. #: src/API/Reports/Products/Stats/Controller.php:160
  1850. msgid "Number of product items sold."
  1851. msgstr ""
  1852. #: src/API/Reports/Products/Stats/Controller.php:197
  1853. #: src/API/Reports/Variations/Stats/Controller.php:194
  1854. msgid "Human readable segment label, either product or variation name."
  1855. msgstr ""
  1856. #: src/API/Reports/Products/Stats/Controller.php:399
  1857. #: src/API/Reports/Variations/Controller.php:338
  1858. #: src/API/Reports/Variations/Stats/Controller.php:426
  1859. msgid "Limit result to items with specified variation ids."
  1860. msgstr ""
  1861. #: src/API/Reports/Query.php:22
  1862. #. translators: %s: Method name
  1863. msgid "Method '%s' not implemented. Must be overridden in subclass."
  1864. msgstr ""
  1865. #: src/API/Reports/Revenue/Stats/Controller.php:196
  1866. #: src/API/Reports/Revenue/Stats/Controller.php:455
  1867. #: client/analytics/report/revenue/config.js:55
  1868. #: client/analytics/report/revenue/table.js:107
  1869. #: client/dashboard/dashboard-charts/config.js:85
  1870. #: client/store-management-links/index.js:102
  1871. msgid "Shipping"
  1872. msgstr ""
  1873. #: src/API/Reports/Revenue/Stats/Controller.php:197
  1874. msgid "Total of shipping."
  1875. msgstr ""
  1876. #: src/API/Reports/Revenue/Stats/Controller.php:205
  1877. msgid "Total of taxes."
  1878. msgstr ""
  1879. #: src/API/Reports/Revenue/Stats/Controller.php:212
  1880. #: src/API/Reports/Revenue/Stats/Controller.php:452
  1881. #: client/analytics/report/revenue/config.js:24
  1882. #: client/analytics/report/revenue/table.js:79
  1883. #: client/dashboard/dashboard-charts/config.js:55
  1884. msgid "Returns"
  1885. msgstr ""
  1886. #: src/API/Reports/Revenue/Stats/Controller.php:213
  1887. msgid "Total of returns."
  1888. msgstr ""
  1889. #: src/API/Reports/Revenue/Stats/Controller.php:227
  1890. msgid "Items sold."
  1891. msgstr ""
  1892. #: src/API/Reports/Revenue/Stats/Controller.php:233
  1893. msgid "Products sold."
  1894. msgstr ""
  1895. #: src/API/Reports/Revenue/Stats/Controller.php:239
  1896. msgid "Gross Sales."
  1897. msgstr ""
  1898. #: src/API/Reports/Revenue/Stats/Controller.php:450
  1899. #: client/analytics/report/revenue/config.js:16
  1900. #: client/analytics/report/revenue/table.js:72
  1901. msgid "Gross Sales"
  1902. msgstr ""
  1903. #: src/API/Reports/Revenue/Stats/Controller.php:451
  1904. #: client/analytics/report/revenue/config.js:62
  1905. #: client/analytics/report/revenue/table.js:114
  1906. #: client/dashboard/dashboard-charts/config.js:30
  1907. msgid "Total Sales"
  1908. msgstr ""
  1909. #: src/API/Reports/Revenue/Stats/Controller.php:454
  1910. #: src/Features/Analytics.php:268 src/ReportCSVEmail.php:40
  1911. #: client/analytics/report/get-reports.js:102
  1912. #: client/analytics/report/revenue/config.js:47
  1913. #: client/analytics/report/revenue/table.js:100
  1914. #: client/analytics/report/taxes/table.js:203
  1915. msgid "Taxes"
  1916. msgstr ""
  1917. #: src/API/Reports/Stock/Controller.php:402
  1918. msgid "Unique identifier."
  1919. msgstr ""
  1920. #: src/API/Reports/Stock/Controller.php:408
  1921. msgid "Stock status."
  1922. msgstr ""
  1923. #: src/API/Reports/Stock/Controller.php:415
  1924. msgid "Stock quantity."
  1925. msgstr ""
  1926. #: src/API/Reports/Stock/Controller.php:421
  1927. msgid "Manage stock."
  1928. msgstr ""
  1929. #: src/API/Reports/Stock/Controller.php:458
  1930. msgid "Ensure result set excludes specific IDs."
  1931. msgstr ""
  1932. #: src/API/Reports/Stock/Controller.php:467
  1933. msgid "Limit result set to specific ids."
  1934. msgstr ""
  1935. #: src/API/Reports/Stock/Controller.php:476
  1936. msgid "Offset the result set by a specific number of items."
  1937. msgstr ""
  1938. #: src/API/Reports/Stock/Controller.php:504
  1939. msgid "Limit result set to those of particular parent IDs."
  1940. msgstr ""
  1941. #: src/API/Reports/Stock/Controller.php:513
  1942. msgid "Limit result set to all items except those of a particular parent ID."
  1943. msgstr ""
  1944. #: src/API/Reports/Stock/Controller.php:522
  1945. msgid "Limit result set to items assigned a stock report type."
  1946. msgstr ""
  1947. #: src/API/Reports/Stock/Controller.php:538
  1948. #: client/analytics/report/stock/table.js:33
  1949. msgid "Product / Variation"
  1950. msgstr ""
  1951. #: src/API/Reports/Stock/Stats/Controller.php:85
  1952. msgid "Number of products."
  1953. msgstr ""
  1954. #: src/API/Reports/Stock/Stats/Controller.php:91
  1955. msgid "Number of low stock products."
  1956. msgstr ""
  1957. #: src/API/Reports/Stock/Stats/Controller.php:102
  1958. #. translators: Stock status. Example: "Number of low stock products
  1959. msgid "Number of %s products."
  1960. msgstr ""
  1961. #: src/API/Reports/Taxes/Controller.php:157
  1962. msgid "Tax rate ID."
  1963. msgstr ""
  1964. #: src/API/Reports/Taxes/Controller.php:163
  1965. msgid "Tax rate name."
  1966. msgstr ""
  1967. #: src/API/Reports/Taxes/Controller.php:169
  1968. msgid "Tax rate."
  1969. msgstr ""
  1970. #: src/API/Reports/Taxes/Controller.php:181
  1971. msgid "State."
  1972. msgstr ""
  1973. #: src/API/Reports/Taxes/Controller.php:187
  1974. msgid "Priority."
  1975. msgstr ""
  1976. #: src/API/Reports/Taxes/Controller.php:193
  1977. #: src/API/Reports/Taxes/Stats/Controller.php:167
  1978. msgid "Total tax."
  1979. msgstr ""
  1980. #: src/API/Reports/Taxes/Controller.php:199
  1981. #: src/API/Reports/Taxes/Stats/Controller.php:175
  1982. msgid "Order tax."
  1983. msgstr ""
  1984. #: src/API/Reports/Taxes/Controller.php:205
  1985. #: src/API/Reports/Taxes/Stats/Controller.php:183
  1986. msgid "Shipping tax."
  1987. msgstr ""
  1988. #: src/API/Reports/Taxes/Controller.php:283
  1989. msgid "Limit result set to items assigned one or more tax rates."
  1990. msgstr ""
  1991. #: src/API/Reports/Taxes/Controller.php:302
  1992. #: client/analytics/report/taxes/table.js:30
  1993. msgid "Tax Code"
  1994. msgstr ""
  1995. #: src/API/Reports/Taxes/Controller.php:303
  1996. #: client/analytics/report/taxes/table.js:37
  1997. msgid "Rate"
  1998. msgstr ""
  1999. #: src/API/Reports/Taxes/Controller.php:304
  2000. #: client/analytics/report/taxes/config.js:26
  2001. #: client/analytics/report/taxes/table.js:43
  2002. #: client/dashboard/dashboard-charts/config.js:70
  2003. msgid "Total Tax"
  2004. msgstr ""
  2005. #: src/API/Reports/Taxes/Controller.php:305
  2006. #: client/analytics/report/taxes/config.js:33
  2007. #: client/analytics/report/taxes/table.js:48
  2008. #: client/dashboard/dashboard-charts/config.js:75
  2009. msgid "Order Tax"
  2010. msgstr ""
  2011. #: src/API/Reports/Taxes/Controller.php:306
  2012. #: client/analytics/report/taxes/config.js:40
  2013. #: client/analytics/report/taxes/table.js:53
  2014. #: client/dashboard/dashboard-charts/config.js:80
  2015. msgid "Shipping Tax"
  2016. msgstr ""
  2017. #: src/API/Reports/Taxes/Stats/Controller.php:197
  2018. msgid "Amount of tax codes."
  2019. msgstr ""
  2020. #: src/API/Reports/Taxes/Stats/Controller.php:372
  2021. msgid ""
  2022. "Limit result set to all items that have the specified term assigned in the "
  2023. "taxes taxonomy."
  2024. msgstr ""
  2025. #: src/API/Reports/Taxes/Stats/DataStore.php:223
  2026. msgid "Sorry, fetching tax data failed."
  2027. msgstr ""
  2028. #: src/API/Reports/TimeInterval.php:587 src/API/Reports/TimeInterval.php:619
  2029. #. translators: 1: parameter name
  2030. msgid "%1$s is not a numerically indexed array."
  2031. msgstr ""
  2032. #: src/API/Reports/TimeInterval.php:599
  2033. #. translators: %s: parameter name
  2034. msgid "%s must contain 2 numbers."
  2035. msgstr ""
  2036. #: src/API/Reports/TimeInterval.php:631
  2037. #. translators: %s: parameter name
  2038. msgid "%s must contain 2 valid dates."
  2039. msgstr ""
  2040. #: src/API/Reports/Variations/Controller.php:223
  2041. msgid "Product attributes."
  2042. msgstr ""
  2043. #: src/API/Reports/Variations/Controller.php:318
  2044. #: src/API/Reports/Variations/Stats/Controller.php:406
  2045. msgid "Limit result set to items that have the specified parent product(s)."
  2046. msgstr ""
  2047. #: src/API/Reports/Variations/Controller.php:328
  2048. #: src/API/Reports/Variations/Stats/Controller.php:416
  2049. msgid "Limit result set to items that don't have the specified parent product(s)."
  2050. msgstr ""
  2051. #: src/API/Reports/Variations/Controller.php:347
  2052. msgid "Add additional piece of info about each variation to the report."
  2053. msgstr ""
  2054. #: src/API/Reports/Variations/Controller.php:354
  2055. msgid "Limit result set to variations that include the specified attributes."
  2056. msgstr ""
  2057. #: src/API/Reports/Variations/Controller.php:363
  2058. msgid "Limit result set to variations that don't include the specified attributes."
  2059. msgstr ""
  2060. #: src/API/Reports/Variations/Controller.php:372
  2061. msgid "Limit result set to variations in the specified categories."
  2062. msgstr ""
  2063. #: src/API/Reports/Variations/Controller.php:381
  2064. #: src/API/Reports/Variations/Stats/Controller.php:397
  2065. msgid "Limit result set to variations not in the specified categories."
  2066. msgstr ""
  2067. #: src/API/Reports/Variations/Controller.php:412
  2068. #: client/analytics/report/variations/table.js:38
  2069. msgid "Product / Variation Title"
  2070. msgstr ""
  2071. #: src/API/Reports/Variations/Stats/Controller.php:156
  2072. msgid "Variations Sold"
  2073. msgstr ""
  2074. #: src/API/Reports/Variations/Stats/Controller.php:157
  2075. msgid "Number of variation items sold."
  2076. msgstr ""
  2077. #: src/API/Taxes.php:34
  2078. msgid "Search by similar tax code."
  2079. msgstr ""
  2080. #: src/API/Taxes.php:39
  2081. msgid "Limit result set to items that have the specified rate ID(s) assigned."
  2082. msgstr ""
  2083. #: src/API/Themes.php:62
  2084. msgid "Sorry, you are not allowed to install themes on this site."
  2085. msgstr ""
  2086. #: src/API/Themes.php:77
  2087. msgid "Specified file failed upload test."
  2088. msgstr ""
  2089. #: src/API/Themes.php:165
  2090. msgid "Theme installation status."
  2091. msgstr ""
  2092. #: src/API/Themes.php:171
  2093. msgid "Theme installation message."
  2094. msgstr ""
  2095. #: src/API/Themes.php:177
  2096. msgid "Uploaded theme."
  2097. msgstr ""
  2098. #: src/API/Themes.php:196
  2099. msgid "A zip file of the theme to be uploaded."
  2100. msgstr ""
  2101. #: src/FeaturePlugin.php:228
  2102. #. translators: 1: URL of WooCommerce plugin, 2: The minimum WooCommerce
  2103. #. version number
  2104. msgid ""
  2105. "The WooCommerce Admin feature plugin requires <a "
  2106. "href=\"%1$s\">WooCommerce</a> %2$s or greater to be installed and active."
  2107. msgstr ""
  2108. #: src/FeaturePlugin.php:237
  2109. #. translators: 1: URL of WordPress.org, 2: The minimum WordPress version
  2110. #. number
  2111. msgid ""
  2112. "The WooCommerce Admin feature plugin requires <a "
  2113. "href=\"%1$s\">WordPress</a> %2$s or greater to be installed and active."
  2114. msgstr ""
  2115. #: src/Features/Analytics.php:67
  2116. msgid "Enables WooCommerce Analytics"
  2117. msgstr ""
  2118. #: src/Features/Analytics.php:73 src/Features/Analytics.php:188
  2119. #: src/Features/Analytics.php:308 src/Features/Navigation/CoreMenu.php:96
  2120. #: client/layout/controller.js:134
  2121. #: client/layout/navigation.js:46
  2122. msgid "Analytics"
  2123. msgstr ""
  2124. #: src/Features/Analytics.php:156
  2125. msgid "Clear analytics cache"
  2126. msgstr ""
  2127. #: src/Features/Analytics.php:157
  2128. msgid "Clear"
  2129. msgstr ""
  2130. #: src/Features/Analytics.php:160
  2131. #. translators: 1: opening link tag, 2: closing tag
  2132. msgid ""
  2133. "This tool will reset the cached values used in WooCommerce Analytics. If "
  2134. "numbers still look off, try %1$sReimporting Historical Data%2$s."
  2135. msgstr ""
  2136. #: src/Features/Analytics.php:198 src/Features/Marketing.php:137
  2137. #: client/layout/controller.js:151
  2138. msgid "Overview"
  2139. msgstr ""
  2140. #: src/Features/Analytics.php:218 src/ReportCSVEmail.php:38
  2141. #: client/analytics/report/get-reports.js:54
  2142. #: client/analytics/report/revenue/table.js:277
  2143. msgid "Revenue"
  2144. msgstr ""
  2145. #: src/Features/Analytics.php:248 src/ReportCSVEmail.php:32
  2146. #: client/analytics/report/categories/table.js:211
  2147. #: client/analytics/report/get-reports.js:86
  2148. #: client/analytics/report/variations/config.js:175
  2149. msgid "Categories"
  2150. msgstr ""
  2151. #: src/Features/Analytics.php:298 src/Features/Navigation/CoreMenu.php:201
  2152. #: src/ReportCSVEmail.php:34
  2153. #: client/analytics/report/customers/table.js:290
  2154. #: client/analytics/report/get-reports.js:120
  2155. #: client/layout/controller.js:112
  2156. msgid "Customers"
  2157. msgstr ""
  2158. #: src/Features/Analytics.php:323
  2159. msgid "Analytics cache cleared."
  2160. msgstr ""
  2161. #: src/Features/CustomerEffortScoreTracks.php:104
  2162. #: client/customer-effort-score-tracks/customer-effort-score-tracks.js:38
  2163. msgid "Thank you for your feedback!"
  2164. msgstr ""
  2165. #: src/Features/CustomerEffortScoreTracks.php:246
  2166. #: client/customer-effort-score-tracks/data/actions.js:73
  2167. msgid "How easy was it to use search?"
  2168. msgstr ""
  2169. #: src/Features/CustomerEffortScoreTracks.php:306
  2170. msgid "How easy was it to add product category?"
  2171. msgstr ""
  2172. #: src/Features/CustomerEffortScoreTracks.php:322
  2173. msgid "How easy was it to add a product tag?"
  2174. msgstr ""
  2175. #: src/Features/CustomerEffortScoreTracks.php:343
  2176. msgid "How easy was it to import products?"
  2177. msgstr ""
  2178. #: src/Features/CustomerEffortScoreTracks.php:378
  2179. msgid "How easy was it to update your settings?"
  2180. msgstr ""
  2181. #: src/Features/CustomerEffortScoreTracks.php:401
  2182. msgid "How easy was it to add a product attribute?"
  2183. msgstr ""
  2184. #: src/Features/Features.php:261 src/Features/Features.php:298
  2185. msgid "Features"
  2186. msgstr ""
  2187. #: src/Features/Features.php:288
  2188. msgid ""
  2189. "Start using new features that are being progressively rolled out to improve "
  2190. "the store management experience."
  2191. msgstr ""
  2192. #: src/Features/Features.php:289
  2193. msgid "WooCommerce features have been disabled."
  2194. msgstr ""
  2195. #: src/Features/Homescreen.php:94 src/Features/Navigation/CoreMenu.php:190
  2196. #: client/layout/controller.js:63
  2197. msgid "Home"
  2198. msgstr ""
  2199. #: src/Features/Marketing.php:75 src/Features/Marketing.php:76
  2200. #: src/Features/Navigation/CoreMenu.php:108
  2201. #: client/layout/controller.js:150
  2202. #: client/store-management-links/index.js:34
  2203. msgid "Marketing"
  2204. msgstr ""
  2205. #: src/Features/Navigation/CoreMenu.php:250 src/Notes/OrderMilestones.php:245
  2206. msgid "Browse"
  2207. msgstr ""
  2208. #: src/Features/Navigation/CoreMenu.php:277
  2209. msgid "Utilities"
  2210. msgstr ""
  2211. #: src/Features/Navigation/CoreMenu.php:286
  2212. msgid "Import / Export"
  2213. msgstr ""
  2214. #: src/Features/Navigation/Favorites.php:57
  2215. #: src/Features/Navigation/Favorites.php:90
  2216. #: src/Features/Navigation/Favorites.php:122
  2217. msgid "Sorry, invalid request"
  2218. msgstr ""
  2219. #: src/Features/Navigation/Favorites.php:66
  2220. msgid "Favorite already exists"
  2221. msgstr ""
  2222. #: src/Features/Navigation/Favorites.php:99
  2223. msgid "Favorite item not found"
  2224. msgstr ""
  2225. #: src/Features/Navigation/Init.php:48
  2226. msgid "Adds the new WooCommerce navigation experience to the dashboard"
  2227. msgstr ""
  2228. #: src/Features/Navigation/Init.php:57
  2229. #. translators: 1: line break tag, 2: open link to WordPress update link, 3:
  2230. #. close link tag.
  2231. msgid "%1$s %2$sUpdate WordPress to enable the new navigation%3$s"
  2232. msgstr ""
  2233. #: src/Features/Navigation/Init.php:65
  2234. msgid "Navigation"
  2235. msgstr ""
  2236. #: src/Features/Navigation/Menu.php:189
  2237. #: client/header/index.js:31
  2238. msgid "WooCommerce Home"
  2239. msgstr ""
  2240. #: src/Features/Navigation/Menu.php:229
  2241. #. translators: 1: Duplicate menu item path.
  2242. msgid ""
  2243. "You have attempted to register a duplicate item with WooCommerce "
  2244. "Navigation: %1$s"
  2245. msgstr ""
  2246. #: src/Features/Navigation/Menu.php:374
  2247. #. translators: 1: Duplicate menu item path.
  2248. msgid ""
  2249. "The item ID %1$s attempted to register using an invalid option. The "
  2250. "arguments `menuId` and `parent` are not allowed for add_setting_item()"
  2251. msgstr ""
  2252. #: src/Features/Onboarding.php:380
  2253. msgid "Fashion, apparel, and accessories"
  2254. msgstr ""
  2255. #: src/Features/Onboarding.php:385
  2256. msgid "Health and beauty"
  2257. msgstr ""
  2258. #: src/Features/Onboarding.php:390
  2259. msgid "Electronics and computers"
  2260. msgstr ""
  2261. #: src/Features/Onboarding.php:395
  2262. msgid "Food and drink"
  2263. msgstr ""
  2264. #: src/Features/Onboarding.php:400
  2265. msgid "Home, furniture, and garden"
  2266. msgstr ""
  2267. #: src/Features/Onboarding.php:405
  2268. msgid "CBD and other hemp-derived products"
  2269. msgstr ""
  2270. #: src/Features/Onboarding.php:410
  2271. msgid "Education and learning"
  2272. msgstr ""
  2273. #: src/Features/Onboarding.php:415
  2274. #: client/profile-wizard/steps/business-details/data/platform-options.js:41
  2275. msgid "Other"
  2276. msgstr ""
  2277. #: src/Features/Onboarding.php:417
  2278. msgid "Description"
  2279. msgstr ""
  2280. #: src/Features/Onboarding.php:432
  2281. msgid "Physical products"
  2282. msgstr ""
  2283. #: src/Features/Onboarding.php:439
  2284. msgid "Subscriptions"
  2285. msgstr ""
  2286. #: src/Features/Onboarding.php:443
  2287. msgid "Memberships"
  2288. msgstr ""
  2289. #: src/Features/Onboarding.php:447
  2290. msgid "Bookings"
  2291. msgstr ""
  2292. #: src/Features/Onboarding.php:451
  2293. msgid "Bundles"
  2294. msgstr ""
  2295. #: src/Features/Onboarding.php:455
  2296. msgid "Customizable products"
  2297. msgstr ""
  2298. #: src/Features/Onboarding.php:624
  2299. #. translators: site currency symbol (used to show that the product costs
  2300. #. money)
  2301. msgid " — %s"
  2302. msgstr ""
  2303. #: src/Features/Onboarding.php:833 src/Features/Onboarding.php:845
  2304. msgid "Setup wizard"
  2305. msgstr ""
  2306. #: src/Features/Onboarding.php:841
  2307. msgid "WooCommerce Onboarding"
  2308. msgstr ""
  2309. #: src/Features/Onboarding.php:843
  2310. msgid "Profile Setup Wizard"
  2311. msgstr ""
  2312. #: src/Features/Onboarding.php:844
  2313. msgid ""
  2314. "If you need to access the setup wizard again, please click on the button "
  2315. "below."
  2316. msgstr ""
  2317. #: src/Features/Onboarding.php:847
  2318. msgid "Task List"
  2319. msgstr ""
  2320. #: src/Features/Onboarding.php:848
  2321. msgid ""
  2322. "If you need to enable or disable the task lists, please click on the button "
  2323. "below."
  2324. msgstr ""
  2325. #: src/Features/Onboarding.php:850 src/Features/Onboarding.php:857
  2326. #: client/task-list/tasks/PaymentGatewaySuggestions/components/Action.js:87
  2327. msgid "Enable"
  2328. msgstr ""
  2329. #: src/Features/Onboarding.php:851 src/Features/Onboarding.php:858
  2330. msgid "Disable"
  2331. msgstr ""
  2332. #: src/Features/Onboarding.php:854
  2333. msgid "Extended task List"
  2334. msgstr ""
  2335. #: src/Features/Onboarding.php:855
  2336. msgid ""
  2337. "If you need to enable or disable the extended task lists, please click on "
  2338. "the button below."
  2339. msgstr ""
  2340. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:26
  2341. msgid "PayFast"
  2342. msgstr ""
  2343. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:27
  2344. msgid ""
  2345. "The PayFast extension for WooCommerce enables you to accept payments by "
  2346. "Credit Card and EFT via one of South Africa’s most popular payment "
  2347. "gateways. No setup fees or monthly subscription costs. Selecting this "
  2348. "extension will configure your store to use South African rands as the "
  2349. "selected currency."
  2350. msgstr ""
  2351. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:41
  2352. msgid " Stripe"
  2353. msgstr ""
  2354. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:42
  2355. msgid ""
  2356. "Accept debit and credit cards in 135+ currencies, methods such as Alipay, "
  2357. "and one-touch checkout with Apple Pay."
  2358. msgstr ""
  2359. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:53
  2360. msgid "Paystack"
  2361. msgstr ""
  2362. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:54
  2363. msgid ""
  2364. "Paystack helps African merchants accept one-time and recurring payments "
  2365. "online with a modern, safe, and secure payment gateway."
  2366. msgstr ""
  2367. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:64
  2368. msgid "Klarna Checkout"
  2369. msgstr ""
  2370. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:65
  2371. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:76
  2372. msgid ""
  2373. "Choose the payment that you want, pay now, pay later or slice it. No credit "
  2374. "card numbers, no passwords, no worries."
  2375. msgstr ""
  2376. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:75
  2377. msgid "Klarna Payments"
  2378. msgstr ""
  2379. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:100
  2380. msgid "Mollie"
  2381. msgstr ""
  2382. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:101
  2383. msgid ""
  2384. "Effortless payments by Mollie: Offer global and local payment methods, get "
  2385. "onboarded in minutes, and supported in your language."
  2386. msgstr ""
  2387. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:124
  2388. msgid "Mercado Pago Checkout Pro & Custom"
  2389. msgstr ""
  2390. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:125
  2391. msgid ""
  2392. "Accept credit and debit cards, offline (cash or bank transfer) and "
  2393. "logged-in payments with money in Mercado Pago. Safe and secure payments "
  2394. "with the leading payment processor in LATAM."
  2395. msgstr ""
  2396. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:136
  2397. msgid "PayPal Payments"
  2398. msgstr ""
  2399. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:137
  2400. msgid ""
  2401. "Safe and secure payments using credit cards or your customer's PayPal "
  2402. "account."
  2403. msgstr ""
  2404. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:151
  2405. msgid "Cash on delivery"
  2406. msgstr ""
  2407. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:152
  2408. msgid "Take payments in cash upon delivery."
  2409. msgstr ""
  2410. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:160
  2411. msgid "Direct bank transfer"
  2412. msgstr ""
  2413. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:161
  2414. msgid "Take payments via bank transfer."
  2415. msgstr ""
  2416. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:169
  2417. #: packages/data/build-module/plugins/constants.js:20
  2418. #: packages/data/src/plugins/constants.ts:46
  2419. msgid "WooCommerce Payments"
  2420. msgstr ""
  2421. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:170
  2422. msgid ""
  2423. "Manage transactions without leaving your WordPress Dashboard. Only with "
  2424. "WooCommerce Payments."
  2425. msgstr ""
  2426. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:185
  2427. #: packages/data/build-module/plugins/constants.js:27
  2428. #: packages/data/src/plugins/constants.ts:71
  2429. msgid "Razorpay"
  2430. msgstr ""
  2431. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:186
  2432. msgid ""
  2433. "The official Razorpay extension for WooCommerce allows you to accept credit "
  2434. "cards, debit cards, netbanking, wallet, and UPI payments."
  2435. msgstr ""
  2436. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:200
  2437. msgid "PayU for WooCommerce"
  2438. msgstr ""
  2439. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:201
  2440. msgid ""
  2441. "Enable PayU’s exclusive plugin for WooCommerce to start accepting payments "
  2442. "in 100+ payment methods available in India including credit cards, debit "
  2443. "cards, UPI, & more!"
  2444. msgstr ""
  2445. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:215
  2446. msgid "eWAY"
  2447. msgstr ""
  2448. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:216
  2449. msgid ""
  2450. "The eWAY extension for WooCommerce allows you to take credit card payments "
  2451. "directly on your store without redirecting your customers to a third party "
  2452. "site to make payment."
  2453. msgstr ""
  2454. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:226
  2455. msgid "Square"
  2456. msgstr ""
  2457. #: src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php:227
  2458. msgid ""
  2459. "Securely accept credit and debit cards with one low rate, no surprise fees "
  2460. "(custom rates available). Sell online and in store and track sales and "
  2461. "inventory in one place."
  2462. msgstr ""
  2463. #: src/Features/PaymentGatewaySuggestions/PaymentGatewaysController.php:134
  2464. #. translators: the title of the payment gateway
  2465. msgid "%s connected successfully"
  2466. msgstr ""
  2467. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:26
  2468. msgid "Get the basics"
  2469. msgstr ""
  2470. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:32
  2471. #. translators: 1: opening product link tag. 2: closing link tag
  2472. msgid "Accept credit cards with %1$sWooCommerce Payments%2$s"
  2473. msgstr ""
  2474. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:130
  2475. #. translators: 1: opening product link tag. 2: closing link tag
  2476. msgid "Print shipping labels with %1$sWooCommerce Shipping%2$s"
  2477. msgstr ""
  2478. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:197
  2479. #. translators: 1: opening product link tag. 2: closing link tag
  2480. msgid "Get automated sales tax with %1$sWooCommerce Tax%2$s"
  2481. msgstr ""
  2482. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:277
  2483. #. translators: 1: opening product link tag. 2: closing link tag
  2484. msgid "Enhance speed and security with %1$sJetpack%2$s"
  2485. msgstr ""
  2486. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:295
  2487. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:324
  2488. #: packages/data/build-module/plugins/constants.js:28
  2489. #: packages/data/src/plugins/constants.ts:72
  2490. msgid "MailPoet"
  2491. msgstr ""
  2492. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:296
  2493. msgid "Level up your email marketing with {{link}}MailPoet{{/link}}"
  2494. msgstr ""
  2495. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:299
  2496. #. translators: 1: opening product link tag. 2: closing link tag
  2497. msgid "Level up your email marketing with %1$sMailPoet%2$s"
  2498. msgstr ""
  2499. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:320
  2500. msgid "Reach out to customers"
  2501. msgstr ""
  2502. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:325
  2503. msgid ""
  2504. "Create and send purchase follow-up emails, newsletters, and promotional "
  2505. "campaigns straight from your dashboard."
  2506. msgstr ""
  2507. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:331
  2508. msgid "Mailchimp"
  2509. msgstr ""
  2510. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:332
  2511. msgid ""
  2512. "Send targeted campaigns, recover abandoned carts and much more with "
  2513. "Mailchimp."
  2514. msgstr ""
  2515. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:338
  2516. #: packages/data/build-module/plugins/constants.js:16
  2517. #: packages/data/src/plugins/constants.ts:30
  2518. msgid "Creative Mail for WooCommerce"
  2519. msgstr ""
  2520. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:339
  2521. msgid ""
  2522. "Create on-brand store campaigns, fast email promotions and customer "
  2523. "retargeting with Creative Mail."
  2524. msgstr ""
  2525. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:347
  2526. msgid "Grow your store"
  2527. msgstr ""
  2528. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:351
  2529. msgid "Google Ads & Marketing by Kliken"
  2530. msgstr ""
  2531. #: src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php:352
  2532. msgid ""
  2533. "Get in front of shoppers and drive traffic so you can grow your business "
  2534. "with Smart Shopping Campaigns and free listings."
  2535. msgstr ""
  2536. #: src/Features/Settings.php:90
  2537. msgid "Adds the new WooCommerce settings UI."
  2538. msgstr ""
  2539. #: src/Features/ShippingLabelBanner.php:91
  2540. #: client/wp-admin-scripts/print-shipping-label-banner/shipping-banner/index.js:193
  2541. msgid "Shipping Label"
  2542. msgstr ""
  2543. #: src/Loader.php:128
  2544. #. translators: %s: is referring to the plugin's name.
  2545. msgid "You have the %s plugin activated but it is not being used."
  2546. msgstr ""
  2547. #: src/Loader.php:321
  2548. #: client/layout/controller.js:167
  2549. msgid "Setup Wizard"
  2550. msgstr ""
  2551. #: src/Loader.php:992
  2552. #. translators: %1$s: updated title, %2$s: blog info name
  2553. msgid "%1$s &lsaquo; %2$s"
  2554. msgstr ""
  2555. #. Plugin Name of the plugin/theme
  2556. msgid "WooCommerce Admin"
  2557. msgstr ""
  2558. #: src/Loader.php:1165
  2559. msgid "Settings for WooCommerce admin reporting."
  2560. msgstr ""
  2561. #: src/Loader.php:1184
  2562. msgid "Excluded report order statuses"
  2563. msgstr ""
  2564. #: src/Loader.php:1185
  2565. msgid "Statuses that should not be included when calculating report totals."
  2566. msgstr ""
  2567. #: src/Loader.php:1193
  2568. msgid "Actionable order statuses"
  2569. msgstr ""
  2570. #: src/Loader.php:1194
  2571. msgid "Statuses that require extra action on behalf of the store admin."
  2572. msgstr ""
  2573. #: src/Loader.php:1202 src/Loader.php:1203
  2574. msgid "Default Date Range"
  2575. msgstr ""
  2576. #: src/Notes/AddFirstProduct.php:64
  2577. #. translators: %s: line break
  2578. msgid ""
  2579. "Nice one; you've created a WooCommerce store! Now it's time to add your "
  2580. "first product and get ready to start selling.%s"
  2581. msgstr ""
  2582. #: src/Notes/AddFirstProduct.php:65
  2583. msgid ""
  2584. "There are three ways to add your products: you can <strong>create products "
  2585. "manually, import them at once via CSV file</strong>, or <strong>migrate "
  2586. "them from another service</strong>.<br/><br/>"
  2587. msgstr ""
  2588. #: src/Notes/AddFirstProduct.php:67
  2589. #. translators: %1$s is an open anchor tag (<a>) and %2$s is a close link tag
  2590. #. (</a>).
  2591. msgid "%1$1sExplore our docs%2$2s for more information, or just get started!"
  2592. msgstr ""
  2593. #: src/Notes/AddFirstProduct.php:75
  2594. msgid "Add your first product"
  2595. msgstr ""
  2596. #: src/Notes/AddFirstProduct.php:87
  2597. msgid "Add a product"
  2598. msgstr ""
  2599. #: src/Notes/AddingAndManangingProducts.php:58
  2600. #: client/header/activity-panel/panels/help.js:204
  2601. msgid "Adding and Managing Products"
  2602. msgstr ""
  2603. #: src/Notes/AddingAndManangingProducts.php:60
  2604. msgid ""
  2605. "Learn more about how to set up products in WooCommerce through our useful "
  2606. "documentation about adding and managing products."
  2607. msgstr ""
  2608. #: src/Notes/AddingAndManangingProducts.php:71 src/Notes/ChooseNiche.php:75
  2609. #: src/Notes/CustomizeStoreWithBlocks.php:77
  2610. #: src/Notes/CustomizingProductCatalog.php:74 src/Notes/DrawAttention.php:68
  2611. #: src/Notes/EUVATNumber.php:53 src/Notes/EditProductsOnTheMove.php:62
  2612. #: src/Notes/FilterByProductVariationsInReports.php:50
  2613. #: src/Notes/FirstDownlaodableProduct.php:62 src/Notes/LaunchChecklist.php:54
  2614. #: src/Notes/LearnMoreAboutVariableProducts.php:77
  2615. #: src/Notes/ManageOrdersOnTheGo.php:55
  2616. #: src/Notes/ManageStoreActivityFromHomeScreen.php:58
  2617. #: src/Notes/MigrateFromShopify.php:70 src/Notes/MobileApp.php:47
  2618. #: src/Notes/OnboardingPayments.php:58 src/Notes/OnlineClothingStore.php:89
  2619. #: src/Notes/OrderMilestones.php:239 src/Notes/PerformanceOnMobile.php:59
  2620. #: src/Notes/RealTimeOrderAlerts.php:51 src/Notes/SellingOnlineCourses.php:76
  2621. #: src/Notes/StartDropshippingBusiness.php:75
  2622. #: src/Notes/UnsecuredReportFiles.php:48
  2623. #: src/Notes/WelcomeToWooCommerceForStoreUsers.php:50
  2624. #: src/Notes/WooCommercePayments.php:117
  2625. #: client/profile-wizard/steps/product-types/label.js:73
  2626. #: packages/onboarding/build-module/components/WCPayCard/WCPayCard.js:22
  2627. msgid "Learn more"
  2628. msgstr ""
  2629. #: src/Notes/ChooseNiche.php:67
  2630. msgid "Finding an audience for your business"
  2631. msgstr ""
  2632. #: src/Notes/ChooseNiche.php:68
  2633. msgid ""
  2634. "There’s nothing quite like entrepreneurship! We put together a blog post "
  2635. "series — titled From Idea to First Customer — with all the tips, resources, "
  2636. "and tools to inspire a great idea, empower you to execute it, and lead to "
  2637. "your very first sale."
  2638. msgstr ""
  2639. #: src/Notes/ChoosingTheme.php:39
  2640. msgid "Choosing a theme?"
  2641. msgstr ""
  2642. #: src/Notes/ChoosingTheme.php:40
  2643. msgid ""
  2644. "Check out the themes that are compatible with WooCommerce and choose one "
  2645. "aligned with your brand and business needs."
  2646. msgstr ""
  2647. #: src/Notes/ChoosingTheme.php:47
  2648. msgid "Visit the theme marketplace"
  2649. msgstr ""
  2650. #: src/Notes/CouponPageMoved.php:73
  2651. msgid "Coupon management has moved!"
  2652. msgstr ""
  2653. #: src/Notes/CouponPageMoved.php:74
  2654. msgid ""
  2655. "Coupons can now be managed from Marketing > Coupons. Click the button below "
  2656. "to remove the legacy WooCommerce > Coupons menu item."
  2657. msgstr ""
  2658. #: src/Notes/CouponPageMoved.php:81
  2659. msgid "Remove legacy coupon menu"
  2660. msgstr ""
  2661. #: src/Notes/CustomizeStoreWithBlocks.php:69
  2662. msgid "Customize your online store with WooCommerce blocks"
  2663. msgstr ""
  2664. #: src/Notes/CustomizeStoreWithBlocks.php:70
  2665. msgid ""
  2666. "With our blocks, you can select and display products, categories, filters, "
  2667. "and more virtually anywhere on your site — no need to use shortcodes or "
  2668. "edit lines of code. Learn more about how to use each one of them."
  2669. msgstr ""
  2670. #: src/Notes/CustomizingProductCatalog.php:66
  2671. msgid "How to customize your product catalog"
  2672. msgstr ""
  2673. #: src/Notes/CustomizingProductCatalog.php:67
  2674. msgid ""
  2675. "You want your product catalog and images to look great and align with your "
  2676. "brand. This guide will give you all the tips you need to get your products "
  2677. "looking great in your store."
  2678. msgstr ""
  2679. #: src/Notes/DataStore.php:126
  2680. msgid "Invalid admin note"
  2681. msgstr ""
  2682. #: src/Notes/DeactivatePlugin.php:40
  2683. msgid "Deactivate old WooCommerce Admin version"
  2684. msgstr ""
  2685. #: src/Notes/DeactivatePlugin.php:41
  2686. msgid ""
  2687. "Your current version of WooCommerce Admin is outdated and a newer version "
  2688. "is included with WooCommerce. We recommend deactivating the plugin and "
  2689. "using the stable version included with WooCommerce."
  2690. msgstr ""
  2691. #: src/Notes/DeactivatePlugin.php:48
  2692. msgid "Deactivate"
  2693. msgstr ""
  2694. #: src/Notes/DrawAttention.php:60
  2695. msgid "Get noticed: how to draw attention to your online store"
  2696. msgstr ""
  2697. #: src/Notes/DrawAttention.php:61
  2698. msgid ""
  2699. "To get you started, here are seven ways to boost your sales and avoid "
  2700. "getting drowned out by similar, mass-produced products competing for the "
  2701. "same buyers."
  2702. msgstr ""
  2703. #: src/Notes/EUVATNumber.php:42
  2704. msgid ""
  2705. "If your store is based in the EU, we recommend using the EU VAT Number "
  2706. "extension in addition to automated taxes. It provides your checkout with a "
  2707. "field to collect and validate a customer's EU VAT number, if they have one."
  2708. msgstr ""
  2709. #: src/Notes/EUVATNumber.php:45
  2710. msgid "Collect and validate EU VAT numbers at checkout"
  2711. msgstr ""
  2712. #: src/Notes/EditProductsOnTheMove.php:54
  2713. msgid "Edit products on the move"
  2714. msgstr ""
  2715. #: src/Notes/EditProductsOnTheMove.php:55
  2716. msgid "Edit and create new products from your mobile devices with the Woo app"
  2717. msgstr ""
  2718. #: src/Notes/FilterByProductVariationsInReports.php:35
  2719. msgid "New - filter by product variations in orders and products reports"
  2720. msgstr ""
  2721. #: src/Notes/FilterByProductVariationsInReports.php:36
  2722. msgid ""
  2723. "One of the most awaited features has just arrived! You can now have "
  2724. "insights into each product variation in the orders and products reports."
  2725. msgstr ""
  2726. #: src/Notes/FirstDownlaodableProduct.php:49
  2727. msgid "Learn more about digital/downloadable products"
  2728. msgstr ""
  2729. #: src/Notes/FirstDownlaodableProduct.php:51
  2730. msgid ""
  2731. "Congrats on adding your first digital product! You can learn more about how "
  2732. "to handle digital or downloadable products in our documentation."
  2733. msgstr ""
  2734. #: src/Notes/FirstProduct.php:69
  2735. msgid "Do you need help with adding your first product?"
  2736. msgstr ""
  2737. #: src/Notes/FirstProduct.php:70
  2738. msgid ""
  2739. "This video tutorial will help you go through the process of adding your "
  2740. "first product in WooCommerce."
  2741. msgstr ""
  2742. #: src/Notes/FirstProduct.php:77
  2743. msgid "Watch tutorial"
  2744. msgstr ""
  2745. #: src/Notes/GettingStartedInEcommerceWebinar.php:68
  2746. msgid "Getting Started in eCommerce - webinar"
  2747. msgstr ""
  2748. #: src/Notes/GettingStartedInEcommerceWebinar.php:69
  2749. msgid ""
  2750. "We want to make eCommerce and this process of getting started as easy as "
  2751. "possible for you. Watch this webinar to get tips on how to have our store "
  2752. "up and running in a breeze."
  2753. msgstr ""
  2754. #: src/Notes/GettingStartedInEcommerceWebinar.php:76
  2755. msgid "Watch the webinar"
  2756. msgstr ""
  2757. #: src/Notes/GivingFeedbackNotes.php:40
  2758. msgid "You're invited to share your experience"
  2759. msgstr ""
  2760. #: src/Notes/GivingFeedbackNotes.php:41
  2761. msgid ""
  2762. "Now that you’ve chosen us as a partner, our goal is to make sure we're "
  2763. "providing the right tools to meet your needs. We're looking forward to "
  2764. "having your feedback on the store setup experience so we can improve it in "
  2765. "the future."
  2766. msgstr ""
  2767. #: src/Notes/GivingFeedbackNotes.php:48 src/Notes/NavigationFeedback.php:46
  2768. #: src/Notes/NavigationFeedbackFollowUp.php:60
  2769. #: client/wp-admin-scripts/navigation-opt-out/container.js:57
  2770. msgid "Share feedback"
  2771. msgstr ""
  2772. #: src/Notes/InsightFirstProductAndPayment.php:40
  2773. msgid "Insight"
  2774. msgstr ""
  2775. #: src/Notes/InsightFirstProductAndPayment.php:41
  2776. msgid ""
  2777. "More than 80% of new merchants add the first product and have at least one "
  2778. "payment method set up during the first week.<br><br>Do you find this type "
  2779. "of insight useful?"
  2780. msgstr ""
  2781. #: src/Notes/InsightFirstProductAndPayment.php:48
  2782. #: src/Notes/InsightFirstSale.php:51
  2783. msgid "Yes"
  2784. msgstr ""
  2785. #: src/Notes/InsightFirstProductAndPayment.php:52
  2786. #: src/Notes/InsightFirstProductAndPayment.php:61
  2787. #: src/Notes/InsightFirstSale.php:55 src/Notes/InsightFirstSale.php:63
  2788. msgid "Thanks for your feedback"
  2789. msgstr ""
  2790. #: src/Notes/InsightFirstProductAndPayment.php:57
  2791. #: src/Notes/InsightFirstSale.php:59
  2792. #: client/profile-wizard/steps/business-details/data/selling-venue-options.js:9
  2793. msgid "No"
  2794. msgstr ""
  2795. #: src/Notes/InsightFirstSale.php:39
  2796. msgid "Did you know?"
  2797. msgstr ""
  2798. #: src/Notes/InsightFirstSale.php:40
  2799. msgid ""
  2800. "A WooCommerce powered store needs on average 31 days to get the first sale. "
  2801. "You're on the right track! Do you find this type of insight useful?"
  2802. msgstr ""
  2803. #: src/Notes/InstallJPAndWCSPlugins.php:44
  2804. msgid ""
  2805. "We noticed that there was a problem during the Jetpack and WooCommerce "
  2806. "Shipping & Tax install. Please try again and enjoy all the advantages of "
  2807. "having the plugins connected to your store! Sorry for the inconvenience. "
  2808. "The \"Jetpack\" and \"WooCommerce Shipping & Tax\" plugins will be "
  2809. "installed & activated for free."
  2810. msgstr ""
  2811. #: src/Notes/InstallJPAndWCSPlugins.php:47
  2812. msgid ""
  2813. "Uh oh... There was a problem during the Jetpack and WooCommerce Shipping & "
  2814. "Tax install. Please try again."
  2815. msgstr ""
  2816. #: src/Notes/InstallJPAndWCSPlugins.php:55
  2817. msgid "Install plugins"
  2818. msgstr ""
  2819. #: src/Notes/LaunchChecklist.php:45
  2820. msgid ""
  2821. "To make sure you never get that sinking \"what did I forget\" feeling, "
  2822. "we've put together the essential pre-launch checklist."
  2823. msgstr ""
  2824. #: src/Notes/LaunchChecklist.php:48
  2825. msgid "Ready to launch your store?"
  2826. msgstr ""
  2827. #: src/Notes/LearnMoreAboutVariableProducts.php:64
  2828. msgid "Learn more about variable products"
  2829. msgstr ""
  2830. #: src/Notes/LearnMoreAboutVariableProducts.php:66
  2831. msgid ""
  2832. "Variable products are a powerful product type that lets you offer a set of "
  2833. "variations on a product, with control over prices, stock, image and more "
  2834. "for each variation. They can be used for a product like a shirt, where you "
  2835. "can offer a large, medium and small and in different colors."
  2836. msgstr ""
  2837. #: src/Notes/ManageOrdersOnTheGo.php:47
  2838. msgid "Manage your orders on the go"
  2839. msgstr ""
  2840. #: src/Notes/ManageOrdersOnTheGo.php:48
  2841. msgid ""
  2842. "Look for orders, customer info, and process refunds in one click with the "
  2843. "Woo app."
  2844. msgstr ""
  2845. #: src/Notes/ManageStoreActivityFromHomeScreen.php:51
  2846. msgid "New! Manage your store activity from the Home screen"
  2847. msgstr ""
  2848. #: src/Notes/ManageStoreActivityFromHomeScreen.php:52
  2849. msgid ""
  2850. "Start your day knowing the next steps you need to take with your orders, "
  2851. "products, and customer feedback.<br/><br/>Read more about how to use the "
  2852. "activity panels on the Home screen."
  2853. msgstr ""
  2854. #: src/Notes/Marketing.php:39
  2855. msgid "Connect with your audience"
  2856. msgstr ""
  2857. #: src/Notes/Marketing.php:40
  2858. msgid ""
  2859. "Grow your customer base and increase your sales with marketing tools built "
  2860. "for WooCommerce."
  2861. msgstr ""
  2862. #: src/Notes/Marketing.php:47
  2863. msgid "Open marketing hub"
  2864. msgstr ""
  2865. #: src/Notes/MarketingJetpack.php:101
  2866. msgid "Protect your WooCommerce Store with Jetpack Backup."
  2867. msgstr ""
  2868. #: src/Notes/MarketingJetpack.php:102
  2869. msgid ""
  2870. "Store downtime means lost sales. One-click restores get you back online "
  2871. "quickly if something goes wrong."
  2872. msgstr ""
  2873. #: src/Notes/MarketingJetpack.php:109
  2874. msgid "Get backups"
  2875. msgstr ""
  2876. #: src/Notes/MerchantEmailNotifications/NotificationEmail.php:35
  2877. msgid "Hi there,"
  2878. msgstr ""
  2879. #: src/Notes/MerchantEmailNotifications/NotificationEmail.php:209
  2880. #. translators: %s = merchant name
  2881. msgid "Hi %s,"
  2882. msgstr ""
  2883. #: src/Notes/MigrateFromShopify.php:62
  2884. msgid "Do you want to migrate from Shopify to WooCommerce?"
  2885. msgstr ""
  2886. #: src/Notes/MigrateFromShopify.php:63
  2887. msgid ""
  2888. "Changing eCommerce platforms might seem like a big hurdle to overcome, but "
  2889. "it is easier than you might think to move your products, customers, and "
  2890. "orders to WooCommerce. This article will help you with going through this "
  2891. "process."
  2892. msgstr ""
  2893. #: src/Notes/MobileApp.php:38
  2894. msgid ""
  2895. "Install the WooCommerce mobile app to manage orders, receive sales "
  2896. "notifications, and view key metrics — wherever you are."
  2897. msgstr ""
  2898. #: src/Notes/MobileApp.php:41
  2899. msgid "Install Woo mobile app"
  2900. msgstr ""
  2901. #: src/Notes/NavigationFeedback.php:37
  2902. msgid ""
  2903. "We're introducing the new navigation for a more intuitive and improved user "
  2904. "experience. We'd like to hear your thoughts and first impressions."
  2905. msgstr ""
  2906. #: src/Notes/NavigationFeedback.php:40
  2907. msgid "You now have access to the new WooCommerce navigation"
  2908. msgstr ""
  2909. #: src/Notes/NavigationFeedbackFollowUp.php:51
  2910. msgid ""
  2911. "We recently introduced the new navigation for a more intuitive and improved "
  2912. "user experience. Now that you've had some time to give it a try, let us "
  2913. "know how this will impact your store."
  2914. msgstr ""
  2915. #: src/Notes/NavigationFeedbackFollowUp.php:54
  2916. msgid "Share your thoughts on the new WooCommerce navigation"
  2917. msgstr ""
  2918. #: src/Notes/NavigationNudge.php:47
  2919. msgid "You now have access to the WooCommerce navigation"
  2920. msgstr ""
  2921. #: src/Notes/NavigationNudge.php:48
  2922. msgid ""
  2923. "We’re introducing a new navigation for a more intuitive and improved user "
  2924. "experience. You can enable the beta version of the new experience in the "
  2925. "Advanced Settings. Enable it now for your store."
  2926. msgstr ""
  2927. #: src/Notes/NavigationNudge.php:54
  2928. msgid "Enable in Settings"
  2929. msgstr ""
  2930. #: src/Notes/NeedSomeInspiration.php:54
  2931. msgid "Browse our success stories"
  2932. msgstr ""
  2933. #: src/Notes/NeedSomeInspiration.php:55
  2934. msgid ""
  2935. "Learn more about how other entrepreneurs used WooCommerce to build "
  2936. "successful businesses."
  2937. msgstr ""
  2938. #: src/Notes/NeedSomeInspiration.php:62
  2939. msgid "See success stories"
  2940. msgstr ""
  2941. #: src/Notes/NewSalesRecord.php:101
  2942. #. translators: 1 and 4: Date (e.g. October 16th), 2 and 3: Amount (e.g.
  2943. #. $160.00)
  2944. msgid ""
  2945. "Woohoo, %1$s was your record day for sales! Net Sales was %2$s beating the "
  2946. "previous record of %3$s set on %4$s."
  2947. msgstr ""
  2948. #: src/Notes/NewSalesRecord.php:122
  2949. msgid "New sales record!"
  2950. msgstr ""
  2951. #: src/Notes/NewSalesRecord.php:128
  2952. msgid "View report"
  2953. msgstr ""
  2954. #: src/Notes/Note.php:346
  2955. msgid "The admin note name prop cannot be empty."
  2956. msgstr ""
  2957. #: src/Notes/Note.php:359
  2958. msgid "The admin note type prop cannot be empty."
  2959. msgstr ""
  2960. #: src/Notes/Note.php:367
  2961. #. translators: %s: admin note type.
  2962. msgid "The admin note type prop (%s) is not one of the supported types."
  2963. msgstr ""
  2964. #: src/Notes/Note.php:383
  2965. msgid "The admin note locale prop cannot be empty."
  2966. msgstr ""
  2967. #: src/Notes/Note.php:396
  2968. msgid "The admin note title prop cannot be empty."
  2969. msgstr ""
  2970. #: src/Notes/Note.php:436
  2971. msgid "The admin note content prop cannot be empty."
  2972. msgstr ""
  2973. #: src/Notes/Note.php:453
  2974. msgid "The admin note content_data prop must be an instance of stdClass."
  2975. msgstr ""
  2976. #: src/Notes/Note.php:466
  2977. msgid "The admin note status prop cannot be empty."
  2978. msgstr ""
  2979. #: src/Notes/Note.php:474
  2980. #. translators: %s: admin note status property.
  2981. msgid "The admin note status prop (%s) is not one of the supported statuses."
  2982. msgstr ""
  2983. #: src/Notes/Note.php:490
  2984. msgid "The admin note source prop cannot be empty."
  2985. msgstr ""
  2986. #: src/Notes/Note.php:503
  2987. msgid "The admin note date prop cannot be empty."
  2988. msgstr ""
  2989. #: src/Notes/Note.php:554
  2990. msgid "The admin note layout has a wrong prop value."
  2991. msgstr ""
  2992. #: src/Notes/Note.php:602
  2993. msgid "The admin note action name prop cannot be empty."
  2994. msgstr ""
  2995. #: src/Notes/Note.php:606
  2996. msgid "The admin note action label prop cannot be empty."
  2997. msgstr ""
  2998. #: src/Notes/Notes.php:454
  2999. msgid ""
  3000. "Notes are unavailable because the \"admin-note\" data store cannot be "
  3001. "loaded."
  3002. msgstr ""
  3003. #: src/Notes/OnboardingEmailMarketing.php:32
  3004. msgid ""
  3005. "We're here for you - get tips, product updates and inspiration straight to "
  3006. "your email box"
  3007. msgstr ""
  3008. #: src/Notes/OnboardingEmailMarketing.php:35
  3009. msgid "Sign up for tips, product updates, and inspiration"
  3010. msgstr ""
  3011. #: src/Notes/OnboardingEmailMarketing.php:41
  3012. msgid "Yes please!"
  3013. msgstr ""
  3014. #: src/Notes/OnboardingPayments.php:50
  3015. msgid "Start accepting payments on your store!"
  3016. msgstr ""
  3017. #: src/Notes/OnboardingPayments.php:51
  3018. msgid ""
  3019. "Take payments with the provider that’s right for you - choose from 100+ "
  3020. "payment gateways for WooCommerce."
  3021. msgstr ""
  3022. #: src/Notes/OnlineClothingStore.php:81
  3023. msgid "Start your online clothing store"
  3024. msgstr ""
  3025. #: src/Notes/OnlineClothingStore.php:82
  3026. msgid ""
  3027. "Starting a fashion website is exciting but it may seem overwhelming as "
  3028. "well. In this article, we'll walk you through the setup process, teach you "
  3029. "to create successful product listings, and show you how to market to your "
  3030. "ideal audience."
  3031. msgstr ""
  3032. #: src/Notes/OrderMilestones.php:182
  3033. msgid "First order received"
  3034. msgstr ""
  3035. #: src/Notes/OrderMilestones.php:194
  3036. #. translators: Number of orders processed.
  3037. msgid "Congratulations on processing %s orders!"
  3038. msgstr ""
  3039. #: src/Notes/OrderMilestones.php:211
  3040. msgid ""
  3041. "Congratulations on getting your first order! Now is a great time to learn "
  3042. "how to manage your orders."
  3043. msgstr ""
  3044. #: src/Notes/OrderMilestones.php:213
  3045. msgid ""
  3046. "You've hit the 10 orders milestone! Look at you go. Browse some WooCommerce "
  3047. "success stories for inspiration."
  3048. msgstr ""
  3049. #: src/Notes/OrderMilestones.php:222
  3050. msgid ""
  3051. "Another order milestone! Take a look at your Orders Report to review your "
  3052. "orders to date."
  3053. msgstr ""
  3054. #: src/Notes/OrderMilestones.php:258
  3055. msgid "Review your orders"
  3056. msgstr ""
  3057. #: src/Notes/PerformanceOnMobile.php:51
  3058. msgid "Track your store performance on mobile"
  3059. msgstr ""
  3060. #: src/Notes/PerformanceOnMobile.php:52
  3061. msgid "Monitor your sales and high performing products with the Woo app."
  3062. msgstr ""
  3063. #: src/Notes/PersonalizeStore.php:48
  3064. msgid ""
  3065. "The homepage is one of the most important entry points in your store. When "
  3066. "done right it can lead to higher conversions and engagement. Don't forget "
  3067. "to personalize the homepage that we created for your store during the "
  3068. "onboarding."
  3069. msgstr ""
  3070. #: src/Notes/PersonalizeStore.php:51
  3071. msgid "Personalize your store's homepage"
  3072. msgstr ""
  3073. #: src/Notes/PersonalizeStore.php:57
  3074. msgid "Personalize homepage"
  3075. msgstr ""
  3076. #: src/Notes/RealTimeOrderAlerts.php:42
  3077. msgid ""
  3078. "Get notifications about store activity, including new orders and product "
  3079. "reviews directly on your mobile devices with the Woo app."
  3080. msgstr ""
  3081. #: src/Notes/RealTimeOrderAlerts.php:45
  3082. msgid "Get real-time order alerts anywhere"
  3083. msgstr ""
  3084. #: src/Notes/SellingOnlineCourses.php:68
  3085. msgid "Do you want to sell online courses?"
  3086. msgstr ""
  3087. #: src/Notes/SellingOnlineCourses.php:69
  3088. msgid ""
  3089. "Online courses are a great solution for any business that can teach a new "
  3090. "skill. Since courses don’t require physical product development or "
  3091. "shipping, they’re affordable, fast to create, and can generate passive "
  3092. "income for years to come. In this article, we provide you more information "
  3093. "about selling courses using WooCommerce."
  3094. msgstr ""
  3095. #: src/Notes/SetUpAdditionalPaymentTypes.php:82
  3096. msgid ""
  3097. "Set up additional payment providers, using third-party services or other "
  3098. "methods."
  3099. msgstr ""
  3100. #: src/Notes/SetUpAdditionalPaymentTypes.php:86
  3101. msgid "Set up additional payment providers"
  3102. msgstr ""
  3103. #: src/Notes/SetUpAdditionalPaymentTypes.php:94
  3104. #: client/header/index.js:70
  3105. #: client/task-list/tasks.js:275
  3106. msgid "Set up payments"
  3107. msgstr ""
  3108. #: src/Notes/StartDropshippingBusiness.php:67
  3109. msgid "Are you considering starting a dropshipping business?"
  3110. msgstr ""
  3111. #: src/Notes/StartDropshippingBusiness.php:68
  3112. msgid ""
  3113. "The ability to add inventory without having to deal with production, "
  3114. "stocking, or fulfilling orders may seem like a dream. But is dropshipping "
  3115. "worth it? Let’s explore some of the advantages and disadvantages to help "
  3116. "you make the best decision for your business."
  3117. msgstr ""
  3118. #: src/Notes/TestCheckout.php:89
  3119. msgid ""
  3120. "Make sure that your checkout is working properly before you launch your "
  3121. "store. Go through your checkout process in its entirety: from adding a "
  3122. "product to your cart, choosing a shipping location, and making a payment."
  3123. msgstr ""
  3124. #: src/Notes/TestCheckout.php:92
  3125. msgid "Don't forget to test your checkout"
  3126. msgstr ""
  3127. #: src/Notes/TestCheckout.php:98
  3128. msgid "Test checkout"
  3129. msgstr ""
  3130. #: src/Notes/TrackingOptIn.php:50
  3131. #. translators: 1: open link to WooCommerce.com settings, 2: open link to
  3132. #. WooCommerce.com tracking documentation, 3: close link tag.
  3133. msgid ""
  3134. "Gathering usage data allows us to improve WooCommerce. Your store will be "
  3135. "considered as we evaluate new features, judge the quality of an update, or "
  3136. "determine if an improvement makes sense. You can always visit the "
  3137. "%1$sSettings%3$s and choose to stop sharing data. %2$sRead more%3$s about "
  3138. "what data we collect."
  3139. msgstr ""
  3140. #: src/Notes/TrackingOptIn.php:63
  3141. msgid "Help WooCommerce improve with usage tracking"
  3142. msgstr ""
  3143. #: src/Notes/TrackingOptIn.php:69
  3144. msgid "Activate usage tracking"
  3145. msgstr ""
  3146. #: src/Notes/UnsecuredReportFiles.php:33
  3147. msgid "Potentially unsecured files were found in your uploads directory"
  3148. msgstr ""
  3149. #: src/Notes/UnsecuredReportFiles.php:37
  3150. #. translators: 1: opening analytics docs link tag. 2: closing link tag
  3151. msgid ""
  3152. "Files that may contain %1$sstore analytics%2$s reports were found in your "
  3153. "uploads directory - we recommend assessing and deleting any such files."
  3154. msgstr ""
  3155. #: src/Notes/UnsecuredReportFiles.php:55
  3156. #: packages/experimental/build-module/experimental-list/task-item.js:77
  3157. #: packages/experimental/build-module/inbox-note/inbox-note.js:83
  3158. msgid "Dismiss"
  3159. msgstr ""
  3160. #: src/Notes/WelcomeToWooCommerceForStoreUsers.php:43
  3161. #: client/homescreen/welcome-from-calypso-modal/welcome-from-calypso-modal.js:23
  3162. msgid "Welcome to your new store management experience"
  3163. msgstr ""
  3164. #: src/Notes/WelcomeToWooCommerceForStoreUsers.php:44
  3165. msgid ""
  3166. "We've designed your navigation and home screen to help you focus on the "
  3167. "things that matter most in managing your online store."
  3168. msgstr ""
  3169. #: src/Notes/WooCommercePayments.php:102
  3170. msgid "Try the new way to get paid"
  3171. msgstr ""
  3172. #: src/Notes/WooCommercePayments.php:104
  3173. msgid ""
  3174. "Securely accept credit and debit cards on your site. Manage transactions "
  3175. "without leaving your WordPress dashboard. Only with <strong>WooCommerce "
  3176. "Payments</strong>."
  3177. msgstr ""
  3178. #: src/Notes/WooCommercePayments.php:108
  3179. #. translators: 1: opening link tag, 2: closing tag
  3180. msgid "By clicking \"Get started\", you agree to our %1$sTerms of Service%2$s"
  3181. msgstr ""
  3182. #: src/Notes/WooCommercePayments.php:118
  3183. #: client/task-list/tasks/Marketing/Plugin.tsx:93
  3184. #: client/task-list/tasks/PaymentGatewaySuggestions/components/WCPay/Suggestion.js:80
  3185. msgid "Get started"
  3186. msgstr ""
  3187. #: src/Notes/WooCommerceSubscriptions.php:45
  3188. msgid "Do you need more info about WooCommerce Subscriptions?"
  3189. msgstr ""
  3190. #: src/Notes/WooCommerceSubscriptions.php:46
  3191. msgid ""
  3192. "WooCommerce Subscriptions allows you to introduce a variety of "
  3193. "subscriptions for physical or virtual products and services. Create "
  3194. "product-of-the-month clubs, weekly service subscriptions or even yearly "
  3195. "software billing packages. Add sign-up fees, offer free trials, or set "
  3196. "expiration periods."
  3197. msgstr ""
  3198. #: src/Notes/WooCommerceSubscriptions.php:53
  3199. msgid "Learn More"
  3200. msgstr ""
  3201. #: src/Notes/WooSubscriptionsNotes.php:182
  3202. msgid "Connect to WooCommerce.com"
  3203. msgstr ""
  3204. #: src/Notes/WooSubscriptionsNotes.php:183
  3205. msgid "Connect to get important product notifications and updates."
  3206. msgstr ""
  3207. #: src/Notes/WooSubscriptionsNotes.php:190
  3208. #: client/dashboard/components/connect/index.js:86
  3209. #: client/task-list/tasks/PaymentGatewaySuggestions/components/Setup/Configure.js:136
  3210. msgid "Connect"
  3211. msgstr ""
  3212. #: src/Notes/WooSubscriptionsNotes.php:311
  3213. #. translators: name of the extension subscription expiring soon
  3214. msgid "%s subscription expiring soon"
  3215. msgstr ""
  3216. #: src/Notes/WooSubscriptionsNotes.php:317
  3217. #. translators: number of days until the subscription expires
  3218. msgid ""
  3219. "Your subscription expires in %d days. Enable autorenew to avoid losing "
  3220. "updates and access to support."
  3221. msgstr ""
  3222. #: src/Notes/WooSubscriptionsNotes.php:340
  3223. msgid "Enable Autorenew"
  3224. msgstr ""
  3225. #: src/Notes/WooSubscriptionsNotes.php:372
  3226. #. translators: name of the extension subscription that expired
  3227. msgid "%s subscription expired"
  3228. msgstr ""
  3229. #: src/Notes/WooSubscriptionsNotes.php:378
  3230. #. translators: date the subscription expired, e.g. Jun 7th 2018
  3231. msgid ""
  3232. "Your subscription expired on %s. Get a new subscription to continue "
  3233. "receiving updates and access to support."
  3234. msgstr ""
  3235. #: src/Notes/WooSubscriptionsNotes.php:403
  3236. msgid "Renew Subscription"
  3237. msgstr ""
  3238. #: src/PageController.php:205
  3239. msgid ""
  3240. "Current page retrieval should be called on or after the `current_screen` "
  3241. "hook."
  3242. msgstr ""
  3243. #: src/ReportCSVEmail.php:73
  3244. msgid "Your Report Download"
  3245. msgstr ""
  3246. #: src/ReportCSVEmail.php:82
  3247. msgid "[{site_title}]: Your {report_name} Report download is ready"
  3248. msgstr ""
  3249. #: src/ReportsSync.php:49
  3250. msgid ""
  3251. "Report sync schedulers should be derived from the "
  3252. "Automattic\\WooCommerce\\Admin\\Schedulers\\ImportScheduler class."
  3253. msgstr ""
  3254. #: src/ReportsSync.php:79
  3255. msgid ""
  3256. "An import is already in progress. Please allow the previous import to "
  3257. "complete before beginning a new one."
  3258. msgstr ""
  3259. #: src/ReportsSync.php:95
  3260. msgid ""
  3261. "Report table data is being rebuilt. Please allow some time for data to "
  3262. "fully populate."
  3263. msgstr ""
  3264. #: src/ReportsSync.php:179
  3265. msgid "Report table data is being deleted."
  3266. msgstr ""
  3267. #: src/Schedulers/CustomersScheduler.php:230
  3268. msgid "[deleted]"
  3269. msgstr ""
  3270. #: woocommerce-admin.php:38 woocommerce-admin.php:56
  3271. #. translators: 1: composer command. 2: plugin directory
  3272. msgid ""
  3273. "Your installation of the WooCommerce Admin feature plugin is incomplete. "
  3274. "Please run %1$s within the %2$s directory."
  3275. msgstr ""
  3276. #: woocommerce-admin.php:108
  3277. #. Translators: %1$s is referring to a php constant name, %2$s is referring to
  3278. #. the wp-config.php file.
  3279. msgid ""
  3280. "WooCommerce Admin development mode requires the %1$s constant to be defined "
  3281. "and true in your %2$s file. Otherwise you are loading the admin package "
  3282. "from WooCommerce core."
  3283. msgstr ""
  3284. #: woocommerce-admin.php:127
  3285. #. Translators: %1$s, %2$s, and %3$s are all build commands to be run in order.
  3286. msgid ""
  3287. "You have installed a development version of WooCommerce Admin which "
  3288. "requires files to be built. From the plugin directory, run %1$s and %2$s to "
  3289. "install dependencies, then %3$s to build the files."
  3290. msgstr ""
  3291. #: woocommerce-admin.php:134
  3292. #. translators: 1: URL of GitHub Repository build page
  3293. msgid ""
  3294. "Or you can download a pre-built version of the plugin by visiting <a "
  3295. "href=\"%1$s\">the releases page in the repository</a>."
  3296. msgstr ""
  3297. #. Plugin URI of the plugin/theme
  3298. msgid "https://github.com/woocommerce/woocommerce-admin"
  3299. msgstr ""
  3300. #. Description of the plugin/theme
  3301. msgid ""
  3302. "A new JavaScript-driven interface for managing your store. The plugin "
  3303. "includes new and improved reports, and a dashboard to monitor all the "
  3304. "important key metrics of your site."
  3305. msgstr ""
  3306. #. Author URI of the plugin/theme
  3307. msgid "https://woocommerce.com/"
  3308. msgstr ""
  3309. #: client/analytics/components/leaderboard/index.js:81
  3310. msgid "No data recorded for the selected time period."
  3311. msgstr ""
  3312. #: client/analytics/components/report-chart/index.js:168
  3313. msgid "No data for the current search"
  3314. msgstr ""
  3315. #: client/analytics/components/report-chart/index.js:169
  3316. msgid "No data for the selected date range"
  3317. msgstr ""
  3318. #: client/analytics/components/report-error/index.js:16
  3319. msgid "There was an error getting your stats. Please try again."
  3320. msgstr ""
  3321. #: client/analytics/components/report-error/index.js:20
  3322. #: client/homescreen/activity-panel/orders/index.js:294
  3323. #: client/homescreen/activity-panel/reviews/index.js:331
  3324. #: client/homescreen/activity-panel/stock/index.js:95
  3325. #: client/inbox-panel/index.js:257
  3326. msgid "Reload"
  3327. msgstr ""
  3328. #: client/analytics/components/report-summary/index.js:106
  3329. #: client/dashboard/store-performance/index.js:127
  3330. #: client/homescreen/stats-overview/stats-list.js:75
  3331. #: packages/components/build-module/summary/number.js:151
  3332. msgid "Previous Period:"
  3333. msgstr ""
  3334. #: client/analytics/components/report-summary/index.js:107
  3335. #: client/dashboard/store-performance/index.js:128
  3336. msgid "Previous Year:"
  3337. msgstr ""
  3338. # %s = type of report
  3339. #: client/analytics/components/report-table/index.js:209
  3340. msgid "Your %s Report will be emailed to you."
  3341. msgstr ""
  3342. # %s = type of report
  3343. #: client/analytics/components/report-table/index.js:223
  3344. msgid "There was a problem exporting your %s Report. Please try again."
  3345. msgstr ""
  3346. #: client/analytics/components/report-table/index.js:319
  3347. msgid "Select All"
  3348. msgstr ""
  3349. #: client/analytics/components/report-table/index.js:401
  3350. msgid "Check at least two items below to compare"
  3351. msgstr ""
  3352. #: client/analytics/components/report-table/index.js:410
  3353. #: client/analytics/report/categories/config.js:107
  3354. #: client/analytics/report/coupons/config.js:86
  3355. #: client/analytics/report/products/config.js:165
  3356. #: client/analytics/report/taxes/config.js:93
  3357. #: client/analytics/report/variations/config.js:107
  3358. msgid "Compare"
  3359. msgstr ""
  3360. #: client/analytics/components/report-table/index.js:421
  3361. msgid "Search by item name"
  3362. msgstr ""
  3363. #: client/analytics/components/report-table/index.js:439
  3364. msgid "Download"
  3365. msgstr ""
  3366. #: client/analytics/report/categories/config.js:102
  3367. msgid "Search for categories to compare"
  3368. msgstr ""
  3369. #: client/analytics/report/categories/config.js:106
  3370. msgid "Compare Categories"
  3371. msgstr ""
  3372. #: client/analytics/report/categories/config.js:116
  3373. #: client/analytics/report/coupons/config.js:99
  3374. #: client/analytics/report/customers/config.js:62
  3375. #: client/analytics/report/downloads/config.js:39
  3376. #: client/analytics/report/orders/config.js:59
  3377. #: client/analytics/report/products/config.js:190
  3378. #: client/analytics/report/revenue/config.js:90
  3379. #: client/analytics/report/stock/config.js:56
  3380. #: client/analytics/report/taxes/config.js:102
  3381. #: client/analytics/report/variations/config.js:113
  3382. msgid "Advanced Filters"
  3383. msgstr ""
  3384. #: client/analytics/report/categories/config.js:123
  3385. #: client/analytics/report/coupons/config.js:106
  3386. #: client/analytics/report/customers/config.js:27
  3387. #: client/analytics/report/downloads/config.js:32
  3388. #: client/analytics/report/orders/config.js:52
  3389. #: client/analytics/report/products/config.js:51
  3390. #: client/analytics/report/revenue/config.js:97
  3391. #: client/analytics/report/stock/config.js:27
  3392. #: client/analytics/report/taxes/config.js:109
  3393. #: client/analytics/report/variations/config.js:53
  3394. msgid "Show"
  3395. msgstr ""
  3396. #: client/analytics/report/categories/config.js:61
  3397. msgid "All Categories"
  3398. msgstr ""
  3399. #: client/analytics/report/categories/config.js:79
  3400. msgid "Type to search for a category"
  3401. msgstr ""
  3402. #: client/analytics/report/categories/config.js:83
  3403. msgid "Single Category"
  3404. msgstr ""
  3405. #: client/analytics/report/categories/config.js:90
  3406. #: client/analytics/report/coupons/config.js:78
  3407. #: client/analytics/report/products/config.js:148
  3408. #: client/analytics/report/taxes/config.js:69
  3409. #: client/analytics/report/variations/config.js:90
  3410. msgid "Comparison"
  3411. msgstr ""
  3412. #: client/analytics/report/categories/config.js:98
  3413. #: client/analytics/report/categories/table.js:182
  3414. msgid "Check at least two categories below to compare"
  3415. msgstr ""
  3416. #: client/analytics/report/categories/index.js:34
  3417. #: client/analytics/report/products/index.js:46
  3418. msgid "%d products"
  3419. msgstr ""
  3420. #: client/analytics/report/categories/index.js:35
  3421. msgid "%d categories"
  3422. msgstr ""
  3423. #: client/analytics/report/categories/table.js:145
  3424. msgid "category"
  3425. msgid_plural "categories"
  3426. msgstr[0] ""
  3427. msgstr[1] ""
  3428. #: client/analytics/report/categories/table.js:154
  3429. #: client/analytics/report/orders/table.js:283
  3430. #: client/analytics/report/products/table.js:295
  3431. #: client/analytics/report/variations/table.js:207
  3432. msgid "item sold"
  3433. msgid_plural "items sold"
  3434. msgstr[0] ""
  3435. msgstr[1] ""
  3436. #: client/analytics/report/categories/table.js:163
  3437. #: client/analytics/report/orders/table.js:301
  3438. #: client/analytics/report/products/table.js:304
  3439. #: client/analytics/report/revenue/table.js:247
  3440. #: client/analytics/report/variations/table.js:216
  3441. msgid "net sales"
  3442. msgstr ""
  3443. #: client/analytics/report/categories/table.js:167
  3444. #: client/analytics/report/coupons/table.js:189
  3445. #: client/analytics/report/orders/table.js:256
  3446. #: client/analytics/report/revenue/table.js:226
  3447. #: client/analytics/report/taxes/table.js:168
  3448. msgid "order"
  3449. msgid_plural "orders"
  3450. msgstr[0] ""
  3451. msgstr[1] ""
  3452. #: client/analytics/report/categories/table.js:186
  3453. msgid "Search by category name"
  3454. msgstr ""
  3455. #: client/analytics/report/coupons/config.js:31
  3456. msgid "Amount"
  3457. msgstr ""
  3458. #: client/analytics/report/coupons/config.js:51
  3459. msgid "All Coupons"
  3460. msgstr ""
  3461. #: client/analytics/report/coupons/config.js:67
  3462. msgid "Type to search for a coupon"
  3463. msgstr ""
  3464. #: client/analytics/report/coupons/config.js:71
  3465. msgid "Single Coupon"
  3466. msgstr ""
  3467. #: client/analytics/report/coupons/config.js:85
  3468. msgid "Compare Coupon Codes"
  3469. msgstr ""
  3470. #: client/analytics/report/coupons/config.js:87
  3471. msgid "Check at least two coupon codes below to compare"
  3472. msgstr ""
  3473. #: client/analytics/report/coupons/index.js:27
  3474. msgid "%d coupons"
  3475. msgstr ""
  3476. #: client/analytics/report/coupons/table.js:180
  3477. #: client/analytics/report/orders/table.js:292
  3478. msgid "coupon"
  3479. msgid_plural "coupons"
  3480. msgstr[0] ""
  3481. msgstr[1] ""
  3482. #: client/analytics/report/coupons/table.js:198
  3483. msgid "amount discounted"
  3484. msgstr ""
  3485. #: client/analytics/report/coupons/table.js:206
  3486. msgid "Percentage"
  3487. msgstr ""
  3488. #: client/analytics/report/coupons/table.js:207
  3489. msgid "Fixed cart"
  3490. msgstr ""
  3491. #: client/analytics/report/coupons/table.js:208
  3492. msgid "Fixed product"
  3493. msgstr ""
  3494. #: client/analytics/report/customers/config.js:133
  3495. #: client/analytics/report/downloads/config.js:59
  3496. msgid "Search"
  3497. msgstr ""
  3498. #: client/analytics/report/customers/config.js:134
  3499. msgid "Remove country / region filter"
  3500. msgstr ""
  3501. #: client/analytics/report/customers/config.js:138
  3502. msgid "Select a country / region filter match"
  3503. msgstr ""
  3504. # A sentence describing a Product filter. See screen shot for context: https://cloudup.com/cCsm3GeXJbE
  3505. #: client/analytics/report/customers/config.js:143
  3506. msgid "{{title}}Country / Region{{/title}} {{rule /}} {{filter /}}"
  3507. msgstr ""
  3508. #: client/analytics/report/customers/config.js:147
  3509. msgid "Select country / region"
  3510. msgstr ""
  3511. #: client/analytics/report/customers/config.js:191
  3512. #: client/analytics/report/downloads/config.js:101
  3513. msgid "Search customer username"
  3514. msgstr ""
  3515. #: client/analytics/report/customers/config.js:195
  3516. #: client/analytics/report/downloads/config.js:105
  3517. msgid "Remove customer username filter"
  3518. msgstr ""
  3519. #: client/analytics/report/customers/config.js:199
  3520. #: client/analytics/report/downloads/config.js:109
  3521. msgid "Select a customer username filter match"
  3522. msgstr ""
  3523. # A sentence describing a customer username filter. See screen shot for context: https://cloudup.com/ccxhyH2mEDg
  3524. #: client/analytics/report/customers/config.js:204
  3525. #: client/analytics/report/downloads/config.js:114
  3526. msgid "{{title}}Username{{/title}} {{rule /}} {{filter /}}"
  3527. msgstr ""
  3528. #: client/analytics/report/customers/config.js:208
  3529. #: client/analytics/report/downloads/config.js:118
  3530. msgid "Select customer username"
  3531. msgstr ""
  3532. #: client/analytics/report/customers/config.js:242
  3533. msgid "Search customer email"
  3534. msgstr ""
  3535. #: client/analytics/report/customers/config.js:246
  3536. msgid "Remove customer email filter"
  3537. msgstr ""
  3538. #: client/analytics/report/customers/config.js:250
  3539. msgid "Select a customer email filter match"
  3540. msgstr ""
  3541. # A sentence describing a customer email filter. See screen shot for context: https://cloudup.com/cCsm3GeXJbE
  3542. #: client/analytics/report/customers/config.js:255
  3543. msgid "{{title}}Email{{/title}} {{rule /}} {{filter /}}"
  3544. msgstr ""
  3545. #: client/analytics/report/customers/config.js:259
  3546. msgid "Select customer email"
  3547. msgstr ""
  3548. #: client/analytics/report/customers/config.js:295
  3549. msgid "No. of Orders"
  3550. msgstr ""
  3551. #: client/analytics/report/customers/config.js:296
  3552. msgid "Remove order filter"
  3553. msgstr ""
  3554. #: client/analytics/report/customers/config.js:297
  3555. msgid "Select an order count filter match"
  3556. msgstr ""
  3557. #: client/analytics/report/customers/config.js:301
  3558. msgid "{{title}}No. of Orders{{/title}} {{rule /}} {{filter /}}"
  3559. msgstr ""
  3560. #: client/analytics/report/customers/config.js:32
  3561. msgid "All Customers"
  3562. msgstr ""
  3563. #: client/analytics/report/customers/config.js:342
  3564. msgid "Remove total spend filter"
  3565. msgstr ""
  3566. #: client/analytics/report/customers/config.js:346
  3567. msgid "Select a total spend filter match"
  3568. msgstr ""
  3569. #: client/analytics/report/customers/config.js:350
  3570. msgid "{{title}}Total Spend{{/title}} {{rule /}} {{filter /}}"
  3571. msgstr ""
  3572. #: client/analytics/report/customers/config.js:391
  3573. msgid "Remove average order value filter"
  3574. msgstr ""
  3575. #: client/analytics/report/customers/config.js:395
  3576. msgid "Select an average order value filter match"
  3577. msgstr ""
  3578. #: client/analytics/report/customers/config.js:399
  3579. msgid "{{title}}AOV{{/title}} {{rule /}} {{filter /}}"
  3580. msgstr ""
  3581. #: client/analytics/report/customers/config.js:440
  3582. msgid "Registered"
  3583. msgstr ""
  3584. #: client/analytics/report/customers/config.js:441
  3585. msgid "Remove registered filter"
  3586. msgstr ""
  3587. #: client/analytics/report/customers/config.js:445
  3588. msgid "Select a registered filter match"
  3589. msgstr ""
  3590. # A sentence describing a Product filter. See screen shot for context: https://cloudup.com/cCsm3GeXJbE
  3591. #: client/analytics/report/customers/config.js:450
  3592. msgid "{{title}}Registered{{/title}} {{rule /}} {{filter /}}"
  3593. msgstr ""
  3594. #: client/analytics/report/customers/config.js:479
  3595. msgid "Last active"
  3596. msgstr ""
  3597. #: client/analytics/report/customers/config.js:48
  3598. msgid "Type to search for a customer"
  3599. msgstr ""
  3600. #: client/analytics/report/customers/config.js:480
  3601. msgid "Remove last active filter"
  3602. msgstr ""
  3603. #: client/analytics/report/customers/config.js:484
  3604. msgid "Select a last active filter match"
  3605. msgstr ""
  3606. # A sentence describing a Product filter. See screen shot for context: https://cloudup.com/cCsm3GeXJbE
  3607. #: client/analytics/report/customers/config.js:489
  3608. msgid "{{title}}Last active{{/title}} {{rule /}} {{filter /}}"
  3609. msgstr ""
  3610. #: client/analytics/report/customers/config.js:493
  3611. msgid "Select registered date"
  3612. msgstr ""
  3613. #: client/analytics/report/customers/config.js:52
  3614. msgid "Single Customer"
  3615. msgstr ""
  3616. #: client/analytics/report/customers/config.js:83
  3617. msgid "Remove customer name filter"
  3618. msgstr ""
  3619. #: client/analytics/report/customers/config.js:87
  3620. msgid "Select a customer name filter match"
  3621. msgstr ""
  3622. # A sentence describing a Product filter. See screen shot for context: https://cloudup.com/cCsm3GeXJbE
  3623. #: client/analytics/report/customers/config.js:92
  3624. msgid "{{title}}Name{{/title}} {{rule /}} {{filter /}}"
  3625. msgstr ""
  3626. #: client/analytics/report/customers/config.js:96
  3627. msgid "Select customer name"
  3628. msgstr ""
  3629. #: client/analytics/report/customers/table.js:237
  3630. msgid "customer"
  3631. msgid_plural "customers"
  3632. msgstr[0] ""
  3633. msgstr[1] ""
  3634. #: client/analytics/report/customers/table.js:246
  3635. msgid "average order"
  3636. msgid_plural "average orders"
  3637. msgstr[0] ""
  3638. msgstr[1] ""
  3639. #: client/analytics/report/customers/table.js:255
  3640. msgid "average lifetime spend"
  3641. msgstr ""
  3642. #: client/analytics/report/customers/table.js:259
  3643. msgid "average order value"
  3644. msgstr ""
  3645. #: client/analytics/report/customers/table.js:284
  3646. msgid "Search by customer name"
  3647. msgstr ""
  3648. #: client/analytics/report/customers/table.js:50
  3649. msgid "Date Registered"
  3650. msgstr ""
  3651. #: client/analytics/report/customers/table.js:72
  3652. #: client/analytics/report/orders/config.js:38
  3653. #: client/dashboard/dashboard-charts/config.js:45
  3654. msgid "Average Order Value"
  3655. msgstr ""
  3656. #: client/analytics/report/downloads/config.js:152
  3657. msgid "Search order number"
  3658. msgstr ""
  3659. #: client/analytics/report/downloads/config.js:156
  3660. msgid "Remove order number filter"
  3661. msgstr ""
  3662. #: client/analytics/report/downloads/config.js:160
  3663. msgid "Select a order number filter match"
  3664. msgstr ""
  3665. # A sentence describing a order number filter. See screen shot for context: https://cloudup.com/ccxhyH2mEDg
  3666. #: client/analytics/report/downloads/config.js:165
  3667. msgid "{{title}}Order #{{/title}} {{rule /}} {{filter /}}"
  3668. msgstr ""
  3669. #: client/analytics/report/downloads/config.js:169
  3670. msgid "Select order number"
  3671. msgstr ""
  3672. #: client/analytics/report/downloads/config.js:205
  3673. msgid "IP Address"
  3674. msgstr ""
  3675. #: client/analytics/report/downloads/config.js:206
  3676. msgid "Search IP address"
  3677. msgstr ""
  3678. #: client/analytics/report/downloads/config.js:207
  3679. msgid "Remove IP address filter"
  3680. msgstr ""
  3681. #: client/analytics/report/downloads/config.js:211
  3682. msgid "Select an IP address filter match"
  3683. msgstr ""
  3684. # A sentence describing a order number filter. See screen shot for context: https://cloudup.com/ccxhyH2mEDg
  3685. #: client/analytics/report/downloads/config.js:216
  3686. msgid "{{title}}IP Address{{/title}} {{rule /}} {{filter /}}"
  3687. msgstr ""
  3688. #: client/analytics/report/downloads/config.js:220
  3689. msgid "Select IP address"
  3690. msgstr ""
  3691. #: client/analytics/report/downloads/config.js:37
  3692. msgid "All Downloads"
  3693. msgstr ""
  3694. #: client/analytics/report/downloads/config.js:60
  3695. msgid "Remove product filter"
  3696. msgstr ""
  3697. #: client/analytics/report/downloads/config.js:61
  3698. #: client/analytics/report/orders/config.js:123
  3699. #: client/analytics/report/variations/config.js:223
  3700. msgid "Select a product filter match"
  3701. msgstr ""
  3702. # A sentence describing a Product filter. See screen shot for context: https://cloudup.com/cSsUY9VeCVJ
  3703. #: client/analytics/report/downloads/config.js:66
  3704. #: client/analytics/report/orders/config.js:128
  3705. #: client/analytics/report/variations/config.js:228
  3706. msgid "{{title}}Product{{/title}} {{rule /}} {{filter /}}"
  3707. msgstr ""
  3708. #: client/analytics/report/downloads/config.js:70
  3709. msgid "Select product"
  3710. msgstr ""
  3711. #: client/analytics/report/downloads/table.js:168
  3712. #: client/analytics/report/revenue/table.js:222
  3713. msgid "day"
  3714. msgid_plural "days"
  3715. msgstr[0] ""
  3716. msgstr[1] ""
  3717. #: client/wp-admin-scripts/print-shipping-label-banner/setup-notice/index.js:16
  3718. msgid "download"
  3719. msgstr ""
  3720. #: client/analytics/report/downloads/table.js:53
  3721. #: client/analytics/report/orders/table.js:44
  3722. msgid "Order Number"
  3723. msgstr ""
  3724. #: client/analytics/report/orders/config.js:121
  3725. #: client/analytics/report/variations/config.js:221
  3726. msgid "Search products"
  3727. msgstr ""
  3728. #: client/analytics/report/orders/config.js:122
  3729. #: client/analytics/report/variations/config.js:222
  3730. msgid "Remove products filter"
  3731. msgstr ""
  3732. #: client/analytics/report/orders/config.js:132
  3733. #: client/analytics/report/variations/config.js:232
  3734. msgid "Select products"
  3735. msgstr ""
  3736. #: client/analytics/report/orders/config.js:163
  3737. msgid "Search variations"
  3738. msgstr ""
  3739. #: client/analytics/report/orders/config.js:164
  3740. msgid "Remove variations filter"
  3741. msgstr ""
  3742. #: client/analytics/report/orders/config.js:168
  3743. msgid "Select a variation filter match"
  3744. msgstr ""
  3745. # A sentence describing a Variation filter. See screen shot for context: https://cloudup.com/cSsUY9VeCVJ
  3746. #: client/analytics/report/orders/config.js:173
  3747. msgid "{{title}}Variation{{/title}} {{rule /}} {{filter /}}"
  3748. msgstr ""
  3749. #: client/analytics/report/orders/config.js:177
  3750. msgid "Select variation"
  3751. msgstr ""
  3752. #: client/analytics/report/orders/config.js:207
  3753. msgid "Coupon Codes"
  3754. msgstr ""
  3755. #: client/analytics/report/orders/config.js:208
  3756. msgid "Search coupons"
  3757. msgstr ""
  3758. #: client/analytics/report/orders/config.js:209
  3759. msgid "Remove coupon filter"
  3760. msgstr ""
  3761. #: client/analytics/report/orders/config.js:210
  3762. msgid "Select a coupon filter match"
  3763. msgstr ""
  3764. # A sentence describing a Coupon filter. See screen shot for context: https://cloudup.com/cSsUY9VeCVJ
  3765. #: client/analytics/report/orders/config.js:215
  3766. msgid "{{title}}Coupon Code{{/title}} {{rule /}} {{filter /}}"
  3767. msgstr ""
  3768. #: client/analytics/report/orders/config.js:219
  3769. msgid "Select coupon codes"
  3770. msgstr ""
  3771. #: client/analytics/report/orders/config.js:250
  3772. msgid "Remove customer filter"
  3773. msgstr ""
  3774. #: client/analytics/report/orders/config.js:251
  3775. msgid "Select a customer filter match"
  3776. msgstr ""
  3777. # A sentence describing a Customer filter. See screen shot for context: https://cloudup.com/cSsUY9VeCVJ
  3778. #: client/analytics/report/orders/config.js:256
  3779. msgid "{{title}}Customer is{{/title}} {{filter /}}"
  3780. msgstr ""
  3781. #: client/analytics/report/orders/config.js:260
  3782. msgid "Select a customer type"
  3783. msgstr ""
  3784. #: client/analytics/report/orders/config.js:267
  3785. msgid "New"
  3786. msgstr ""
  3787. #: client/analytics/report/orders/config.js:271
  3788. msgid "Returning"
  3789. msgstr ""
  3790. #: client/analytics/report/orders/config.js:279
  3791. msgid "Refunds"
  3792. msgstr ""
  3793. #: client/analytics/report/orders/config.js:280
  3794. msgid "Remove refunds filter"
  3795. msgstr ""
  3796. #: client/analytics/report/orders/config.js:281
  3797. msgid "Select a refund filter match"
  3798. msgstr ""
  3799. #: client/analytics/report/orders/config.js:285
  3800. msgid "{{title}}Refunds{{/title}} {{filter /}}"
  3801. msgstr ""
  3802. #: client/analytics/report/orders/config.js:289
  3803. msgid "Select a refund type"
  3804. msgstr ""
  3805. #: client/analytics/report/orders/config.js:296
  3806. #: packages/components/build-module/advanced-filters/index.js:19
  3807. msgid "All"
  3808. msgstr ""
  3809. #: client/analytics/report/orders/config.js:300
  3810. msgid "Partially refunded"
  3811. msgstr ""
  3812. #: client/analytics/report/orders/config.js:307
  3813. msgid "Fully refunded"
  3814. msgstr ""
  3815. #: client/analytics/report/orders/config.js:311
  3816. msgid "None"
  3817. msgstr ""
  3818. #: client/analytics/report/orders/config.js:319
  3819. msgid "Tax Rates"
  3820. msgstr ""
  3821. #: client/analytics/report/orders/config.js:320
  3822. msgid "Search tax rates"
  3823. msgstr ""
  3824. #: client/analytics/report/orders/config.js:321
  3825. msgid "Remove tax rate filter"
  3826. msgstr ""
  3827. #: client/analytics/report/orders/config.js:322
  3828. msgid "Select a tax rate filter match"
  3829. msgstr ""
  3830. # A sentence describing a tax rate filter. See screen shot for context: https://cloudup.com/cSsUY9VeCVJ
  3831. #: client/analytics/report/orders/config.js:327
  3832. msgid "{{title}}Tax Rate{{/title}} {{rule /}} {{filter /}}"
  3833. msgstr ""
  3834. #: client/analytics/report/orders/config.js:331
  3835. msgid "Select tax rates"
  3836. msgstr ""
  3837. #: client/analytics/report/orders/config.js:362
  3838. #: client/analytics/report/variations/config.js:132
  3839. msgid "Attribute"
  3840. msgstr ""
  3841. #: client/analytics/report/orders/config.js:363
  3842. #: client/analytics/report/variations/config.js:133
  3843. msgid "Search attributes"
  3844. msgstr ""
  3845. #: client/analytics/report/orders/config.js:364
  3846. #: client/analytics/report/variations/config.js:134
  3847. msgid "Remove attribute filter"
  3848. msgstr ""
  3849. #: client/analytics/report/orders/config.js:368
  3850. #: client/analytics/report/variations/config.js:138
  3851. msgid "Select a product attribute filter match"
  3852. msgstr ""
  3853. # A sentence describing a Product filter. See screen shot for context: https://cloudup.com/cSsUY9VeCVJ
  3854. #: client/analytics/report/orders/config.js:373
  3855. #: client/analytics/report/variations/config.js:143
  3856. msgid "{{title}}Attribute{{/title}} {{rule /}} {{filter /}}"
  3857. msgstr ""
  3858. #: client/analytics/report/orders/config.js:377
  3859. #: client/analytics/report/variations/config.js:147
  3860. msgid "Select attributes"
  3861. msgstr ""
  3862. #: client/analytics/report/orders/config.js:43
  3863. msgid "Average Items Per Order"
  3864. msgstr ""
  3865. #: client/analytics/report/orders/config.js:57
  3866. msgid "All Orders"
  3867. msgstr ""
  3868. #: client/analytics/report/orders/config.js:78
  3869. msgid "Order Status"
  3870. msgstr ""
  3871. #: client/analytics/report/orders/config.js:79
  3872. msgid "Remove order status filter"
  3873. msgstr ""
  3874. #: client/analytics/report/orders/config.js:83
  3875. msgid "Select an order status filter match"
  3876. msgstr ""
  3877. # A sentence describing an Order Status filter. See screen shot for context: https://cloudup.com/cSsUY9VeCVJ
  3878. #: client/analytics/report/orders/config.js:88
  3879. msgid "{{title}}Order Status{{/title}} {{rule /}} {{filter /}}"
  3880. msgstr ""
  3881. #: client/analytics/report/orders/config.js:92
  3882. msgid "Select an order status"
  3883. msgstr ""
  3884. #: client/analytics/report/orders/table.js:209
  3885. msgid "%s× %s"
  3886. msgstr ""
  3887. #: client/analytics/report/orders/table.js:265
  3888. msgid " customer"
  3889. msgid_plural " customers"
  3890. msgstr[0] ""
  3891. msgstr[1] ""
  3892. #: client/analytics/report/orders/table.js:274
  3893. #: client/analytics/report/products/table.js:286
  3894. #: client/analytics/report/stock/table.js:149
  3895. msgid "product"
  3896. msgid_plural "products"
  3897. msgstr[0] ""
  3898. msgstr[1] ""
  3899. #: client/analytics/report/products/config.js:117
  3900. #: client/analytics/report/variations/config.js:59
  3901. msgid "All Variations"
  3902. msgstr ""
  3903. #: client/analytics/report/products/config.js:134
  3904. #: client/analytics/report/variations/config.js:76
  3905. msgid "Type to search for a variation"
  3906. msgstr ""
  3907. #: client/analytics/report/products/config.js:138
  3908. #: client/analytics/report/variations/config.js:80
  3909. msgid "Single Variation"
  3910. msgstr ""
  3911. #: client/analytics/report/products/config.js:156
  3912. #: client/analytics/report/variations/config.js:98
  3913. #: client/analytics/report/variations/table.js:241
  3914. msgid "Check at least two variations below to compare"
  3915. msgstr ""
  3916. #: client/analytics/report/products/config.js:160
  3917. #: client/analytics/report/variations/config.js:102
  3918. msgid "Search for variations to compare"
  3919. msgstr ""
  3920. #: client/analytics/report/products/config.js:164
  3921. #: client/analytics/report/variations/config.js:106
  3922. msgid "Compare Variations"
  3923. msgstr ""
  3924. #: client/analytics/report/products/config.js:56
  3925. #: client/analytics/report/stock/config.js:54
  3926. msgid "All Products"
  3927. msgstr ""
  3928. #: client/analytics/report/products/config.js:72
  3929. msgid "Type to search for a product"
  3930. msgstr ""
  3931. #: client/analytics/report/products/config.js:76
  3932. msgid "Single Product"
  3933. msgstr ""
  3934. #: client/analytics/report/products/config.js:91
  3935. #: client/analytics/report/products/table.js:330
  3936. msgid "Check at least two products below to compare"
  3937. msgstr ""
  3938. #: client/analytics/report/products/config.js:95
  3939. msgid "Search for products to compare"
  3940. msgstr ""
  3941. #: client/analytics/report/products/config.js:99
  3942. msgid "Compare Products"
  3943. msgstr ""
  3944. #: client/analytics/report/products/index.js:45
  3945. #: client/analytics/report/variations/index.js:27
  3946. msgid "%d variations"
  3947. msgstr ""
  3948. #: client/analytics/report/products/table.js:308
  3949. #: client/analytics/report/variations/table.js:220
  3950. msgid "orders"
  3951. msgid_plural "orders"
  3952. msgstr[0] ""
  3953. msgstr[1] ""
  3954. #: client/analytics/report/products/table.js:334
  3955. msgid "Search by product name or SKU"
  3956. msgstr ""
  3957. #: client/analytics/report/revenue/config.js:86
  3958. msgid "All Revenue"
  3959. msgstr ""
  3960. #: client/analytics/report/revenue/table.js:235
  3961. msgid "gross sales"
  3962. msgstr ""
  3963. #: client/analytics/report/revenue/table.js:239
  3964. msgid "returns"
  3965. msgstr ""
  3966. #: client/analytics/report/revenue/table.js:243
  3967. msgid "coupons"
  3968. msgstr ""
  3969. #: client/analytics/report/revenue/table.js:251
  3970. msgid "taxes"
  3971. msgstr ""
  3972. #: client/analytics/report/revenue/table.js:255
  3973. msgid "shipping"
  3974. msgstr ""
  3975. #: client/analytics/report/revenue/table.js:259
  3976. msgid "total sales"
  3977. msgstr ""
  3978. #: client/analytics/report/stock/config.js:34
  3979. msgid "Out of Stock"
  3980. msgstr ""
  3981. #: client/analytics/report/stock/config.js:38
  3982. msgid "Low Stock"
  3983. msgstr ""
  3984. #: client/analytics/report/stock/config.js:41
  3985. msgid "In Stock"
  3986. msgstr ""
  3987. #: client/analytics/report/stock/config.js:43
  3988. msgid "On Backorder"
  3989. msgstr ""
  3990. #: client/analytics/report/stock/config.js:49
  3991. msgid "Filter by"
  3992. msgstr ""
  3993. #: client/analytics/report/stock/table.js:158
  3994. msgid "out of stock"
  3995. msgstr ""
  3996. #: client/analytics/report/stock/table.js:162
  3997. msgid "low stock"
  3998. msgstr ""
  3999. #: client/analytics/report/stock/table.js:166
  4000. msgid "on backorder"
  4001. msgstr ""
  4002. #: client/analytics/report/stock/table.js:170
  4003. #: client/homescreen/activity-panel/stock/card.js:171
  4004. msgid "in stock"
  4005. msgstr ""
  4006. #: client/analytics/report/taxes/config.js:67
  4007. msgid "All Taxes"
  4008. msgstr ""
  4009. #: client/analytics/report/taxes/config.js:84
  4010. msgid "Check at least two tax codes below to compare"
  4011. msgstr ""
  4012. #: client/analytics/report/taxes/config.js:88
  4013. msgid "Search for tax codes to compare"
  4014. msgstr ""
  4015. #: client/analytics/report/taxes/config.js:92
  4016. msgid "Compare Tax Codes"
  4017. msgstr ""
  4018. #: client/analytics/report/taxes/index.js:23
  4019. msgid "%d taxes"
  4020. msgstr ""
  4021. #: client/analytics/report/taxes/table.js:147
  4022. msgid "tax code"
  4023. msgid_plural "tax codes"
  4024. msgstr[0] ""
  4025. msgstr[1] ""
  4026. #: client/analytics/report/taxes/table.js:156
  4027. msgid "total tax"
  4028. msgstr ""
  4029. #: client/analytics/report/taxes/table.js:160
  4030. msgid "order tax"
  4031. msgstr ""
  4032. #: client/analytics/report/taxes/table.js:164
  4033. msgid "shipping tax"
  4034. msgstr ""
  4035. #: client/analytics/report/taxes/utils.js:10
  4036. #: packages/components/build-module/search/autocompleters/utils.js:31
  4037. msgid "TAX"
  4038. msgstr ""
  4039. #: client/analytics/report/variations/config.js:176
  4040. msgid "Search categories"
  4041. msgstr ""
  4042. #: client/analytics/report/variations/config.js:177
  4043. msgid "Remove categories filter"
  4044. msgstr ""
  4045. #: client/analytics/report/variations/config.js:181
  4046. msgid "Select a category filter match"
  4047. msgstr ""
  4048. # A sentence describing a Category filter. See screen shot for context: https://cloudup.com/cSsUY9VeCVJ
  4049. #: client/analytics/report/variations/config.js:186
  4050. msgid "{{title}}Category{{/title}} {{rule /}} {{filter /}}"
  4051. msgstr ""
  4052. #: client/analytics/report/variations/config.js:190
  4053. msgid "Select categories"
  4054. msgstr ""
  4055. #: client/analytics/report/variations/table.js:198
  4056. msgid "variation sold"
  4057. msgid_plural "variations sold"
  4058. msgstr[0] ""
  4059. msgstr[1] ""
  4060. #: client/analytics/report/variations/table.js:245
  4061. msgid "Search by variation name or SKU"
  4062. msgstr ""
  4063. #: client/analytics/settings/config.js:105
  4064. msgid "Default Date Range:"
  4065. msgstr ""
  4066. #: client/analytics/settings/config.js:108
  4067. msgid ""
  4068. "Select a default date range. When no range is selected, reports will be "
  4069. "viewed by the default date range."
  4070. msgstr ""
  4071. #: client/analytics/settings/config.js:51
  4072. msgid "Custom Statuses"
  4073. msgstr ""
  4074. #: client/analytics/settings/config.js:58
  4075. msgid "Unregistered Statuses"
  4076. msgstr ""
  4077. #: client/analytics/settings/config.js:64
  4078. msgid "Exclude the %s status from reports"
  4079. msgstr ""
  4080. #: client/analytics/settings/config.js:77
  4081. msgid "Excluded Statuses:"
  4082. msgstr ""
  4083. #: client/analytics/settings/config.js:81
  4084. msgid ""
  4085. "Orders with these statuses are excluded from the totals in your reports. "
  4086. "The {{strong}}Refunded{{/strong}} status can not be excluded."
  4087. msgstr ""
  4088. #: client/analytics/settings/config.js:93
  4089. msgid "Actionable Statuses:"
  4090. msgstr ""
  4091. #: client/analytics/settings/config.js:96
  4092. msgid ""
  4093. "Orders with these statuses require action on behalf of the store admin. "
  4094. "These orders will show up in the Home Screen - Orders task."
  4095. msgstr ""
  4096. #: client/analytics/settings/historical-data/actions.js:109
  4097. msgid "Stop Import"
  4098. msgstr ""
  4099. #: client/analytics/settings/historical-data/actions.js:112
  4100. msgid "Imported data will not be lost if the import is stopped."
  4101. msgstr ""
  4102. #: client/analytics/settings/historical-data/actions.js:117
  4103. msgid "Navigating away from this page will not affect the import."
  4104. msgstr ""
  4105. #: client/analytics/settings/historical-data/actions.js:154
  4106. msgid "Start"
  4107. msgstr ""
  4108. #: client/analytics/settings/historical-data/actions.js:163
  4109. msgid "Something went wrong with the importation process."
  4110. msgstr ""
  4111. #: client/analytics/settings/historical-data/actions.js:174
  4112. msgid "Re-import Data"
  4113. msgstr ""
  4114. #: client/analytics/settings/historical-data/actions.js:177
  4115. msgid "Delete Previously Imported Data"
  4116. msgstr ""
  4117. #: client/analytics/settings/historical-data/actions.js:36
  4118. msgid "There was a problem rebuilding your report data."
  4119. msgstr ""
  4120. #: client/analytics/settings/historical-data/actions.js:49
  4121. msgid "There was a problem stopping your current import."
  4122. msgstr ""
  4123. #: client/analytics/settings/historical-data/actions.js:78
  4124. msgid "There was a problem deleting your previous data."
  4125. msgstr ""
  4126. #: client/analytics/settings/historical-data/index.js:26
  4127. #: packages/components/build-module/advanced-filters/date-filter.js:18
  4128. #: packages/components/build-module/date-range-filter-picker/index.js:15
  4129. #: packages/data/build-module/import/reducer.js:17
  4130. #: packages/date/build-module/index.js:558
  4131. msgid "MM/DD/YYYY"
  4132. msgstr ""
  4133. #: client/analytics/settings/historical-data/layout.js:44
  4134. #: client/analytics/settings/historical-data/period-selector.js:68
  4135. msgid "Import Historical Data"
  4136. msgstr ""
  4137. #: client/analytics/settings/historical-data/layout.js:53
  4138. msgid ""
  4139. "This tool populates historical analytics data by processing customers and "
  4140. "orders created prior to activating WooCommerce Admin."
  4141. msgstr ""
  4142. #: client/analytics/settings/historical-data/layout.js:71
  4143. msgid "Registered Customers"
  4144. msgstr ""
  4145. #: client/analytics/settings/historical-data/layout.js:79
  4146. msgid "Orders and Refunds"
  4147. msgstr ""
  4148. #: client/analytics/settings/historical-data/period-selector.js:47
  4149. msgid "Beginning on"
  4150. msgstr ""
  4151. #: client/analytics/settings/historical-data/progress.js:16
  4152. msgid "%(progress)s of %(total)s"
  4153. msgstr ""
  4154. #: client/analytics/settings/historical-data/progress.js:9
  4155. msgid "Imported %(label)s"
  4156. msgstr ""
  4157. #: client/analytics/settings/historical-data/skip-checkbox.js:18
  4158. msgid "Skip previously imported customers and orders"
  4159. msgstr ""
  4160. #: client/analytics/settings/historical-data/status.js:13
  4161. msgid "Nothing To Import"
  4162. msgstr ""
  4163. #: client/analytics/settings/historical-data/status.js:14
  4164. msgid "Ready To Import"
  4165. msgstr ""
  4166. #: client/analytics/settings/historical-data/status.js:16
  4167. msgid "Initializing"
  4168. msgstr ""
  4169. #: client/analytics/settings/historical-data/status.js:20
  4170. msgid "Importing Customers"
  4171. msgstr ""
  4172. #: client/analytics/settings/historical-data/status.js:24
  4173. msgid "Importing Orders"
  4174. msgstr ""
  4175. #: client/analytics/settings/historical-data/status.js:28
  4176. msgid "Finalizing"
  4177. msgstr ""
  4178. #: client/analytics/settings/historical-data/status.js:33
  4179. msgid "All historical data imported"
  4180. msgstr ""
  4181. #: client/analytics/settings/historical-data/status.js:35
  4182. msgid "Historical data from %s onward imported"
  4183. msgstr ""
  4184. #: client/analytics/settings/historical-data/status.js:47
  4185. msgid "Status:"
  4186. msgstr ""
  4187. #: client/analytics/settings/index.js:133
  4188. msgid "Analytics Settings"
  4189. msgstr ""
  4190. #: client/analytics/settings/index.js:147
  4191. msgid "Reset Defaults"
  4192. msgstr ""
  4193. #: client/analytics/settings/index.js:154
  4194. msgid "Save Settings"
  4195. msgstr ""
  4196. #: client/analytics/settings/index.js:36
  4197. msgid "You have unsaved changes. If you proceed, they will be lost."
  4198. msgstr ""
  4199. #: client/analytics/settings/index.js:57
  4200. msgid "Your settings have been successfully saved."
  4201. msgstr ""
  4202. #: client/analytics/settings/index.js:65
  4203. msgid "There was an error saving your settings. Please try again."
  4204. msgstr ""
  4205. #: client/analytics/settings/index.js:79
  4206. msgid "Are you sure you want to reset all settings to default values?"
  4207. msgstr ""
  4208. #: client/customer-effort-score-tracks/customer-effort-score-tracks.js:129
  4209. msgid "Pencil icon"
  4210. msgstr ""
  4211. #: client/customer-effort-score-tracks/data/actions.js:58
  4212. msgid "How easy was it to filter your store analytics?"
  4213. msgstr ""
  4214. #: client/dashboard/components/cart-modal.js:109
  4215. msgid "%s — %s per year"
  4216. msgstr ""
  4217. #: client/dashboard/components/cart-modal.js:131
  4218. msgid "Would you like to add the following paid features to your store now?"
  4219. msgstr ""
  4220. #: client/dashboard/components/cart-modal.js:141
  4221. msgid ""
  4222. "You won't have access to this functionality until the extensions have been "
  4223. "purchased and installed."
  4224. msgstr ""
  4225. #: client/dashboard/components/cart-modal.js:153
  4226. msgid "I'll do it later"
  4227. msgstr ""
  4228. #: client/dashboard/components/cart-modal.js:161
  4229. msgid "Buy now"
  4230. msgstr ""
  4231. #: client/dashboard/components/connect/index.js:77
  4232. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:384
  4233. #: packages/components/build-module/plugins/index.js:62
  4234. msgid "Retry"
  4235. msgstr ""
  4236. #: client/dashboard/components/connect/index.js:91
  4237. #: client/homescreen/stats-overview/install-jetpack-cta.js:76
  4238. #: client/profile-wizard/steps/usage-modal.js:125
  4239. #: client/task-list/tasks/PaymentGatewaySuggestions/components/WCPay/UsageModal.js:55
  4240. #: client/wp-admin-scripts/navigation-opt-out/container.js:46
  4241. #: packages/components/build-module/plugins/index.js:74
  4242. msgid "No thanks"
  4243. msgstr ""
  4244. #: client/dashboard/components/connect/index.js:96
  4245. #: packages/components/build-module/plugins/index.js:75
  4246. msgid "Abort"
  4247. msgstr ""
  4248. #: client/dashboard/components/settings/general/store-address.js:187
  4249. msgid "Address line 1"
  4250. msgstr ""
  4251. #: client/dashboard/components/settings/general/store-address.js:194
  4252. msgid "Address line 2 (optional)"
  4253. msgstr ""
  4254. #: client/dashboard/components/settings/general/store-address.js:22
  4255. msgid "Please add an address"
  4256. msgstr ""
  4257. #: client/dashboard/components/settings/general/store-address.js:221
  4258. msgid "Post code"
  4259. msgstr ""
  4260. #: client/dashboard/components/settings/general/store-address.js:28
  4261. msgid "Please select a country / region"
  4262. msgstr ""
  4263. #: client/dashboard/components/settings/general/store-address.js:34
  4264. msgid "Please add a city"
  4265. msgstr ""
  4266. #: client/dashboard/components/settings/general/store-address.js:37
  4267. msgid "Please add a post code"
  4268. msgstr ""
  4269. #: client/dashboard/customizable.js:182
  4270. msgid "Add more sections"
  4271. msgstr ""
  4272. #: client/dashboard/customizable.js:191
  4273. msgid "Dashboard Sections"
  4274. msgstr ""
  4275. #: client/dashboard/customizable.js:204
  4276. msgid "Add %s section"
  4277. msgstr ""
  4278. #: client/dashboard/dashboard-charts/block.js:78
  4279. msgid "%s Report"
  4280. msgstr ""
  4281. #: client/dashboard/dashboard-charts/config.js:65
  4282. msgid "Gross discounted"
  4283. msgstr ""
  4284. #: client/dashboard/dashboard-charts/index.js:153
  4285. msgid "Choose which charts to display"
  4286. msgstr ""
  4287. #: client/dashboard/dashboard-charts/index.js:193
  4288. #: client/dashboard/default-sections.js:67
  4289. msgid "Charts"
  4290. msgstr ""
  4291. #: client/dashboard/dashboard-charts/index.js:216
  4292. #: packages/components/build-module/chart/index.js:283
  4293. msgid "Line chart"
  4294. msgstr ""
  4295. #: client/dashboard/dashboard-charts/index.js:232
  4296. #: packages/components/build-module/chart/index.js:287
  4297. msgid "Bar chart"
  4298. msgstr ""
  4299. #: client/dashboard/dashboard-charts/index.js:60
  4300. #: packages/components/build-module/chart/index.js:202
  4301. msgid "By hour"
  4302. msgstr ""
  4303. #: client/dashboard/dashboard-charts/index.js:61
  4304. #: packages/components/build-module/chart/index.js:203
  4305. msgid "By day"
  4306. msgstr ""
  4307. #: client/dashboard/dashboard-charts/index.js:62
  4308. #: packages/components/build-module/chart/index.js:204
  4309. msgid "By week"
  4310. msgstr ""
  4311. #: client/dashboard/dashboard-charts/index.js:63
  4312. #: packages/components/build-module/chart/index.js:205
  4313. msgid "By month"
  4314. msgstr ""
  4315. #: client/dashboard/dashboard-charts/index.js:64
  4316. #: packages/components/build-module/chart/index.js:206
  4317. msgid "By quarter"
  4318. msgstr ""
  4319. #: client/dashboard/dashboard-charts/index.js:65
  4320. #: packages/components/build-module/chart/index.js:207
  4321. msgid "By year"
  4322. msgstr ""
  4323. #: client/dashboard/default-sections.js:48
  4324. msgid "Performance"
  4325. msgstr ""
  4326. #: client/dashboard/default-sections.js:88
  4327. #: client/dashboard/leaderboards/index.js:154
  4328. msgid "Leaderboards"
  4329. msgstr ""
  4330. #: client/dashboard/leaderboards/index.js:111
  4331. msgid "Choose which leaderboards to display and other settings"
  4332. msgstr ""
  4333. #: client/dashboard/leaderboards/index.js:127
  4334. msgid "Rows Per Table"
  4335. msgstr ""
  4336. #: client/dashboard/section-controls.js:47
  4337. msgid "Section Title"
  4338. msgstr ""
  4339. #: client/dashboard/section-controls.js:63
  4340. msgid "Move up"
  4341. msgstr ""
  4342. #: client/dashboard/section-controls.js:74
  4343. msgid "Move down"
  4344. msgstr ""
  4345. #: client/dashboard/section-controls.js:81
  4346. msgid "Remove block"
  4347. msgstr ""
  4348. #: client/dashboard/section-controls.js:84
  4349. msgid "Remove section"
  4350. msgstr ""
  4351. #: client/dashboard/store-performance/index.js:179
  4352. msgid "Store Performance"
  4353. msgstr ""
  4354. #: client/dashboard/store-performance/index.js:51
  4355. msgid "Choose which analytics to display and the section name"
  4356. msgstr ""
  4357. #: client/dashboard/store-performance/index.js:58
  4358. msgid "Display Stats:"
  4359. msgstr ""
  4360. #: client/header/activity-panel/display-options/icons/display.js:41
  4361. #: client/task-list/index.js:296
  4362. msgid "Display"
  4363. msgstr ""
  4364. #: client/header/activity-panel/display-options/index.js:104
  4365. msgid "Layout"
  4366. msgstr ""
  4367. #: client/header/activity-panel/display-options/index.js:34
  4368. msgid "Single column"
  4369. msgstr ""
  4370. #: client/header/activity-panel/display-options/index.js:43
  4371. msgid "Two columns"
  4372. msgstr ""
  4373. # button label text should, if possible, be under 16 characters.
  4374. #: client/header/activity-panel/display-options/index.js:86
  4375. msgid "Display options"
  4376. msgstr ""
  4377. #: client/header/activity-panel/highlight-tooltip/index.js:172
  4378. #: packages/components/build-module/calendar/phrases.js:7
  4379. msgid "Close"
  4380. msgstr ""
  4381. #: client/header/activity-panel/index.js:235
  4382. #: client/header/activity-panel/panels/help.js:43
  4383. msgid "Inbox"
  4384. msgstr ""
  4385. #: client/header/activity-panel/index.js:244
  4386. #: client/marketing/overview/installed-extensions/row.js:112
  4387. #: client/task-list/tasks.js:234
  4388. #: client/task-list/tasks/PaymentGatewaySuggestions/components/Action.js:119
  4389. msgid "Finish setup"
  4390. msgstr ""
  4391. #: client/header/activity-panel/index.js:277
  4392. msgid "Help"
  4393. msgstr ""
  4394. #: client/header/activity-panel/index.js:291
  4395. msgid "Preview site"
  4396. msgstr ""
  4397. #: client/header/activity-panel/index.js:368
  4398. msgid "Store Activity"
  4399. msgstr ""
  4400. #: client/header/activity-panel/index.js:403
  4401. msgid "We're here for help"
  4402. msgstr ""
  4403. #: client/header/activity-panel/index.js:404
  4404. msgid ""
  4405. "If you have any questions, feel free to explore the WooCommerce docs listed "
  4406. "here."
  4407. msgstr ""
  4408. #: client/header/activity-panel/index.js:408
  4409. #: client/navigation/components/favorites-tooltip/index.js:51
  4410. msgid "Got it"
  4411. msgstr ""
  4412. #: client/header/activity-panel/panels/help.js:103
  4413. msgid "Set up Google Listing & Ads"
  4414. msgstr ""
  4415. #: client/header/activity-panel/panels/help.js:108
  4416. msgid "Connect Mailchimp for WooCommerce"
  4417. msgstr ""
  4418. #: client/header/activity-panel/panels/help.js:116
  4419. msgid "Set up Creative Mail for WooCommerce"
  4420. msgstr ""
  4421. #: client/header/activity-panel/panels/help.js:130
  4422. msgid "Which Payment Option is Right for Me?"
  4423. msgstr ""
  4424. #: client/header/activity-panel/panels/help.js:138
  4425. msgid "WooCommerce Payments Start Up Guide"
  4426. msgstr ""
  4427. #: client/header/activity-panel/panels/help.js:146
  4428. msgid "WooCommerce Payments FAQs"
  4429. msgstr ""
  4430. #: client/header/activity-panel/panels/help.js:151
  4431. msgid "Stripe Setup and Configuration"
  4432. msgstr ""
  4433. #: client/header/activity-panel/panels/help.js:156
  4434. msgid "PayPal Checkout Setup and Configuration"
  4435. msgstr ""
  4436. #: client/header/activity-panel/panels/help.js:164
  4437. msgid "Square - Get started"
  4438. msgstr ""
  4439. #: client/header/activity-panel/panels/help.js:174
  4440. msgid "Klarna - Introduction"
  4441. msgstr ""
  4442. #: client/header/activity-panel/panels/help.js:179
  4443. msgid "PayFast Setup and Configuration"
  4444. msgstr ""
  4445. #: client/header/activity-panel/panels/help.js:184
  4446. msgid "eWAY Setup and Configuration"
  4447. msgstr ""
  4448. #: client/header/activity-panel/panels/help.js:189
  4449. msgid "Direct Bank Transfer (BACS)"
  4450. msgstr ""
  4451. #: client/header/activity-panel/panels/help.js:194
  4452. msgid "Cash on Delivery"
  4453. msgstr ""
  4454. #: client/header/activity-panel/panels/help.js:209
  4455. msgid "Import products using the CSV Importer and Exporter"
  4456. msgstr ""
  4457. #: client/header/activity-panel/panels/help.js:217
  4458. msgid "Migrate products using Cart2Cart"
  4459. msgstr ""
  4460. #: client/header/activity-panel/panels/help.js:225
  4461. msgid "Learn more about setting up products"
  4462. msgstr ""
  4463. #: client/header/activity-panel/panels/help.js:241
  4464. msgid "Setting up Shipping Zones"
  4465. msgstr ""
  4466. #: client/header/activity-panel/panels/help.js:246
  4467. msgid "Core Shipping Options"
  4468. msgstr ""
  4469. #: client/header/activity-panel/panels/help.js:251
  4470. msgid "Product Shipping Classes"
  4471. msgstr ""
  4472. #: client/header/activity-panel/panels/help.js:256
  4473. msgid "WooCommerce Shipping setup and configuration"
  4474. msgstr ""
  4475. #: client/header/activity-panel/panels/help.js:264
  4476. msgid "Learn more about configuring your shipping settings"
  4477. msgstr ""
  4478. #: client/header/activity-panel/panels/help.js:287
  4479. msgid "Setting up Taxes in WooCommerce"
  4480. msgstr ""
  4481. #: client/header/activity-panel/panels/help.js:292
  4482. msgid "Automated Tax calculation using WooCommerce Tax"
  4483. msgstr ""
  4484. #: client/header/activity-panel/panels/help.js:33
  4485. msgid "Get Support"
  4486. msgstr ""
  4487. #: client/header/activity-panel/panels/help.js:340
  4488. msgid "WooCommerce Docs"
  4489. msgstr ""
  4490. #: client/header/activity-panel/panels/help.js:38
  4491. msgid "Home Screen"
  4492. msgstr ""
  4493. #: client/header/activity-panel/panels/help.js:401
  4494. msgid "Documentation"
  4495. msgstr ""
  4496. #: client/header/activity-panel/panels/help.js:48
  4497. msgid "Stats Overview"
  4498. msgstr ""
  4499. #: client/header/activity-panel/panels/help.js:53
  4500. msgid "Store Management"
  4501. msgstr ""
  4502. #: client/header/activity-panel/panels/help.js:58
  4503. msgid "Store Setup Checklist"
  4504. msgstr ""
  4505. #: client/header/activity-panel/panels/help.js:68
  4506. msgid "Showcase your products and tailor your shopping experience using Blocks"
  4507. msgstr ""
  4508. #: client/header/activity-panel/panels/help.js:76
  4509. msgid "Manage Store Notice, Catalog View and Product Images"
  4510. msgstr ""
  4511. #: client/header/activity-panel/panels/help.js:84
  4512. msgid "How to choose and change a theme"
  4513. msgstr ""
  4514. #: client/header/activity-panel/panels/help.js:99
  4515. msgid "Get started with Mailpoet"
  4516. msgstr ""
  4517. #: client/header/activity-panel/panels/inbox/abbreviated-notifications-panel.js:102
  4518. msgid "Orders to fulfill"
  4519. msgstr ""
  4520. # Number of orders the user has to fulfill
  4521. #: client/header/activity-panel/panels/inbox/abbreviated-notifications-panel.js:107
  4522. msgid "You have %d order to fulfill"
  4523. msgid_plural "You have %d orders to fulfill"
  4524. msgstr[0] ""
  4525. msgstr[1] ""
  4526. #: client/header/activity-panel/panels/inbox/abbreviated-notifications-panel.js:129
  4527. msgid "Reviews to moderate"
  4528. msgstr ""
  4529. # Number of reviews the user has to moderate
  4530. #: client/header/activity-panel/panels/inbox/abbreviated-notifications-panel.js:134
  4531. msgid "You have %d review to moderate"
  4532. msgid_plural "You have %d reviews to moderate"
  4533. msgstr[0] ""
  4534. msgstr[1] ""
  4535. #: client/header/activity-panel/panels/inbox/abbreviated-notifications-panel.js:156
  4536. msgid "Inventory to review"
  4537. msgstr ""
  4538. #: client/header/activity-panel/panels/inbox/abbreviated-notifications-panel.js:159
  4539. msgid "You have inventory to review and update"
  4540. msgstr ""
  4541. #: client/header/activity-panel/panels/inbox/abbreviated-notifications-panel.js:75
  4542. #: client/task-list/index.js:208
  4543. msgid "Things to do next"
  4544. msgstr ""
  4545. # Things the user has to do
  4546. #: client/header/activity-panel/panels/inbox/abbreviated-notifications-panel.js:80
  4547. msgid "You have %d new thing to do"
  4548. msgid_plural "You have %d new things to do"
  4549. msgstr[0] ""
  4550. msgstr[1] ""
  4551. #: client/header/activity-panel/tab/index.js:40
  4552. msgid "unread activity"
  4553. msgstr ""
  4554. # 1: document title. 2: page title
  4555. #: client/header/index.js:132
  4556. msgid "%1$s &lsaquo; %2$s &#8212; WooCommerce"
  4557. msgstr ""
  4558. #: client/header/index.js:71
  4559. msgid "Add tax rates"
  4560. msgstr ""
  4561. #: client/header/index.js:72
  4562. msgid "Personalize your store"
  4563. msgstr ""
  4564. #: client/header/index.js:73
  4565. #: client/store-management-links/index.js:43
  4566. msgid "Add products"
  4567. msgstr ""
  4568. #: client/header/index.js:74
  4569. msgid "Set up shipping costs"
  4570. msgstr ""
  4571. #: client/homescreen/activity-panel/orders/index.js:104
  4572. msgid "{{orderLink}}Order #%(orderNumber)s{{/orderLink}} %(customerString)s"
  4573. msgstr ""
  4574. #: client/homescreen/activity-panel/orders/index.js:176
  4575. msgid "%d product"
  4576. msgid_plural "%d products"
  4577. msgstr[0] ""
  4578. msgstr[1] ""
  4579. #: client/homescreen/activity-panel/orders/index.js:205
  4580. msgid "Manage all orders"
  4581. msgstr ""
  4582. #: client/homescreen/activity-panel/orders/index.js:277
  4583. msgid ""
  4584. "You currently don't have any actionable statuses. To display orders here, "
  4585. "select orders that require further review in settings."
  4586. msgstr ""
  4587. #: client/homescreen/activity-panel/orders/index.js:290
  4588. msgid "There was an error getting your orders. Please try again."
  4589. msgstr ""
  4590. #: client/homescreen/activity-panel/orders/index.js:51
  4591. msgid "You’ve fulfilled all your orders"
  4592. msgstr ""
  4593. #: client/homescreen/activity-panel/panels.js:70
  4594. msgid "Reviews"
  4595. msgstr ""
  4596. #: client/homescreen/activity-panel/reviews/index.js:108
  4597. msgid "Review successfully updated."
  4598. msgstr ""
  4599. #: client/homescreen/activity-panel/reviews/index.js:115
  4600. #: client/homescreen/activity-panel/stock/card.js:102
  4601. #: client/inbox-panel/index.js:209
  4602. #: client/task-list/task-list.js:194
  4603. msgid "Undo"
  4604. msgstr ""
  4605. #: client/homescreen/activity-panel/reviews/index.js:135
  4606. msgid "Review could not be updated."
  4607. msgstr ""
  4608. #: client/homescreen/activity-panel/reviews/index.js:169
  4609. msgid ""
  4610. "{{authorLink}}%s{{/authorLink}}{{verifiedCustomerIcon/}} reviewed "
  4611. "{{productLink}}%s{{/productLink}}"
  4612. msgstr ""
  4613. #: client/homescreen/activity-panel/reviews/index.js:197
  4614. msgid "Verified owner"
  4615. msgstr ""
  4616. #: client/homescreen/activity-panel/reviews/index.js:257
  4617. msgid "Approve"
  4618. msgstr ""
  4619. #: client/homescreen/activity-panel/reviews/index.js:267
  4620. msgid "Mark as spam"
  4621. msgstr ""
  4622. #: client/homescreen/activity-panel/reviews/index.js:278
  4623. #: packages/experimental/build-module/experimental-list/task-item.js:85
  4624. msgid "Delete"
  4625. msgstr ""
  4626. #: client/homescreen/activity-panel/reviews/index.js:317
  4627. msgid "Manage all reviews"
  4628. msgstr ""
  4629. #: client/homescreen/activity-panel/reviews/index.js:327
  4630. msgid "There was an error getting your reviews. Please try again."
  4631. msgstr ""
  4632. #: client/homescreen/activity-panel/reviews/index.js:64
  4633. msgid "Review successfully deleted."
  4634. msgstr ""
  4635. #: client/homescreen/activity-panel/reviews/index.js:91
  4636. msgid "Review could not be deleted."
  4637. msgstr ""
  4638. # %s = name of the product having stock updated
  4639. #: client/homescreen/activity-panel/stock/card.js:120
  4640. msgid "%s stock could not be updated"
  4641. msgstr ""
  4642. #: client/homescreen/activity-panel/stock/card.js:137
  4643. #: client/task-list/tasks/PaymentGatewaySuggestions/plugins/Bacs.js:160
  4644. #: client/wp-admin-scripts/beta-features-tracking-modal/container.js:105
  4645. msgid "Save"
  4646. msgstr ""
  4647. #: client/homescreen/activity-panel/stock/card.js:140
  4648. #: packages/customer-effort-score/build-module/customer-feedback-modal/index.js:77
  4649. #: packages/experimental/build-module/inbox-note/inbox-dismiss-confirmation-modal.js:13
  4650. msgid "Cancel"
  4651. msgstr ""
  4652. #: client/homescreen/activity-panel/stock/card.js:147
  4653. msgid "Update stock"
  4654. msgstr ""
  4655. # %d = stock quantity of the product being updated
  4656. #: client/homescreen/activity-panel/stock/card.js:187
  4657. msgid "%d in stock"
  4658. msgstr ""
  4659. # %s = time since last product order. e.g.: "10 minutes ago" - translated.
  4660. #: client/homescreen/activity-panel/stock/card.js:205
  4661. msgid "Last ordered %s"
  4662. msgstr ""
  4663. # %s = name of the product having stock updated
  4664. #: client/homescreen/activity-panel/stock/card.js:96
  4665. msgid "%s stock updated"
  4666. msgstr ""
  4667. #: client/homescreen/activity-panel/stock/index.js:91
  4668. msgid "There was an error getting your low stock products. Please try again."
  4669. msgstr ""
  4670. #: client/homescreen/layout.js:97
  4671. msgid "Your store today"
  4672. msgstr ""
  4673. #: client/homescreen/layout.js:98
  4674. msgid "To do's, tips, and insights for your business"
  4675. msgstr ""
  4676. #: client/homescreen/stats-overview/index.js:128
  4677. #: packages/date/build-module/index.js:29
  4678. msgid "Today"
  4679. msgstr ""
  4680. #: client/homescreen/stats-overview/index.js:132
  4681. msgid "Week to date"
  4682. msgstr ""
  4683. #: client/homescreen/stats-overview/index.js:136
  4684. msgid "Month to date"
  4685. msgstr ""
  4686. #: client/homescreen/stats-overview/index.js:168
  4687. msgid "View detailed stats"
  4688. msgstr ""
  4689. #: client/homescreen/stats-overview/index.js:70
  4690. msgid "Stats overview"
  4691. msgstr ""
  4692. #: client/homescreen/stats-overview/index.js:87
  4693. #: packages/components/build-module/table/index.js:130
  4694. msgid "Choose which values to display"
  4695. msgstr ""
  4696. #: client/homescreen/stats-overview/index.js:94
  4697. msgid "Display stats:"
  4698. msgstr ""
  4699. #: client/homescreen/stats-overview/install-jetpack-cta.js:24
  4700. msgid "Get Jetpack"
  4701. msgstr ""
  4702. #: client/homescreen/stats-overview/install-jetpack-cta.js:25
  4703. msgid "Activate Jetpack"
  4704. msgstr ""
  4705. #: client/homescreen/stats-overview/install-jetpack-cta.js:26
  4706. msgid "Connect Jetpack"
  4707. msgstr ""
  4708. #: client/homescreen/stats-overview/install-jetpack-cta.js:41
  4709. msgid "Get traffic stats with Jetpack"
  4710. msgstr ""
  4711. #: client/homescreen/stats-overview/install-jetpack-cta.js:47
  4712. msgid ""
  4713. "Keep an eye on your views and visitors metrics with Jetpack. Requires "
  4714. "Jetpack plugin and a WordPress.com account."
  4715. msgstr ""
  4716. #: client/homescreen/welcome-from-calypso-modal/welcome-from-calypso-modal.js:28
  4717. msgid ""
  4718. "We've designed your navigation and home screen to help you focus on the "
  4719. "things that matter most in managing your online store. {{link}}Learn "
  4720. "more{{/link}} about these changes – or explore on your own."
  4721. msgstr ""
  4722. #: client/homescreen/welcome-from-calypso-modal/welcome-from-calypso-modal.js:73
  4723. #: client/homescreen/welcome-modal/index.js:83
  4724. #: client/task-list/tasks.js:379
  4725. msgid "Let's go"
  4726. msgstr ""
  4727. #: client/homescreen/welcome-modal/index.js:23
  4728. msgid "Welcome to your WooCommerce store’s online HQ!"
  4729. msgstr ""
  4730. #: client/homescreen/welcome-modal/index.js:27
  4731. msgid ""
  4732. "Here's where you’ll find setup suggestions, tips and tools, and key data on "
  4733. "your store’s performance and earnings — all the basics for store management "
  4734. "and growth."
  4735. msgstr ""
  4736. #: client/homescreen/welcome-modal/index.js:38
  4737. msgid "A personalized inbox full of relevant advice"
  4738. msgstr ""
  4739. #: client/homescreen/welcome-modal/index.js:42
  4740. msgid ""
  4741. "Check your inbox for helpful growth tips tailored to your store and "
  4742. "notifications about key traffic and sales milestones. We look forward to "
  4743. "celebrating them with you!"
  4744. msgstr ""
  4745. #: client/homescreen/welcome-modal/index.js:53
  4746. msgid "Good data leads to smart business decisions"
  4747. msgstr ""
  4748. #: client/homescreen/welcome-modal/index.js:57
  4749. msgid ""
  4750. "Monitor your stats to improve performance, increase sales, and track your "
  4751. "progress toward revenue goals. The more you know, the better you can serve "
  4752. "your customers and grow your store."
  4753. msgstr ""
  4754. #: client/inbox-panel/index.js:204
  4755. msgid "All messages dismissed"
  4756. msgstr ""
  4757. #: client/inbox-panel/index.js:205
  4758. msgid "Message dismissed"
  4759. msgstr ""
  4760. #: client/inbox-panel/index.js:234
  4761. msgid "Message could not be dismissed"
  4762. msgid_plural "Messages could not be dismissed"
  4763. msgstr[0] ""
  4764. msgstr[1] ""
  4765. #: client/inbox-panel/index.js:253
  4766. msgid "There was an error getting your inbox. Please try again."
  4767. msgstr ""
  4768. #: client/inbox-panel/index.js:32
  4769. msgid "Your inbox is empty"
  4770. msgstr ""
  4771. #: client/inbox-panel/index.js:35
  4772. msgid ""
  4773. "As things begin to happen in your store your inbox will start to fill up. "
  4774. "You'll see things like achievements, new feature announcements, extension "
  4775. "recommendations and more!"
  4776. msgstr ""
  4777. #: client/layout/store-alerts/index.js:110
  4778. msgid "Next Week"
  4779. msgstr ""
  4780. #: client/layout/store-alerts/index.js:121
  4781. msgid "Next Month"
  4782. msgstr ""
  4783. #: client/layout/store-alerts/index.js:145
  4784. msgid "Remind Me Later"
  4785. msgstr ""
  4786. #: client/layout/store-alerts/index.js:224
  4787. msgid "Previous Alert"
  4788. msgstr ""
  4789. #: client/layout/store-alerts/index.js:240
  4790. msgid "{{current /}} of {{total /}}"
  4791. msgstr ""
  4792. #: client/layout/store-alerts/index.js:261
  4793. msgid "Next Alert"
  4794. msgstr ""
  4795. #: client/layout/store-alerts/index.js:88
  4796. msgid "Later Today"
  4797. msgstr ""
  4798. #: client/layout/store-alerts/index.js:99
  4799. msgid "Tomorrow"
  4800. msgstr ""
  4801. #: client/layout/transient-notices/snackbar/index.js:113
  4802. msgid "Dismiss this notice"
  4803. msgstr ""
  4804. #: client/marketing/components/knowledge-base/ReadBlogMessage.js:10
  4805. msgid ""
  4806. "Read {{link}}the WooCommerce blog{{/link}} for more tips on marketing your "
  4807. "store"
  4808. msgstr ""
  4809. #: client/marketing/components/knowledge-base/index.js:116
  4810. msgid "No posts yet"
  4811. msgstr ""
  4812. #: client/marketing/components/knowledge-base/index.js:129
  4813. msgid "Oops, our posts aren't loading right now"
  4814. msgstr ""
  4815. #: client/marketing/components/knowledge-base/index.js:231
  4816. msgid "WooCommerce knowledge base"
  4817. msgstr ""
  4818. #: client/marketing/components/knowledge-base/index.js:232
  4819. msgid ""
  4820. "Learn the ins and outs of successful marketing from the experts at "
  4821. "WooCommerce."
  4822. msgstr ""
  4823. #: client/marketing/components/knowledge-base/index.js:92
  4824. msgid "By"
  4825. msgstr ""
  4826. #: client/marketing/components/recommended-extensions/index.js:100
  4827. msgid ""
  4828. "Great marketing requires the right tools. Take your marketing to the next "
  4829. "level with our recommended marketing extensions."
  4830. msgstr ""
  4831. #: client/marketing/components/recommended-extensions/index.js:99
  4832. msgid "Recommended extensions"
  4833. msgstr ""
  4834. #: client/marketing/coupons/index.js:25
  4835. msgid "Recommended coupon extensions"
  4836. msgstr ""
  4837. #: client/marketing/coupons/index.js:29
  4838. msgid ""
  4839. "Take your coupon marketing to the next level with our recommended coupon "
  4840. "extensions."
  4841. msgstr ""
  4842. #: client/marketing/coupons/index.js:38
  4843. msgid ""
  4844. "Learn the ins and outs of successful coupon marketing from the experts at "
  4845. "WooCommerce."
  4846. msgstr ""
  4847. #: client/marketing/data/actions.js:120
  4848. msgid "There was an error loading installed extensions."
  4849. msgstr ""
  4850. #: client/marketing/data/actions.js:81
  4851. msgid "The extension has been successfully activated."
  4852. msgstr ""
  4853. #: client/marketing/data/actions.js:94
  4854. msgid "There was an error trying to activate the extension."
  4855. msgstr ""
  4856. #: client/marketing/data/resolvers.js:33
  4857. msgid "There was an error loading recommended extensions."
  4858. msgstr ""
  4859. #: client/marketing/overview/installed-extensions/index.js:37
  4860. #: client/task-list/tasks/Marketing/index.tsx:185
  4861. msgid "Installed marketing extensions"
  4862. msgstr ""
  4863. #: client/marketing/overview/installed-extensions/row.js:100
  4864. #: client/task-list/tasks/Marketing/Plugin.tsx:83
  4865. msgid "Activate"
  4866. msgstr ""
  4867. #: client/marketing/overview/installed-extensions/row.js:31
  4868. msgid "Docs"
  4869. msgstr ""
  4870. #: client/marketing/overview/installed-extensions/row.js:38
  4871. msgid "Get support"
  4872. msgstr ""
  4873. #: client/marketing/overview/installed-extensions/row.js:52
  4874. msgid "Dashboard"
  4875. msgstr ""
  4876. #: client/marketing/overview/welcome-card/index.js:35
  4877. msgid "Hide"
  4878. msgstr ""
  4879. #: client/marketing/overview/welcome-card/index.js:43
  4880. msgid ""
  4881. "Grow your customer base and increase your sales with marketing tools built "
  4882. "for WooCommerce"
  4883. msgstr ""
  4884. #: client/mobile-banner/index.js:62
  4885. msgid "Run your store from anywhere"
  4886. msgstr ""
  4887. #: client/mobile-banner/index.js:68
  4888. msgid "Download the WooCommerce app"
  4889. msgstr ""
  4890. #: client/mobile-banner/index.js:86
  4891. msgid "Install"
  4892. msgstr ""
  4893. #: client/navigation/components/container/primary-menu.js:26
  4894. msgid "WordPress Dashboard"
  4895. msgstr ""
  4896. #: client/navigation/components/container/primary-menu.js:66
  4897. #: client/store-management-links/index.js:168
  4898. msgid "Extensions"
  4899. msgstr ""
  4900. #: client/navigation/components/favorite-button/index.js:53
  4901. msgid "Add this item to your favorites."
  4902. msgstr ""
  4903. #: client/navigation/components/favorite-button/index.js:57
  4904. msgid "Remove this item from your favorites."
  4905. msgstr ""
  4906. #: client/navigation/components/favorites-tooltip/index.js:46
  4907. msgid "Introducing favorites"
  4908. msgstr ""
  4909. #: client/navigation/components/favorites-tooltip/index.js:47
  4910. msgid ""
  4911. "You can now favorite your extensions to pin them in the top level of the "
  4912. "navigation."
  4913. msgstr ""
  4914. #: client/navigation/components/header/index.js:99
  4915. msgid "Site Icon"
  4916. msgstr ""
  4917. #: client/navigation/components/intro-modal/index.js:110
  4918. msgid "A new navigation for WooCommerce"
  4919. msgstr ""
  4920. #: client/navigation/components/intro-modal/index.js:114
  4921. msgid "All of your store management features in one place"
  4922. msgstr ""
  4923. #: client/navigation/components/intro-modal/index.js:121
  4924. msgid "Focus on managing your store"
  4925. msgstr ""
  4926. #: client/navigation/components/intro-modal/index.js:122
  4927. msgid "Give your attention to key areas of WooCommerce with little distraction"
  4928. msgstr ""
  4929. #: client/navigation/components/intro-modal/index.js:129
  4930. msgid "Easily find and favorite your extensions"
  4931. msgstr ""
  4932. #: client/navigation/components/intro-modal/index.js:133
  4933. msgid "They'll appear in the top level of the navigation for quick access"
  4934. msgstr ""
  4935. #: client/payments/payment-recommendations.tsx:142
  4936. #: client/task-list/tasks/PaymentGatewaySuggestions/components/WCPay/Suggestion.js:56
  4937. #: client/task-list/tasks/products/products.js:30
  4938. #: packages/onboarding/build-module/components/RecommendedRibbon/RecommendedRibbon.js:9
  4939. msgid "Recommended"
  4940. msgstr ""
  4941. #: client/payments/payment-recommendations.tsx:173
  4942. msgid "Recommended ways to get paid"
  4943. msgstr ""
  4944. #: client/payments/payment-recommendations.tsx:187
  4945. msgid ""
  4946. "We recommend adding one of the following payment extensions to your store. "
  4947. "The extension will be installed and activated for you when you click \"Get "
  4948. "started\"."
  4949. msgstr ""
  4950. #: client/payments/payment-recommendations.tsx:195
  4951. #: client/task-list/task-list.js:265
  4952. msgid "Task List Options"
  4953. msgstr ""
  4954. #: client/payments/payment-recommendations.tsx:201
  4955. #: client/task-list/task-list.js:271
  4956. msgid "Hide this"
  4957. msgstr ""
  4958. #: client/payments/payment-recommendations.tsx:211
  4959. msgid "See more options"
  4960. msgstr ""
  4961. #: client/profile-wizard/index.js:102
  4962. msgid "Store Details"
  4963. msgstr ""
  4964. #: client/profile-wizard/index.js:110
  4965. msgid "Industry"
  4966. msgstr ""
  4967. #: client/profile-wizard/index.js:118
  4968. msgid "Product Types"
  4969. msgstr ""
  4970. #: client/profile-wizard/index.js:126
  4971. msgid "Business Details"
  4972. msgstr ""
  4973. #: client/profile-wizard/index.js:134
  4974. msgid "Theme"
  4975. msgstr ""
  4976. #: client/profile-wizard/index.js:235
  4977. msgid "There was a problem skipping the setup wizard"
  4978. msgstr ""
  4979. #: client/profile-wizard/index.js:60
  4980. msgid "There was a problem finishing the setup wizard"
  4981. msgstr ""
  4982. #: client/profile-wizard/steps/business-details/data/platform-options.js:13
  4983. msgid "BigCommerce"
  4984. msgstr ""
  4985. #: client/profile-wizard/steps/business-details/data/platform-options.js:17
  4986. msgid "Magento"
  4987. msgstr ""
  4988. #: client/profile-wizard/steps/business-details/data/platform-options.js:21
  4989. msgid "Wix"
  4990. msgstr ""
  4991. #: client/profile-wizard/steps/business-details/data/platform-options.js:25
  4992. msgid "Amazon"
  4993. msgstr ""
  4994. #: client/profile-wizard/steps/business-details/data/platform-options.js:29
  4995. msgid "eBay"
  4996. msgstr ""
  4997. #: client/profile-wizard/steps/business-details/data/platform-options.js:33
  4998. msgid "Etsy"
  4999. msgstr ""
  5000. #: client/profile-wizard/steps/business-details/data/platform-options.js:37
  5001. msgid "Squarespace"
  5002. msgstr ""
  5003. #: client/profile-wizard/steps/business-details/data/platform-options.js:9
  5004. msgid "Shopify"
  5005. msgstr ""
  5006. #: client/profile-wizard/steps/business-details/data/product-options.js:38
  5007. msgid "I don't have any products yet."
  5008. msgstr ""
  5009. # %s: $0 revenue amount
  5010. #: client/profile-wizard/steps/business-details/data/revenue-options.js:49
  5011. msgid "%s (I'm just getting started)"
  5012. msgstr ""
  5013. # %s: A given revenue amount, e.g., $2500
  5014. #: client/profile-wizard/steps/business-details/data/revenue-options.js:57
  5015. msgid "Up to %s"
  5016. msgstr ""
  5017. # %s: A given revenue amount, e.g., $250000
  5018. #: client/profile-wizard/steps/business-details/data/revenue-options.js:92
  5019. msgid "More than %s"
  5020. msgstr ""
  5021. #: client/profile-wizard/steps/business-details/data/revenue-options.js:98
  5022. msgid "I'd rather not say"
  5023. msgstr ""
  5024. #: client/profile-wizard/steps/business-details/data/selling-venue-options.js:13
  5025. msgid "Yes, on another platform"
  5026. msgstr ""
  5027. #: client/profile-wizard/steps/business-details/data/selling-venue-options.js:17
  5028. msgid "Yes, I own a different store powered by WooCommerce"
  5029. msgstr ""
  5030. #: client/profile-wizard/steps/business-details/data/selling-venue-options.js:24
  5031. msgid "Yes, in person at physical stores and/or events"
  5032. msgstr ""
  5033. #: client/profile-wizard/steps/business-details/data/selling-venue-options.js:31
  5034. msgid "Yes, on another platform and in person at physical stores and/or events"
  5035. msgstr ""
  5036. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:148
  5037. msgid "There was a problem updating your business details"
  5038. msgstr ""
  5039. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:203
  5040. msgid "This field is required"
  5041. msgstr ""
  5042. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:276
  5043. msgid "Tell us about your business"
  5044. msgstr ""
  5045. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:282
  5046. msgid ""
  5047. "We'd love to know if you are just getting started or you already have a "
  5048. "business in place."
  5049. msgstr ""
  5050. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:292
  5051. msgid "How many products do you plan to display?"
  5052. msgstr ""
  5053. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:303
  5054. msgid "Currently selling elsewhere?"
  5055. msgstr ""
  5056. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:320
  5057. msgid "What's your current annual revenue?"
  5058. msgstr ""
  5059. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:345
  5060. msgid "Which platform is the store using?"
  5061. msgstr ""
  5062. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:358
  5063. msgid "What is the platform name?"
  5064. msgstr ""
  5065. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:380
  5066. #: client/profile-wizard/steps/business-details/flows/selective-bundle/selective-extensions-bundle/index.js:305
  5067. #: client/profile-wizard/steps/industry.js:260
  5068. #: client/profile-wizard/steps/product-types/index.js:174
  5069. #: client/profile-wizard/steps/store-details/index.js:316
  5070. #: client/task-list/tasks/steps/location.js:96
  5071. #: packages/components/build-module/plugins/index.js:70
  5072. msgid "Continue"
  5073. msgstr ""
  5074. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:393
  5075. #: packages/components/build-module/plugins/index.js:63
  5076. msgid "Continue without installing"
  5077. msgstr ""
  5078. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:423
  5079. msgid "Included business features"
  5080. msgstr ""
  5081. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:429
  5082. msgid "We recommend enhancing your store with these free extensions"
  5083. msgstr ""
  5084. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:435
  5085. msgid "No commitment required - you can remove them at any time."
  5086. msgstr ""
  5087. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:480
  5088. msgid "Business details"
  5089. msgstr ""
  5090. #: client/profile-wizard/steps/business-details/flows/selective-bundle/index.js:488
  5091. msgid "Free features"
  5092. msgstr ""
  5093. #: client/profile-wizard/steps/business-details/flows/selective-bundle/selective-extensions-bundle/index.js:247
  5094. msgid "Add recommended business features to my site"
  5095. msgstr ""
  5096. #: client/profile-wizard/steps/business-details/flows/selective-bundle/selective-extensions-bundle/index.js:28
  5097. #: client/profile-wizard/steps/theme/index.js:278
  5098. msgid "Free"
  5099. msgstr ""
  5100. # %s: a comma separated list of plugins, e.g. Jetpack, Woocommerce Shipping
  5101. #: client/profile-wizard/steps/business-details/flows/selective-bundle/selective-extensions-bundle/index.js:57
  5102. msgid "Installing the following plugin: %s"
  5103. msgid_plural "Installing the following plugins: %s"
  5104. msgstr[0] ""
  5105. msgstr[1] ""
  5106. #: client/profile-wizard/steps/business-details/flows/selective-bundle/selective-extensions-bundle/index.js:74
  5107. msgid "User accounts are required to use these features."
  5108. msgstr ""
  5109. # %1$s: a comma separated list of plugins, e.g. Jetpack, Woocommerce Shipping, %2$s: text: 'User accounts are required to use these features.'
  5110. #: client/profile-wizard/steps/business-details/flows/selective-bundle/selective-extensions-bundle/index.js:83
  5111. msgid "The following plugin will be installed for free: %1$s. %2$s"
  5112. msgid_plural "The following plugins will be installed for free: %1$s. %2$s"
  5113. msgstr[0] ""
  5114. msgstr[1] ""
  5115. #: client/profile-wizard/steps/business-details/flows/selective-bundle/selective-extensions-bundle/index.js:96
  5116. msgid ""
  5117. "By installing Jetpack and WooCommerce Shipping plugins for free you agree "
  5118. "to our {{link}}Terms of Service{{/link}}."
  5119. msgstr ""
  5120. #: client/profile-wizard/steps/industry.js:104
  5121. msgid "There was a problem updating your industries"
  5122. msgstr ""
  5123. #: client/profile-wizard/steps/industry.js:115
  5124. msgid "Please select at least one industry"
  5125. msgstr ""
  5126. #: client/profile-wizard/steps/industry.js:211
  5127. msgid "In which industry does the store operate?"
  5128. msgstr ""
  5129. #: client/profile-wizard/steps/industry.js:217
  5130. #: client/profile-wizard/steps/product-types/index.js:124
  5131. msgid "Choose any that apply"
  5132. msgstr ""
  5133. #: client/profile-wizard/steps/product-types/index.js:118
  5134. msgid "What type of products will be listed?"
  5135. msgstr ""
  5136. #: client/profile-wizard/steps/product-types/index.js:182
  5137. msgid "Display monthly prices"
  5138. msgstr ""
  5139. #: client/profile-wizard/steps/product-types/index.js:199
  5140. msgid ""
  5141. "Billing is annual. All purchases are covered by our 30 day money back "
  5142. "guarantee and include access to support and updates. Extensions will be "
  5143. "added to a cart for you to purchase later."
  5144. msgstr ""
  5145. #: client/profile-wizard/steps/product-types/index.js:51
  5146. msgid "Please select at least one product type"
  5147. msgstr ""
  5148. #: client/profile-wizard/steps/product-types/index.js:75
  5149. msgid "There was a problem updating your product types"
  5150. msgstr ""
  5151. #: client/profile-wizard/steps/product-types/label.js:26
  5152. msgid ""
  5153. "This product type requires a paid extension.\n"
  5154. "We'll add this to a cart so that\n"
  5155. "you can purchase and install it later."
  5156. msgstr ""
  5157. #: client/profile-wizard/steps/product-types/label.js:39
  5158. msgid "Learn more about recommended free business features"
  5159. msgstr ""
  5160. # Dollar amount (example: $4.08 )
  5161. #: client/profile-wizard/steps/product-types/label.js:88
  5162. msgid "$%f per month"
  5163. msgstr ""
  5164. # Dollar amount (example: $49.00 )
  5165. #: client/profile-wizard/steps/product-types/label.js:93
  5166. msgid "$%f per year"
  5167. msgstr ""
  5168. #: client/profile-wizard/steps/store-details/index.js:180
  5169. msgid "There was a problem saving your store details"
  5170. msgstr ""
  5171. #: client/profile-wizard/steps/store-details/index.js:198
  5172. msgid ""
  5173. "Manual setup is only recommended for\n"
  5174. " experienced WooCommerce users or developers."
  5175. msgstr ""
  5176. #: client/profile-wizard/steps/store-details/index.js:203
  5177. msgid ""
  5178. "Your store address will help us configure currency\n"
  5179. " options and shipping rules automatically.\n"
  5180. " This information will not be publicly visible and can\n"
  5181. " easily be changed later."
  5182. msgstr ""
  5183. #: client/profile-wizard/steps/store-details/index.js:218
  5184. msgid "Welcome to WooCommerce"
  5185. msgstr ""
  5186. #: client/profile-wizard/steps/store-details/index.js:221
  5187. msgid "Tell us about your store and we'll get you set up in no time"
  5188. msgstr ""
  5189. #: client/profile-wizard/steps/store-details/index.js:228
  5190. msgid "Learn more about store details"
  5191. msgstr ""
  5192. #: client/profile-wizard/steps/store-details/index.js:297
  5193. msgid "I'm setting up a store for a client"
  5194. msgstr ""
  5195. #: client/profile-wizard/steps/store-details/index.js:334
  5196. msgid "Skip setup store details"
  5197. msgstr ""
  5198. #: client/profile-wizard/steps/theme/index.js:117
  5199. msgid "%s was installed on your site"
  5200. msgstr ""
  5201. #: client/profile-wizard/steps/theme/index.js:143
  5202. msgid "%s was activated on your site"
  5203. msgstr ""
  5204. #: client/profile-wizard/steps/theme/index.js:213
  5205. msgid "This theme does not support WooCommerce."
  5206. msgstr ""
  5207. #: client/profile-wizard/steps/theme/index.js:240
  5208. msgid "Continue with my active theme"
  5209. msgstr ""
  5210. #: client/profile-wizard/steps/theme/index.js:252
  5211. #: client/profile-wizard/steps/theme/preview.js:111
  5212. msgid "Choose"
  5213. msgstr ""
  5214. #: client/profile-wizard/steps/theme/index.js:260
  5215. msgid "Live demo"
  5216. msgstr ""
  5217. #: client/profile-wizard/steps/theme/index.js:273
  5218. msgid "Currently active theme"
  5219. msgstr ""
  5220. #: client/profile-wizard/steps/theme/index.js:276
  5221. msgid "Installed"
  5222. msgstr ""
  5223. #: client/profile-wizard/steps/theme/index.js:282
  5224. msgid "%s per year"
  5225. msgstr ""
  5226. #: client/profile-wizard/steps/theme/index.js:367
  5227. msgid "Choose a theme"
  5228. msgstr ""
  5229. #: client/profile-wizard/steps/theme/index.js:370
  5230. msgid ""
  5231. "Choose how your store appears to customers. And don't worry, you can always "
  5232. "switch themes and edit them later."
  5233. msgstr ""
  5234. #: client/profile-wizard/steps/theme/index.js:383
  5235. msgid "All themes"
  5236. msgstr ""
  5237. #: client/profile-wizard/steps/theme/index.js:387
  5238. msgid "Paid themes"
  5239. msgstr ""
  5240. #: client/profile-wizard/steps/theme/index.js:391
  5241. msgid "Free themes"
  5242. msgstr ""
  5243. #: client/profile-wizard/steps/theme/index.js:422
  5244. msgid "Skip this step"
  5245. msgstr ""
  5246. #: client/profile-wizard/steps/theme/index.js:76
  5247. msgid "There was a problem selecting your store theme"
  5248. msgstr ""
  5249. #: client/profile-wizard/steps/theme/preview.js:73
  5250. msgid "{{strong}}%s{{/strong}} developed by WooCommerce"
  5251. msgstr ""
  5252. #: client/profile-wizard/steps/theme/uploader.js:107
  5253. msgid "Uploading theme"
  5254. msgstr ""
  5255. #: client/profile-wizard/steps/theme/uploader.js:110
  5256. msgid "Your theme is being uploaded"
  5257. msgstr ""
  5258. #: client/profile-wizard/steps/theme/uploader.js:83
  5259. msgid "Upload a theme"
  5260. msgstr ""
  5261. #: client/profile-wizard/steps/theme/uploader.js:89
  5262. msgid "Drop a theme zip file here to upload"
  5263. msgstr ""
  5264. #: client/profile-wizard/steps/theme/uploader.js:96
  5265. msgid "Drop your theme zip file here"
  5266. msgstr ""
  5267. #: client/profile-wizard/steps/usage-modal.js:108
  5268. msgid "Build a better WooCommerce"
  5269. msgstr ""
  5270. #: client/profile-wizard/steps/usage-modal.js:110
  5271. msgid ""
  5272. "Get improved features and faster fixes by sharing non-sensitive data via "
  5273. "{{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No "
  5274. "personal data is tracked or stored."
  5275. msgstr ""
  5276. #: client/profile-wizard/steps/usage-modal.js:126
  5277. msgid "Yes, count me in!"
  5278. msgstr ""
  5279. #: client/profile-wizard/steps/usage-modal.js:54
  5280. msgid "There was a problem updating your preferences"
  5281. msgstr ""
  5282. #: client/store-management-links/index.js:180
  5283. msgid "Store management"
  5284. msgstr ""
  5285. #: client/store-management-links/index.js:31
  5286. msgid "Marketing & Merchandising"
  5287. msgstr ""
  5288. #: client/store-management-links/index.js:52
  5289. #: client/task-list/tasks.js:373
  5290. msgid "Personalize my store"
  5291. msgstr ""
  5292. #: client/store-management-links/index.js:61
  5293. msgid "View my store"
  5294. msgstr ""
  5295. #: client/store-management-links/index.js:75
  5296. #: client/task-list/tasks.js:175
  5297. msgid "Store details"
  5298. msgstr ""
  5299. #: client/store-management-links/index.js:84
  5300. msgid "Payments"
  5301. msgstr ""
  5302. #: client/store-management-links/index.js:93
  5303. msgid "Tax"
  5304. msgstr ""
  5305. #: client/task-list/index.js:272
  5306. msgid "Get ready to start selling"
  5307. msgstr ""
  5308. #: client/task-list/index.js:305
  5309. msgid "Show things to do next"
  5310. msgstr ""
  5311. #: client/task-list/task-list.js:155
  5312. msgid "Task dismissed"
  5313. msgstr ""
  5314. #: client/task-list/task-list.js:190
  5315. msgid "Task postponed until tomorrow"
  5316. msgstr ""
  5317. # %i = number of hidden tasks
  5318. #: client/task-list/task-list.js:304
  5319. msgid "Show %i more task."
  5320. msgid_plural "Show %i more tasks."
  5321. msgstr[0] ""
  5322. msgstr[1] ""
  5323. #: client/task-list/task-list.js:312
  5324. msgid "Show less"
  5325. msgstr ""
  5326. #: client/task-list/tasks.js:103
  5327. msgid "Add paid extensions to my store"
  5328. msgstr ""
  5329. #: client/task-list/tasks.js:111
  5330. msgid "Add %s to my store"
  5331. msgstr ""
  5332. #: client/task-list/tasks.js:128
  5333. msgid "Good choice! You chose to add %1$s and %2$s to your store."
  5334. msgstr ""
  5335. #: client/task-list/tasks.js:150
  5336. msgid "Set your store location and configure tax rate settings."
  5337. msgstr ""
  5338. #: client/task-list/tasks.js:156
  5339. #: client/task-list/tasks/tax.js:446
  5340. msgid "Yes please"
  5341. msgstr ""
  5342. #: client/task-list/tasks.js:157
  5343. msgid ""
  5344. "Good news! WooCommerce Services and Jetpack can automate your sales tax "
  5345. "calculations for you."
  5346. msgstr ""
  5347. #: client/task-list/tasks.js:176
  5348. msgid ""
  5349. "Your store address is required to set the origin country for shipping, "
  5350. "currencies, and payment options."
  5351. msgstr ""
  5352. #: client/task-list/tasks.js:188
  5353. msgid "4 minutes"
  5354. msgstr ""
  5355. #: client/task-list/tasks.js:196
  5356. msgid "Purchase & install now"
  5357. msgstr ""
  5358. #: client/task-list/tasks.js:209
  5359. msgid "Add my products"
  5360. msgstr ""
  5361. #: client/task-list/tasks.js:210
  5362. msgid ""
  5363. "Start by adding the first product to your store. You can add your products "
  5364. "manually, via CSV, or import them from another service."
  5365. msgstr ""
  5366. #: client/task-list/tasks.js:221
  5367. msgid "1 minute per product"
  5368. msgstr ""
  5369. #: client/task-list/tasks.js:226
  5370. msgid "Get paid with WooCommerce Payments"
  5371. msgstr ""
  5372. #: client/task-list/tasks.js:230
  5373. msgid ""
  5374. "You're only one step away from getting paid. Verify your business details "
  5375. "to start managing transactions with WooCommerce Payments."
  5376. msgstr ""
  5377. #: client/task-list/tasks.js:266
  5378. msgid ""
  5379. "By setting up, you are agreeing to the <a "
  5380. "href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a>"
  5381. msgstr ""
  5382. #: client/task-list/tasks.js:276
  5383. msgid "Choose payment providers and enable payment methods at checkout."
  5384. msgstr ""
  5385. #: client/task-list/tasks.js:296
  5386. msgid "Set up tax"
  5387. msgstr ""
  5388. #: client/task-list/tasks.js:318
  5389. msgid "Set up shipping"
  5390. msgstr ""
  5391. #: client/task-list/tasks.js:319
  5392. msgid "Set your store location and where you'll ship to."
  5393. msgstr ""
  5394. #: client/task-list/tasks.js:345
  5395. msgid "Set up marketing tools"
  5396. msgstr ""
  5397. #: client/task-list/tasks.js:346
  5398. msgid ""
  5399. "Add recommended marketing tools to reach new customers and grow your "
  5400. "business"
  5401. msgstr ""
  5402. #: client/task-list/tasks.js:368
  5403. msgid "1 minute"
  5404. msgstr ""
  5405. #: client/task-list/tasks.js:374
  5406. msgid "Add your logo, create a homepage, and start designing your store."
  5407. msgstr ""
  5408. #: client/task-list/tasks.js:386
  5409. msgid "2 minutes"
  5410. msgstr ""
  5411. # %s = name of the plugin
  5412. #: client/task-list/tasks/Marketing/Plugin.tsx:48
  5413. msgid "%s logo"
  5414. msgstr ""
  5415. #: client/task-list/tasks/Marketing/Plugin.tsx:73
  5416. #: client/task-list/tasks/PaymentGatewaySuggestions/components/Action.js:62
  5417. msgid "Manage"
  5418. msgstr ""
  5419. #: client/task-list/tasks/Marketing/index.tsx:205
  5420. msgid "Recommended marketing extensions"
  5421. msgstr ""
  5422. #: client/task-list/tasks/Marketing/index.tsx:211
  5423. msgid ""
  5424. "We recommend adding one of the following marketing tools for your store. "
  5425. "The extension will be installed and activated for you when you click \"Get "
  5426. "started\"."
  5427. msgstr ""
  5428. #: client/task-list/tasks/PaymentGatewaySuggestions/components/Action.js:23
  5429. #: client/task-list/tasks/PaymentGatewaySuggestions/components/Setup/Configure.js:162
  5430. msgid "Set up"
  5431. msgstr ""
  5432. #: client/task-list/tasks/PaymentGatewaySuggestions/components/Setup/Configure.js:103
  5433. #: client/task-list/tasks/appearance.js:343
  5434. #: client/task-list/tasks/shipping/index.js:213
  5435. #: packages/components/build-module/dynamic-form/dynamic-form.js:23
  5436. msgid "Proceed"
  5437. msgstr ""
  5438. #: client/task-list/tasks/PaymentGatewaySuggestions/components/Setup/Configure.js:155
  5439. msgid "You can manage this payment gateway's settings by clicking the button below"
  5440. msgstr ""
  5441. # %s = title of the payment gateway
  5442. #: client/task-list/tasks/PaymentGatewaySuggestions/components/Setup/Configure.js:75
  5443. msgid "%s configured successfully"
  5444. msgstr ""
  5445. #: client/task-list/tasks/PaymentGatewaySuggestions/components/Setup/Configure.js:87
  5446. #: client/task-list/tasks/PaymentGatewaySuggestions/plugins/Bacs.js:63
  5447. msgid "There was a problem saving your payment settings"
  5448. msgstr ""
  5449. #: client/task-list/tasks/PaymentGatewaySuggestions/components/Setup/Setup.js:123
  5450. msgid "Configure your %(title)s account"
  5451. msgstr ""
  5452. # %s = title of the payment gateway to install
  5453. #: client/task-list/tasks/PaymentGatewaySuggestions/components/Setup/Setup.js:91
  5454. msgid "Install %s"
  5455. msgstr ""
  5456. #: client/task-list/tasks/PaymentGatewaySuggestions/components/WCPay/Suggestion.js:25
  5457. msgid ""
  5458. "Upon clicking \"Get started\", you agree to the {{link}}Terms of "
  5459. "service{{/link}}. Next we’ll ask you to share a few details about your "
  5460. "business to create your account."
  5461. msgstr ""
  5462. #: client/task-list/tasks/PaymentGatewaySuggestions/components/WCPay/UsageModal.js:29
  5463. msgid "Help us build a better WooCommerce Payments experience"
  5464. msgstr ""
  5465. #: client/task-list/tasks/PaymentGatewaySuggestions/components/WCPay/UsageModal.js:34
  5466. msgid ""
  5467. "By agreeing to share non-sensitive {{link}}usage data{{/link}}, you’ll help "
  5468. "us improve features and optimize the WooCommerce Payments experience. You "
  5469. "can opt out at any time."
  5470. msgstr ""
  5471. #: client/task-list/tasks/PaymentGatewaySuggestions/components/WCPay/UsageModal.js:54
  5472. msgid "I agree"
  5473. msgstr ""
  5474. #: client/task-list/tasks/PaymentGatewaySuggestions/components/WCPay/utils.js:19
  5475. msgid ""
  5476. "There was an error connecting to WooCommerce Payments. Please try again or "
  5477. "connect later in store settings."
  5478. msgstr ""
  5479. #: client/task-list/tasks/PaymentGatewaySuggestions/index.js:215
  5480. msgid "Enabled payment gateways"
  5481. msgstr ""
  5482. #: client/task-list/tasks/PaymentGatewaySuggestions/index.js:226
  5483. msgid "Additional payment gateways"
  5484. msgstr ""
  5485. #: client/task-list/tasks/PaymentGatewaySuggestions/plugins/Bacs.js:109
  5486. msgid "Account number"
  5487. msgstr ""
  5488. #: client/task-list/tasks/PaymentGatewaySuggestions/plugins/Bacs.js:119
  5489. msgid "Bank name"
  5490. msgstr ""
  5491. #: client/task-list/tasks/PaymentGatewaySuggestions/plugins/Bacs.js:129
  5492. msgid "Sort code"
  5493. msgstr ""
  5494. #: client/task-list/tasks/PaymentGatewaySuggestions/plugins/Bacs.js:139
  5495. msgid "IBAN"
  5496. msgstr ""
  5497. #: client/task-list/tasks/PaymentGatewaySuggestions/plugins/Bacs.js:147
  5498. msgid "BIC / Swift"
  5499. msgstr ""
  5500. #: client/task-list/tasks/PaymentGatewaySuggestions/plugins/Bacs.js:32
  5501. msgid "Please enter an account number or IBAN"
  5502. msgstr ""
  5503. #: client/task-list/tasks/PaymentGatewaySuggestions/plugins/Bacs.js:53
  5504. msgid "Direct bank transfer details added successfully"
  5505. msgstr ""
  5506. #: client/task-list/tasks/PaymentGatewaySuggestions/plugins/Bacs.js:86
  5507. msgid "Add your bank details"
  5508. msgstr ""
  5509. #: client/task-list/tasks/PaymentGatewaySuggestions/plugins/Bacs.js:92
  5510. msgid "These details are required to receive payments via bank transfer"
  5511. msgstr ""
  5512. #: client/task-list/tasks/PaymentGatewaySuggestions/plugins/Bacs.js:99
  5513. msgid "Account name"
  5514. msgstr ""
  5515. #: client/task-list/tasks/appearance.js:118
  5516. msgid "There was an error importing some of the sample products"
  5517. msgstr ""
  5518. #: client/task-list/tasks/appearance.js:126
  5519. msgid "All sample products have been imported"
  5520. msgstr ""
  5521. #: client/task-list/tasks/appearance.js:161
  5522. msgid "Customize"
  5523. msgstr ""
  5524. #: client/task-list/tasks/appearance.js:213
  5525. msgid "Store logo updated sucessfully"
  5526. msgstr ""
  5527. #: client/task-list/tasks/appearance.js:246
  5528. msgid "🎨 Your store is looking great! Don't forget to continue personalizing it"
  5529. msgstr ""
  5530. #: client/task-list/tasks/appearance.js:269
  5531. msgid "Import sample products"
  5532. msgstr ""
  5533. #: client/task-list/tasks/appearance.js:270
  5534. msgid ""
  5535. "We’ll add some products that will make it easier to see what your store "
  5536. "looks like"
  5537. msgstr ""
  5538. #: client/task-list/tasks/appearance.js:281
  5539. msgid "Import products"
  5540. msgstr ""
  5541. #: client/task-list/tasks/appearance.js:292
  5542. msgid "Create a custom homepage"
  5543. msgstr ""
  5544. #: client/task-list/tasks/appearance.js:293
  5545. msgid "Create a new homepage and customize it to suit your needs"
  5546. msgstr ""
  5547. #: client/task-list/tasks/appearance.js:304
  5548. msgid "Create homepage"
  5549. msgstr ""
  5550. #: client/task-list/tasks/appearance.js:324
  5551. msgid "Upload a logo"
  5552. msgstr ""
  5553. #: client/task-list/tasks/appearance.js:325
  5554. msgid "Ensure your store is on-brand by adding your logo"
  5555. msgstr ""
  5556. #: client/task-list/tasks/appearance.js:349
  5557. msgid "Skip"
  5558. msgstr ""
  5559. #: client/task-list/tasks/appearance.js:357
  5560. msgid "Set a store notice"
  5561. msgstr ""
  5562. #: client/task-list/tasks/appearance.js:358
  5563. msgid "Optionally display a prominent notice across all pages of your store"
  5564. msgstr ""
  5565. #: client/task-list/tasks/appearance.js:369
  5566. msgid "Store notice text"
  5567. msgstr ""
  5568. #: client/task-list/tasks/appearance.js:379
  5569. #: client/task-list/tasks/shipping/index.js:214
  5570. msgid "Complete task"
  5571. msgstr ""
  5572. #: client/task-list/tasks/products/product-template-modal.js:128
  5573. msgid "Go"
  5574. msgstr ""
  5575. #: client/task-list/tasks/products/product-template-modal.js:25
  5576. msgid "Physical product"
  5577. msgstr ""
  5578. #: client/task-list/tasks/products/product-template-modal.js:26
  5579. msgid "Tangible items that get delivered to customers"
  5580. msgstr ""
  5581. #: client/task-list/tasks/products/product-template-modal.js:33
  5582. msgid "Digital product"
  5583. msgstr ""
  5584. #: client/task-list/tasks/products/product-template-modal.js:34
  5585. msgid "Items that customers download or access through your website"
  5586. msgstr ""
  5587. #: client/task-list/tasks/products/product-template-modal.js:41
  5588. msgid "Variable product"
  5589. msgstr ""
  5590. #: client/task-list/tasks/products/product-template-modal.js:42
  5591. msgid "Products with several versions that customers can choose from"
  5592. msgstr ""
  5593. #: client/task-list/tasks/products/product-template-modal.js:94
  5594. #: client/task-list/tasks/products/products.js:29
  5595. msgid "Start with a template"
  5596. msgstr ""
  5597. #: client/task-list/tasks/products/products.js:33
  5598. msgid "Use a template to add physical, digital, and variable products"
  5599. msgstr ""
  5600. #: client/task-list/tasks/products/products.js:46
  5601. msgid "Add manually"
  5602. msgstr ""
  5603. #: client/task-list/tasks/products/products.js:47
  5604. msgid "For small stores we recommend adding products manually"
  5605. msgstr ""
  5606. #: client/task-list/tasks/products/products.js:61
  5607. msgid "Import via CSV"
  5608. msgstr ""
  5609. #: client/task-list/tasks/products/products.js:62
  5610. msgid "For larger stores we recommend importing all products at once via CSV file"
  5611. msgstr ""
  5612. #: client/task-list/tasks/products/products.js:76
  5613. msgid "Import from another service"
  5614. msgstr ""
  5615. #: client/task-list/tasks/products/products.js:77
  5616. msgid ""
  5617. "For stores currently selling elsewhere we suggest using a product migration "
  5618. "service"
  5619. msgstr ""
  5620. #: client/task-list/tasks/shipping/index.js:149
  5621. msgid "📦 Shipping is done! Don't worry, you can always change it later"
  5622. msgstr ""
  5623. #: client/task-list/tasks/shipping/index.js:180
  5624. #: client/task-list/tasks/tax.js:223
  5625. msgid "Set store location"
  5626. msgstr ""
  5627. #: client/task-list/tasks/shipping/index.js:181
  5628. #: client/task-list/tasks/tax.js:224
  5629. msgid "The address from which your business operates"
  5630. msgstr ""
  5631. #: client/task-list/tasks/shipping/index.js:203
  5632. msgid "Set shipping costs"
  5633. msgstr ""
  5634. #: client/task-list/tasks/shipping/index.js:204
  5635. msgid "Define how much customers pay to ship to different destinations"
  5636. msgstr ""
  5637. #: client/task-list/tasks/shipping/index.js:228
  5638. msgid "Enable shipping label printing"
  5639. msgstr ""
  5640. #: client/task-list/tasks/shipping/index.js:236
  5641. msgid ""
  5642. "We recommend using ShipStation to save time at the post office by printing "
  5643. "your shipping labels at home. Try ShipStation free for 30 days. "
  5644. "{{link}}Learn more{{/link}}."
  5645. msgstr ""
  5646. #: client/task-list/tasks/shipping/index.js:251
  5647. msgid ""
  5648. "With WooCommerce Shipping you can save time by printing your USPS and DHL "
  5649. "Express shipping labels at home"
  5650. msgstr ""
  5651. #: client/task-list/tasks/shipping/index.js:284
  5652. #: client/task-list/tasks/tax.js:322
  5653. msgid "Connect your store"
  5654. msgstr ""
  5655. #: client/task-list/tasks/shipping/index.js:285
  5656. msgid "Connect your store to WordPress.com to enable label printing"
  5657. msgstr ""
  5658. #: client/task-list/tasks/shipping/index.js:68
  5659. msgid "Rest of the world"
  5660. msgstr ""
  5661. #: client/task-list/tasks/shipping/rates.js:125
  5662. msgid "Your shipping rates have been updated"
  5663. msgstr ""
  5664. #: client/task-list/tasks/shipping/rates.js:155
  5665. msgid "Free shipping"
  5666. msgstr ""
  5667. #: client/task-list/tasks/shipping/rates.js:203
  5668. msgid "Shipping rates can not be negative numbers."
  5669. msgstr ""
  5670. #: client/task-list/tasks/shipping/rates.js:285
  5671. msgid "Shipping cost"
  5672. msgstr ""
  5673. #: client/task-list/tasks/shipping/rates.js:322
  5674. #: packages/components/build-module/date-range-filter-picker/content.js:64
  5675. msgid "Update"
  5676. msgstr ""
  5677. #: client/task-list/tasks/steps/location.js:48
  5678. msgid "There was a problem saving your store location"
  5679. msgstr ""
  5680. #: client/task-list/tasks/tax.js:149
  5681. msgid "You're awesome! One less item on your to-do list ✅"
  5682. msgstr ""
  5683. #: client/task-list/tasks/tax.js:162
  5684. msgid "There was a problem updating your tax settings"
  5685. msgstr ""
  5686. #: client/task-list/tasks/tax.js:204
  5687. msgid "Install Jetpack and WooCommerce Tax"
  5688. msgstr ""
  5689. #: client/task-list/tasks/tax.js:208
  5690. msgid ""
  5691. "By installing Jetpack and WooCommerce Tax you agree to the {{link}}Terms of "
  5692. "Service{{/link}}."
  5693. msgstr ""
  5694. #: client/task-list/tasks/tax.js:213
  5695. msgid "Install Jetpack"
  5696. msgstr ""
  5697. #: client/task-list/tasks/tax.js:214
  5698. msgid "By installing Jetpack you agree to the {{link}}Terms of Service{{/link}}."
  5699. msgstr ""
  5700. #: client/task-list/tasks/tax.js:249
  5701. msgid "Jetpack and WooCommerce Tax allow you to automate sales tax calculations"
  5702. msgstr ""
  5703. #: client/task-list/tasks/tax.js:281
  5704. msgid "Set up manually"
  5705. msgstr ""
  5706. #: client/task-list/tasks/tax.js:323
  5707. msgid ""
  5708. "Connect your store to WordPress.com to enable automated sales tax "
  5709. "calculations"
  5710. msgstr ""
  5711. #: client/task-list/tasks/tax.js:343
  5712. msgid "Set up tax rates manually"
  5713. msgstr ""
  5714. #: client/task-list/tasks/tax.js:348
  5715. msgid "My business doesn't charge sales tax"
  5716. msgstr ""
  5717. #: client/task-list/tasks/tax.js:358
  5718. msgid "Configure tax rates"
  5719. msgstr ""
  5720. #: client/task-list/tasks/tax.js:359
  5721. msgid "Head over to the tax rate settings screen to configure your tax rates"
  5722. msgstr ""
  5723. #: client/task-list/tasks/tax.js:374
  5724. msgid "Configure"
  5725. msgstr ""
  5726. #: client/task-list/tasks/tax.js:380
  5727. msgid ""
  5728. "By clicking \"Configure\" you're enabling tax rates and calculations. More "
  5729. "info {{link}}here{{/link}}."
  5730. msgstr ""
  5731. #: client/task-list/tasks/tax.js:426
  5732. msgid "Good news!"
  5733. msgstr ""
  5734. #: client/task-list/tasks/tax.js:430
  5735. msgid ""
  5736. "{{strong}}Jetpack{{/strong}} and {{strong}}WooCommerce Tax{{/strong}} can "
  5737. "automate your sales tax calculations for you."
  5738. msgstr ""
  5739. #: client/task-list/tasks/tax.js:458
  5740. msgid "No thanks, I'll set up manually"
  5741. msgstr ""
  5742. #: client/task-list/tasks/tax.js:468
  5743. msgid "I don't charge sales tax"
  5744. msgstr ""
  5745. #: client/wp-admin-scripts/beta-features-tracking-modal/container.js:68
  5746. msgid "Build a Better WooCommerce"
  5747. msgstr ""
  5748. #: client/wp-admin-scripts/beta-features-tracking-modal/container.js:73
  5749. msgid "Testing new features requires sharing non-sensitive data via "
  5750. msgstr ""
  5751. #: client/wp-admin-scripts/beta-features-tracking-modal/container.js:78
  5752. msgid "usage tracking"
  5753. msgstr ""
  5754. #: client/wp-admin-scripts/beta-features-tracking-modal/container.js:80
  5755. msgid ""
  5756. ". Gathering usage data allows us to make WooCommerce better — your store "
  5757. "will be considered as we evaluate new features, judge the quality of an "
  5758. "update, or determine if an improvement makes sense. No personal data is "
  5759. "tracked or stored and you can opt-out at any time."
  5760. msgstr ""
  5761. #: client/wp-admin-scripts/navigation-opt-out/container.js:28
  5762. msgid "Help us improve"
  5763. msgstr ""
  5764. #: client/wp-admin-scripts/navigation-opt-out/container.js:33
  5765. msgid ""
  5766. "Take this 2-minute survey to share why you're opting out of the new "
  5767. "navigation"
  5768. msgstr ""
  5769. #: client/wp-admin-scripts/onboarding-homepage-notice/index.js:73
  5770. msgid "🏠 Nice work creating your store's homepage!"
  5771. msgstr ""
  5772. #: client/wp-admin-scripts/onboarding-homepage-notice/index.js:82
  5773. #: client/wp-admin-scripts/onboarding-product-notice/index.js:20
  5774. #: client/wp-admin-scripts/onboarding-tax-notice/index.js:50
  5775. msgid "Continue setup."
  5776. msgstr ""
  5777. #: client/wp-admin-scripts/onboarding-product-import-notice/index.js:26
  5778. msgid "Continue setup"
  5779. msgstr ""
  5780. #: client/wp-admin-scripts/onboarding-product-notice/index.js:14
  5781. msgid "🎉 Congrats on adding your first product!"
  5782. msgstr ""
  5783. #: client/wp-admin-scripts/onboarding-tax-notice/index.js:44
  5784. msgid "You've added your first tax rate!"
  5785. msgstr ""
  5786. #: client/wp-admin-scripts/print-shipping-label-banner/dismiss-modal/index.js:54
  5787. #: packages/experimental/build-module/inbox-note/inbox-dismiss-confirmation-modal.js:9
  5788. msgid "Are you sure?"
  5789. msgstr ""
  5790. #: client/wp-admin-scripts/print-shipping-label-banner/dismiss-modal/index.js:59
  5791. msgid ""
  5792. "With WooCommerce Shipping you can Print shipping labels from your "
  5793. "WooCommerce dashboard at the lowest USPS rates."
  5794. msgstr ""
  5795. #: client/wp-admin-scripts/print-shipping-label-banner/dismiss-modal/index.js:66
  5796. #: packages/experimental/build-module/experimental-list/task-item.js:81
  5797. msgid "Remind me later"
  5798. msgstr ""
  5799. #: client/wp-admin-scripts/print-shipping-label-banner/dismiss-modal/index.js:69
  5800. msgid "I don't need this"
  5801. msgstr ""
  5802. #: client/wp-admin-scripts/print-shipping-label-banner/setup-notice/index.js:17
  5803. msgid "install"
  5804. msgstr ""
  5805. #: client/wp-admin-scripts/print-shipping-label-banner/setup-notice/index.js:18
  5806. msgid "activate"
  5807. msgstr ""
  5808. #: client/wp-admin-scripts/print-shipping-label-banner/setup-notice/index.js:19
  5809. msgid "set up"
  5810. msgstr ""
  5811. #: client/wp-admin-scripts/print-shipping-label-banner/setup-notice/index.js:20
  5812. msgid "start"
  5813. msgstr ""
  5814. #: client/wp-admin-scripts/print-shipping-label-banner/setup-notice/index.js:32
  5815. msgid "Unable to %s the plugin. Refresh the page and try again."
  5816. msgstr ""
  5817. #: client/wp-admin-scripts/print-shipping-label-banner/shipping-banner/index.js:148
  5818. msgid "Toggle panel:"
  5819. msgstr ""
  5820. #: client/wp-admin-scripts/print-shipping-label-banner/shipping-banner/index.js:207
  5821. msgid "Shipment Tracking"
  5822. msgstr ""
  5823. #: client/wp-admin-scripts/print-shipping-label-banner/shipping-banner/index.js:265
  5824. msgid ""
  5825. "You've already installed WooCommerce Shipping. By clicking \"Create "
  5826. "shipping label\", you agree to its {{tosLink}}Terms of Service{{/tosLink}}."
  5827. msgstr ""
  5828. #: client/wp-admin-scripts/print-shipping-label-banner/shipping-banner/index.js:270
  5829. msgid ""
  5830. "By clicking \"Create shipping label\", {{wcsLink}}WooCommerce "
  5831. "Shipping{{/wcsLink}} will be installed and you agree to its "
  5832. "{{tosLink}}Terms of Service{{/tosLink}}."
  5833. msgstr ""
  5834. #: client/wp-admin-scripts/print-shipping-label-banner/shipping-banner/index.js:361
  5835. msgid "Plugin installed and activated"
  5836. msgstr ""
  5837. #: client/wp-admin-scripts/print-shipping-label-banner/shipping-banner/index.js:403
  5838. msgid "Shipping "
  5839. msgstr ""
  5840. #: client/wp-admin-scripts/print-shipping-label-banner/shipping-banner/index.js:407
  5841. msgid "Print discounted shipping labels with a click."
  5842. msgstr ""
  5843. #: client/wp-admin-scripts/print-shipping-label-banner/shipping-banner/index.js:448
  5844. msgid "Create shipping label"
  5845. msgstr ""
  5846. #: client/wp-admin-scripts/print-shipping-label-banner/shipping-banner/index.js:458
  5847. msgid "Close Print Label Banner."
  5848. msgstr ""
  5849. #: packages/components/build-module/advanced-filters/attribute-filter.js:117
  5850. msgid "Attribute name"
  5851. msgstr ""
  5852. #: packages/components/build-module/advanced-filters/attribute-filter.js:121
  5853. msgid "Attribute value"
  5854. msgstr ""
  5855. # Sentence fragment describing a product attribute match. Example: "Color Is Not Blue" - attribute = Color, equals = Is Not, value = Blue
  5856. #: packages/components/build-module/advanced-filters/attribute-filter.js:38
  5857. msgid "{{attribute /}} {{equals /}} {{value /}}"
  5858. msgstr ""
  5859. #: packages/components/build-module/advanced-filters/date-filter.js:17
  5860. #: packages/date/build-module/index.js:100
  5861. msgid "MMM D, YYYY"
  5862. msgstr ""
  5863. #: packages/components/build-module/advanced-filters/index.js:106
  5864. msgid "Choose to apply any or all filters"
  5865. msgstr ""
  5866. #: packages/components/build-module/advanced-filters/index.js:20
  5867. msgid "Any"
  5868. msgstr ""
  5869. #: packages/components/build-module/advanced-filters/index.js:204
  5870. msgid "Add a Filter"
  5871. msgstr ""
  5872. #: packages/components/build-module/advanced-filters/index.js:210
  5873. msgid "Filter"
  5874. msgstr ""
  5875. #: packages/components/build-module/advanced-filters/index.js:211
  5876. msgid "Clear all filters"
  5877. msgstr ""
  5878. # Sentence fragment, "range start" refers to the first of two numeric values the field must be between. Screenshot for context: https://cloudup.com/cmv5CLyMPNQ
  5879. #: packages/components/build-module/advanced-filters/number-filter.js:125
  5880. msgid "%(field)s range start"
  5881. msgstr ""
  5882. # Sentence fragment, "range end" refers to the second of two numeric values the field must be between. Screenshot for context: https://cloudup.com/cmv5CLyMPNQ
  5883. #: packages/components/build-module/advanced-filters/number-filter.js:136
  5884. msgid "%(field)s range end"
  5885. msgstr ""
  5886. #: packages/components/build-module/calendar/date-picker.js:58
  5887. msgid "Choose a date"
  5888. msgstr ""
  5889. #: packages/components/build-module/calendar/date-picker.js:58
  5890. msgid "Date input describing a selected date in format %s"
  5891. msgstr ""
  5892. #: packages/components/build-module/calendar/date-picker.js:59
  5893. msgid "select a date"
  5894. msgstr ""
  5895. #: packages/components/build-module/calendar/date-range.js:136
  5896. msgid "Start Date"
  5897. msgstr ""
  5898. #: packages/components/build-module/calendar/date-range.js:136
  5899. msgid "Date input describing a selected date range's start date in format %s"
  5900. msgstr ""
  5901. #: packages/components/build-module/calendar/date-range.js:137
  5902. msgid "to"
  5903. msgstr ""
  5904. #: packages/components/build-module/calendar/date-range.js:138
  5905. msgid "End Date"
  5906. msgstr ""
  5907. #: packages/components/build-module/calendar/date-range.js:138
  5908. msgid "Date input describing a selected date range's end date in format %s"
  5909. msgstr ""
  5910. #: packages/components/build-module/calendar/phrases.js:10
  5911. msgid "Clear Dates"
  5912. msgstr ""
  5913. #: packages/components/build-module/calendar/phrases.js:11
  5914. msgid "Move backward to switch to the previous month."
  5915. msgstr ""
  5916. #: packages/components/build-module/calendar/phrases.js:12
  5917. msgid "Move forward to switch to the next month."
  5918. msgstr ""
  5919. #: packages/components/build-module/calendar/phrases.js:13
  5920. msgid "Enter key"
  5921. msgstr ""
  5922. #: packages/components/build-module/calendar/phrases.js:14
  5923. msgid "Right and left arrow keys"
  5924. msgstr ""
  5925. #: packages/components/build-module/calendar/phrases.js:15
  5926. msgid "up and down arrow keys"
  5927. msgstr ""
  5928. #: packages/components/build-module/calendar/phrases.js:16
  5929. msgid "page up and page down keys"
  5930. msgstr ""
  5931. #: packages/components/build-module/calendar/phrases.js:17
  5932. msgid "Home and end keys"
  5933. msgstr ""
  5934. #: packages/components/build-module/calendar/phrases.js:18
  5935. msgid "Escape key"
  5936. msgstr ""
  5937. #: packages/components/build-module/calendar/phrases.js:19
  5938. msgid "Question mark"
  5939. msgstr ""
  5940. #: packages/components/build-module/calendar/phrases.js:20
  5941. msgid "Select the date in focus."
  5942. msgstr ""
  5943. #: packages/components/build-module/calendar/phrases.js:21
  5944. msgid "Move backward (left) and forward (right) by one day."
  5945. msgstr ""
  5946. #: packages/components/build-module/calendar/phrases.js:22
  5947. msgid "Move backward (up) and forward (down) by one week."
  5948. msgstr ""
  5949. #: packages/components/build-module/calendar/phrases.js:23
  5950. msgid "Switch months."
  5951. msgstr ""
  5952. #: packages/components/build-module/calendar/phrases.js:24
  5953. msgid "Go to the first or last day of a week."
  5954. msgstr ""
  5955. #: packages/components/build-module/calendar/phrases.js:25
  5956. msgid "Return to the date input field."
  5957. msgstr ""
  5958. #: packages/components/build-module/calendar/phrases.js:26
  5959. msgid "Press the down arrow key to interact with the calendar and select a date."
  5960. msgstr ""
  5961. #: packages/components/build-module/calendar/phrases.js:27
  5962. msgid "Select %s as a start date."
  5963. msgstr ""
  5964. #: packages/components/build-module/calendar/phrases.js:28
  5965. msgid "Select %s as an end date."
  5966. msgstr ""
  5967. #: packages/components/build-module/calendar/phrases.js:30
  5968. msgid "%s is not selectable."
  5969. msgstr ""
  5970. #: packages/components/build-module/calendar/phrases.js:31
  5971. msgid "Selected. %s"
  5972. msgstr ""
  5973. #: packages/components/build-module/calendar/phrases.js:6
  5974. msgid "Calendar"
  5975. msgstr ""
  5976. #: packages/components/build-module/calendar/phrases.js:8
  5977. msgid "Interact with the calendar and select start and end dates."
  5978. msgstr ""
  5979. #: packages/components/build-module/calendar/phrases.js:9
  5980. msgid "Clear Date"
  5981. msgstr ""
  5982. #: packages/components/build-module/chart/d3chart/legend.js:65
  5983. msgid "You may select up to %d items."
  5984. msgstr ""
  5985. #: packages/components/build-module/chart/index.js:293
  5986. #: packages/components/build-module/table/index.js:139
  5987. msgid "Your requested data is loading"
  5988. msgstr ""
  5989. #: packages/components/build-module/compare-filter/index.js:82
  5990. #: packages/components/build-module/search-list-control/index.js:146
  5991. #: packages/components/build-module/select-control/tags.js:52
  5992. msgid "Clear all"
  5993. msgstr ""
  5994. #: packages/components/build-module/date-range-filter-picker/compare-periods.js:15
  5995. #: packages/components/build-module/date-range-filter-picker/content.js:60
  5996. msgid "compare to"
  5997. msgstr ""
  5998. #: packages/components/build-module/date-range-filter-picker/content.js:40
  5999. msgid "Select date range and comparison"
  6000. msgstr ""
  6001. #: packages/components/build-module/date-range-filter-picker/content.js:42
  6002. msgid "select a date range"
  6003. msgstr ""
  6004. #: packages/components/build-module/date-range-filter-picker/content.js:46
  6005. msgid "Presets"
  6006. msgstr ""
  6007. #: packages/components/build-module/date-range-filter-picker/content.js:51
  6008. #: packages/date/build-module/index.js:39
  6009. msgid "Custom"
  6010. msgstr ""
  6011. #: packages/components/build-module/date-range-filter-picker/content.js:63
  6012. msgid "Reset"
  6013. msgstr ""
  6014. #: packages/components/build-module/date-range-filter-picker/index.js:106
  6015. msgid "Date Range"
  6016. msgstr ""
  6017. #: packages/components/build-module/date-range-filter-picker/index.js:77
  6018. msgid "vs."
  6019. msgstr ""
  6020. #: packages/components/build-module/date-range-filter-picker/preset-periods.js:16
  6021. msgid "select a preset period"
  6022. msgstr ""
  6023. #: packages/components/build-module/filter-picker/index.js:220
  6024. msgid "filter report to show:"
  6025. msgstr ""
  6026. #: packages/components/build-module/filters/index.js:71
  6027. msgid "Filters"
  6028. msgstr ""
  6029. #: packages/components/build-module/image-upload/index.js:25
  6030. msgid "Select or upload image"
  6031. msgstr ""
  6032. #: packages/components/build-module/image-upload/index.js:27
  6033. msgid "Select"
  6034. msgstr ""
  6035. #: packages/components/build-module/image-upload/index.js:57
  6036. msgid "Remove image"
  6037. msgstr ""
  6038. #: packages/components/build-module/image-upload/index.js:61
  6039. msgid "Add an image"
  6040. msgstr ""
  6041. #: packages/components/build-module/pagination/index.js:101
  6042. msgid "Go to page"
  6043. msgstr ""
  6044. #: packages/components/build-module/pagination/index.js:110
  6045. msgid "Rows per page"
  6046. msgstr ""
  6047. #: packages/components/build-module/pagination/index.js:84
  6048. msgid "Page %d of %d"
  6049. msgstr ""
  6050. #: packages/components/build-module/pagination/index.js:86
  6051. msgid "Previous Page"
  6052. msgstr ""
  6053. #: packages/components/build-module/pagination/index.js:88
  6054. msgid "Next Page"
  6055. msgstr ""
  6056. #: packages/components/build-module/plugins/index.js:73
  6057. msgid "Install & enable"
  6058. msgstr ""
  6059. #: packages/components/build-module/rating/index.js:34
  6060. msgid "%1$s out of %2$s stars."
  6061. msgstr ""
  6062. #: packages/components/build-module/search-list-control/index.js:19
  6063. msgid "Clear all selected items"
  6064. msgstr ""
  6065. #: packages/components/build-module/search-list-control/index.js:20
  6066. msgid "No items found."
  6067. msgstr ""
  6068. #: packages/components/build-module/search-list-control/index.js:21
  6069. msgid "No results for %s"
  6070. msgstr ""
  6071. #: packages/components/build-module/search-list-control/index.js:22
  6072. msgid "Search for items"
  6073. msgstr ""
  6074. # Number of items selected from list.
  6075. #: packages/components/build-module/search-list-control/index.js:25
  6076. msgid "%d item selected"
  6077. msgid_plural "%d items selected"
  6078. msgstr[0] ""
  6079. msgstr[1] ""
  6080. #: packages/components/build-module/search-list-control/index.js:26
  6081. msgid "Search results updated."
  6082. msgstr ""
  6083. #: packages/components/build-module/search/autocompleters/attributes.js:109
  6084. msgid "All attributes with names that include {{query /}}"
  6085. msgstr ""
  6086. #: packages/components/build-module/search/autocompleters/categories.js:109
  6087. msgid "All categories with titles that include {{query /}}"
  6088. msgstr ""
  6089. #: packages/components/build-module/search/autocompleters/coupons.js:108
  6090. msgid "All coupons with codes that include {{query /}}"
  6091. msgstr ""
  6092. #: packages/components/build-module/search/autocompleters/customers.js:109
  6093. msgid "All customers with names that include {{query /}}"
  6094. msgstr ""
  6095. #: packages/components/build-module/search/autocompleters/product.js:110
  6096. msgid "All products with titles that include {{query /}}"
  6097. msgstr ""
  6098. #: packages/components/build-module/search/autocompleters/taxes.js:108
  6099. msgid "All taxes with codes that include {{query /}}"
  6100. msgstr ""
  6101. #: packages/components/build-module/select-control/control.js:127
  6102. msgid "Move backward for selected items"
  6103. msgstr ""
  6104. #: packages/components/build-module/select-control/index.js:132
  6105. msgid "%d result found, use up and down arrow keys to navigate."
  6106. msgid_plural "%d results found, use up and down arrow keys to navigate."
  6107. msgstr[0] ""
  6108. msgstr[1] ""
  6109. #: packages/components/build-module/select-control/index.js:135
  6110. msgid "No results."
  6111. msgstr ""
  6112. #: packages/components/build-module/select-control/tags.js:47
  6113. msgid "%1$s (%2$s of %3$s)"
  6114. msgstr ""
  6115. #: packages/components/build-module/summary/index.js:50
  6116. msgid "Performance Indicators"
  6117. msgstr ""
  6118. #: packages/components/build-module/summary/menu.js:21
  6119. msgid ""
  6120. "List of data points available for filtering. Use arrow keys to cycle "
  6121. "through the list. Click a data point for a detailed report."
  6122. msgstr ""
  6123. #: packages/components/build-module/summary/number.js:46
  6124. msgid "Up %f%% from %s"
  6125. msgstr ""
  6126. #: packages/components/build-module/summary/number.js:47
  6127. msgid "Down %f%% from %s"
  6128. msgstr ""
  6129. #: packages/components/build-module/summary/number.js:49
  6130. msgid "No change from %s"
  6131. msgstr ""
  6132. #: packages/components/build-module/summary/number.js:87
  6133. msgid "%f%%"
  6134. msgstr ""
  6135. #: packages/components/build-module/table/index.js:131
  6136. msgid "Columns:"
  6137. msgstr ""
  6138. #: packages/components/build-module/table/table.js:133
  6139. msgid "(scroll to see more)"
  6140. msgstr ""
  6141. #: packages/components/build-module/table/table.js:157
  6142. msgid "Sort by %s in ascending order"
  6143. msgstr ""
  6144. #: packages/components/build-module/table/table.js:158
  6145. msgid "Sort by %s in descending order"
  6146. msgstr ""
  6147. #: packages/components/build-module/table/table.js:184
  6148. #: packages/components/build-module/timeline/index.js:20
  6149. msgid "No data to display"
  6150. msgstr ""
  6151. #: packages/components/build-module/tag/index.js:46
  6152. msgid "Remove %s"
  6153. msgstr ""
  6154. # PHP date format string used to display dates, see php.net/date.
  6155. #: packages/components/build-module/timeline/index.js:91
  6156. msgid "F j, Y"
  6157. msgstr ""
  6158. # PHP clock format string used to display times, see php.net/date.
  6159. #: packages/components/build-module/timeline/index.js:93
  6160. msgid "g:ia"
  6161. msgstr ""
  6162. #: client/analytics/report/products/table.js:216
  6163. msgctxt "categories"
  6164. msgid "+%d more"
  6165. msgstr ""
  6166. #: packages/customer-effort-score/build-module/customer-feedback-modal/index.js:27
  6167. msgid "Very difficult"
  6168. msgstr ""
  6169. #: packages/customer-effort-score/build-module/customer-feedback-modal/index.js:31
  6170. msgid "Somewhat difficult"
  6171. msgstr ""
  6172. #: packages/customer-effort-score/build-module/customer-feedback-modal/index.js:35
  6173. msgid "Neutral"
  6174. msgstr ""
  6175. #: packages/customer-effort-score/build-module/customer-feedback-modal/index.js:39
  6176. msgid "Somewhat easy"
  6177. msgstr ""
  6178. #: packages/customer-effort-score/build-module/customer-feedback-modal/index.js:43
  6179. msgid "Very easy"
  6180. msgstr ""
  6181. #: packages/customer-effort-score/build-module/customer-feedback-modal/index.js:68
  6182. msgid "Please share your feedback"
  6183. msgstr ""
  6184. #: packages/customer-effort-score/build-module/customer-feedback-modal/index.js:73
  6185. msgid "Comments (Optional)"
  6186. msgstr ""
  6187. #: packages/customer-effort-score/build-module/customer-feedback-modal/index.js:73
  6188. msgid "Your feedback will go to the WooCommerce development team"
  6189. msgstr ""
  6190. #: packages/customer-effort-score/build-module/customer-feedback-modal/index.js:75
  6191. msgid "Please provide feedback by selecting an option above."
  6192. msgstr ""
  6193. #: packages/customer-effort-score/build-module/customer-feedback-modal/index.js:78
  6194. msgid "Send"
  6195. msgstr ""
  6196. #: packages/customer-effort-score/build-module/index.js:39
  6197. msgid "Give feedback"
  6198. msgstr ""
  6199. # %(actionType): install or activate (the plugin). %(pluginName): a plugin slug (e.g. woocommerce-services). %(error): a single error message or in plural a comma separated error message list.
  6200. #: packages/data/build-module/plugins/actions.js:41
  6201. #: packages/data/src/plugins/actions.ts:87
  6202. msgid "Could not %(actionType)s %(pluginName)s plugin, %(error)s"
  6203. msgid_plural ""
  6204. "Could not %(actionType)s the following plugins: %(pluginName)s with these "
  6205. "Errors: %(error)s"
  6206. msgstr[0] ""
  6207. msgstr[1] ""
  6208. #: packages/data/build-module/plugins/constants.js:11
  6209. #: packages/data/src/plugins/constants.ts:13
  6210. msgid "Facebook for WooCommerce"
  6211. msgstr ""
  6212. #: packages/data/build-module/plugins/constants.js:13
  6213. #: packages/data/src/plugins/constants.ts:18
  6214. msgid "Klarna Checkout for WooCommerce"
  6215. msgstr ""
  6216. #: packages/data/build-module/plugins/constants.js:14
  6217. #: packages/data/src/plugins/constants.ts:22
  6218. msgid "Klarna Payments for WooCommerce"
  6219. msgstr ""
  6220. #: packages/data/build-module/plugins/constants.js:15
  6221. #: packages/data/src/plugins/constants.ts:26
  6222. msgid "Mailchimp for WooCommerce"
  6223. msgstr ""
  6224. #: packages/data/build-module/plugins/constants.js:17
  6225. #: packages/data/src/plugins/constants.ts:34
  6226. msgid "WooCommerce PayPal"
  6227. msgstr ""
  6228. #: packages/data/build-module/plugins/constants.js:18
  6229. #: packages/data/src/plugins/constants.ts:38
  6230. msgid "WooCommerce Stripe"
  6231. msgstr ""
  6232. #: packages/data/build-module/plugins/constants.js:19
  6233. #: packages/data/src/plugins/constants.ts:42
  6234. msgid "WooCommerce PayFast"
  6235. msgstr ""
  6236. #: packages/data/build-module/plugins/constants.js:23
  6237. #: packages/data/src/plugins/constants.ts:55
  6238. msgid "WooCommerce Shipping & Tax"
  6239. msgstr ""
  6240. #: packages/data/build-module/plugins/constants.js:24
  6241. #: packages/data/src/plugins/constants.ts:59
  6242. msgid "WooCommerce ShipStation Gateway"
  6243. msgstr ""
  6244. #: packages/data/build-module/plugins/constants.js:25
  6245. #: packages/data/src/plugins/constants.ts:63
  6246. msgid "Mercado Pago payments for WooCommerce"
  6247. msgstr ""
  6248. #: packages/data/build-module/plugins/constants.js:26
  6249. #: packages/data/src/plugins/constants.ts:67
  6250. msgid "Google Listings and Ads"
  6251. msgstr ""
  6252. #: packages/data/build-module/settings/actions.js:79
  6253. msgid "There was a problem updating your settings."
  6254. msgstr ""
  6255. #: packages/date/build-module/index.js:111
  6256. msgid "MMM D"
  6257. msgstr ""
  6258. #: packages/date/build-module/index.js:30
  6259. msgid "Yesterday"
  6260. msgstr ""
  6261. #: packages/date/build-module/index.js:31
  6262. msgid "Week to Date"
  6263. msgstr ""
  6264. #: packages/date/build-module/index.js:32
  6265. msgid "Last Week"
  6266. msgstr ""
  6267. #: packages/date/build-module/index.js:33
  6268. msgid "Month to Date"
  6269. msgstr ""
  6270. #: packages/date/build-module/index.js:34
  6271. msgid "Last Month"
  6272. msgstr ""
  6273. #: packages/date/build-module/index.js:35
  6274. msgid "Quarter to Date"
  6275. msgstr ""
  6276. #: packages/date/build-module/index.js:36
  6277. msgid "Last Quarter"
  6278. msgstr ""
  6279. #: packages/date/build-module/index.js:37
  6280. msgid "Year to Date"
  6281. msgstr ""
  6282. #: packages/date/build-module/index.js:38
  6283. msgid "Last Year"
  6284. msgstr ""
  6285. #: packages/date/build-module/index.js:44
  6286. msgid "Previous Period"
  6287. msgstr ""
  6288. #: packages/date/build-module/index.js:48
  6289. msgid "Previous Year"
  6290. msgstr ""
  6291. #: packages/date/build-module/index.js:521
  6292. msgid "Week of %B %-d, %Y"
  6293. msgstr ""
  6294. #: packages/date/build-module/index.js:559
  6295. msgid "MMMM D, YYYY"
  6296. msgstr ""
  6297. #: packages/date/build-module/index.js:560
  6298. msgid "D MMMM YYYY LT"
  6299. msgstr ""
  6300. #: packages/date/build-module/index.js:561
  6301. msgid "dddd, D MMMM YYYY LT"
  6302. msgstr ""
  6303. #: packages/date/build-module/index.js:562
  6304. msgid "HH:mm"
  6305. msgstr ""
  6306. #: packages/date/build-module/index.js:569
  6307. msgid "Invalid date"
  6308. msgstr ""
  6309. #: packages/date/build-module/index.js:570
  6310. msgid "Select a date in the past"
  6311. msgstr ""
  6312. #: packages/date/build-module/index.js:572
  6313. msgid "Start date must be before end date"
  6314. msgstr ""
  6315. #: packages/experimental/build-module/experimental-list/task-item.js:27
  6316. msgid "This task is required to keep your store running"
  6317. msgstr ""
  6318. #: packages/experimental/build-module/experimental-list/task-item.js:30
  6319. msgid "This task is required to set up your extension"
  6320. msgstr ""
  6321. #: packages/experimental/build-module/experimental-list/task-item.js:73
  6322. msgid "Task Options"
  6323. msgstr ""
  6324. #: packages/experimental/build-module/inbox-note/inbox-dismiss-confirmation-modal.js:11
  6325. msgid "Dismissed messages cannot be viewed again"
  6326. msgstr ""
  6327. #: packages/experimental/build-module/inbox-note/inbox-dismiss-confirmation-modal.js:7
  6328. msgid "Yes, I'm sure"
  6329. msgstr ""
  6330. #: packages/experimental/build-module/inbox-note/inbox-note.js:85
  6331. msgid "Dismiss this message"
  6332. msgstr ""
  6333. #: packages/experimental/build-module/inbox-note/inbox-note.js:87
  6334. msgid "Dismiss all messages"
  6335. msgstr ""
  6336. #: packages/onboarding/build-module/components/RecommendedRibbon/RecommendedRibbon.js:8
  6337. msgid "Local Partner"
  6338. msgstr ""
  6339. #: packages/onboarding/build-module/components/SetupRequired.js:11
  6340. msgid "Setup required"
  6341. msgstr ""
  6342. #: packages/onboarding/build-module/components/WCPayAcceptedMethods.js:21
  6343. msgid "Accepted payment methods"
  6344. msgstr ""
  6345. #: packages/wc-admin-settings/build-module/index.js:39
  6346. msgid "Mutable settings should be accessed via data store."
  6347. msgstr ""
  6348. #: packages/wc-admin-settings/build-module/index.js:61
  6349. msgid "Mutable settings should be mutated via data store."
  6350. msgstr ""
  6351. #: client/analytics/report/categories/config.js:51
  6352. msgctxt ""
  6353. "A sentence describing filters for Categories. See screen shot for context: "
  6354. "https://cloudup.com/cSsUY9VeCVJ"
  6355. msgid "Categories Match {{select /}} Filters"
  6356. msgstr ""
  6357. #: client/analytics/report/coupons/config.js:42
  6358. msgctxt ""
  6359. "A sentence describing filters for Coupons. See screen shot for context: "
  6360. "https://cloudup.com/cSsUY9VeCVJ"
  6361. msgid "Coupons Match {{select /}} Filters"
  6362. msgstr ""
  6363. #: client/analytics/report/customers/config.js:73
  6364. msgctxt ""
  6365. "A sentence describing filters for Customers. See screen shot for context: "
  6366. "https://cloudup.com/cCsm3GeXJbE"
  6367. msgid "Customers Match {{select /}} Filters"
  6368. msgstr ""
  6369. # Sentence fragment, logical, "Includes" refers to variations including a given category. Screenshot for context: https://cloudup.com/cSsUY9VeCVJ
  6370. #: client/analytics/report/variations/config.js:196
  6371. msgctxt "categories"
  6372. msgid "Includes"
  6373. msgstr ""
  6374. # Sentence fragment, logical, "Excludes" refers to variations excluding a given category. Screenshot for context: https://cloudup.com/cSsUY9VeCVJ
  6375. #: client/analytics/report/variations/config.js:205
  6376. msgctxt "categories"
  6377. msgid "Excludes"
  6378. msgstr ""
  6379. # Sentence fragment, logical, "Less Than" refers to average order value of a customer, more than a given amount. Screenshot for context: https://cloudup.com/cCsm3GeXJbE
  6380. #: client/analytics/report/customers/config.js:408
  6381. msgctxt "average order value of customer"
  6382. msgid "Less Than"
  6383. msgstr ""
  6384. #: client/analytics/report/customers/config.js:418
  6385. msgctxt "average order value of customer"
  6386. msgid "More Than"
  6387. msgstr ""
  6388. # Sentence fragment, logical, "Between" refers to average order value of a customer, between two given amounts. Screenshot for context: https://cloudup.com/cCsm3GeXJbE
  6389. #: client/analytics/report/customers/config.js:509
  6390. msgctxt "date"
  6391. msgid "Between"
  6392. msgstr ""
  6393. # Sentence fragment, logical, "Before" refers to customers registered before a given date. Screenshot for context: https://cloudup.com/cCsm3GeXJbE
  6394. #: client/analytics/report/customers/config.js:499
  6395. msgctxt "date"
  6396. msgid "Before"
  6397. msgstr ""
  6398. # Sentence fragment, logical, "after" refers to customers registered after a given date. Screenshot for context: https://cloudup.com/cCsm3GeXJbE
  6399. #: client/analytics/report/customers/config.js:504
  6400. msgctxt "date"
  6401. msgid "After"
  6402. msgstr ""
  6403. #: client/analytics/report/downloads/config.js:50
  6404. msgctxt ""
  6405. "A sentence describing filters for Downloads. See screen shot for context: "
  6406. "https://cloudup.com/ccxhyH2mEDg"
  6407. msgid "Downloads Match {{select /}} Filters"
  6408. msgstr ""
  6409. #: client/analytics/report/orders/config.js:70
  6410. msgctxt ""
  6411. "A sentence describing filters for Orders. See screen shot for context: "
  6412. "https://cloudup.com/cSsUY9VeCVJ"
  6413. msgid "Orders Match {{select /}} Filters"
  6414. msgstr ""
  6415. # Sentence fragment, logical, "Is Not" refers to searching for product variations that don\'t match a chosen attribute. Screenshot for context: https://cloudup.com/cSsUY9VeCVJ
  6416. #: client/analytics/report/orders/config.js:392
  6417. #: client/analytics/report/variations/config.js:162
  6418. msgctxt "product attribute"
  6419. msgid "Is Not"
  6420. msgstr ""
  6421. # Sentence fragment, logical, "Is" refers to searching for product variations matching a chosen attribute. Screenshot for context: https://cloudup.com/cSsUY9VeCVJ
  6422. #: client/analytics/report/orders/config.js:383
  6423. #: client/analytics/report/variations/config.js:153
  6424. msgctxt "product attribute"
  6425. msgid "Is"
  6426. msgstr ""
  6427. #: client/analytics/report/products/config.js:176
  6428. #: client/analytics/report/stock/config.js:17
  6429. msgctxt ""
  6430. "A sentence describing filters for Products. See screen shot for context: "
  6431. "https://cloudup.com/cSsUY9VeCVJ"
  6432. msgid "Products Match {{select /}} Filters"
  6433. msgstr ""
  6434. #: client/analytics/report/products/table.js:165
  6435. #: client/analytics/report/stock/table.js:99
  6436. #: client/analytics/report/variations/table.js:165
  6437. msgctxt "Indication of a low quantity"
  6438. msgid "Low"
  6439. msgstr ""
  6440. #: client/analytics/report/revenue/config.js:74
  6441. msgctxt ""
  6442. "A sentence describing filters for Revenue. See screen shot for context: "
  6443. "https://cloudup.com/cSsUY9VeCVJ"
  6444. msgid "Revenue Matches {{select /}} Filters"
  6445. msgstr ""
  6446. #: client/analytics/report/taxes/config.js:58
  6447. msgctxt ""
  6448. "A sentence describing filters for Taxes. See screen shot for context: "
  6449. "https://cloudup.com/cSsUY9VeCVJ"
  6450. msgid "Taxes Match {{select /}} Filters"
  6451. msgstr ""
  6452. #: client/analytics/report/variations/config.js:123
  6453. msgctxt ""
  6454. "A sentence describing filters for Variations. See screen shot for context: "
  6455. "https://cloudup.com/cSsUY9VeCVJ"
  6456. msgid "Variations Match {{select /}} Filters"
  6457. msgstr ""
  6458. #: client/profile-wizard/steps/business-details/data/product-options.js:19
  6459. msgctxt "store product count or revenue"
  6460. msgid "%s+"
  6461. msgstr ""
  6462. #: client/profile-wizard/steps/business-details/data/product-options.js:25
  6463. msgctxt "store product count or revenue range"
  6464. msgid "%1$s - %2$s"
  6465. msgstr ""
  6466. #: packages/components/build-module/advanced-filters/date-filter.js:39
  6467. msgctxt "Date range inputs arranged on a single line"
  6468. msgid "{{after /}}{{span}} and {{/span}}{{before /}}"
  6469. msgstr ""
  6470. #: packages/components/build-module/advanced-filters/number-filter.js:18
  6471. msgctxt "Numerical range inputs arranged on a single line"
  6472. msgid "{{rangeStart /}}{{span}} and {{/span}}{{rangeEnd /}}"
  6473. msgstr ""
  6474. # Sentence fragment, "maximum amount" refers to a numeric value the field must be less than. Screenshot for context: https://cloudup.com/cmv5CLyMPNQ
  6475. #: packages/components/build-module/advanced-filters/number-filter.js:85
  6476. msgctxt "maximum value input"
  6477. msgid "%(field)s maximum amount"
  6478. msgstr ""
  6479. # Sentence fragment, "minimum amount" refers to a numeric value the field must be more than. Screenshot for context: https://cloudup.com/cmv5CLyMPNQ
  6480. #: packages/components/build-module/advanced-filters/number-filter.js:90
  6481. msgctxt "minimum value input"
  6482. msgid "%(field)s minimum amount"
  6483. msgstr ""