Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

django.po 171KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2012-10-13 14:19+0000\n"
  12. "PO-Revision-Date: 2012-10-14 15:30\n"
  13. "Last-Translator: <>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=1; plural=0\n"
  19. "X-Translated-Using: django-rosetta 0.6.8\n"
  20. #: apps/address/abstract_models.py:20
  21. msgid "Mr"
  22. msgstr ""
  23. #: apps/address/abstract_models.py:21
  24. msgid "Miss"
  25. msgstr ""
  26. #: apps/address/abstract_models.py:22
  27. msgid "Mrs"
  28. msgstr ""
  29. #: apps/address/abstract_models.py:23
  30. msgid "Ms"
  31. msgstr ""
  32. #: apps/address/abstract_models.py:24
  33. msgid "Dr"
  34. msgstr ""
  35. #: apps/address/abstract_models.py:26 apps/catalogue/abstract_models.py:263
  36. #: apps/dashboard/catalogue/forms.py:65 apps/dashboard/pages/forms.py:14
  37. #: apps/order/abstract_models.py:282 apps/promotions/models.py:221
  38. #: apps/promotions/models.py:315
  39. #: templates/oscar/dashboard/catalogue/product_list.html:57
  40. #: templates/oscar/dashboard/orders/line_detail.html:42
  41. #: templates/oscar/dashboard/pages/index.html:50
  42. #: templates/oscar/dashboard/ranges/range_product_list.html:83
  43. #: templates/oscar/dashboard/users/detail.html:162
  44. msgid "Title"
  45. msgstr "タイトル"
  46. #: apps/address/abstract_models.py:28 apps/customer/forms.py:261
  47. #: templates/oscar/dashboard/users/index.html:46
  48. msgid "First name"
  49. msgstr ""
  50. #: apps/address/abstract_models.py:30 apps/customer/forms.py:262
  51. #: templates/oscar/dashboard/users/index.html:47
  52. msgid "Last name"
  53. msgstr ""
  54. #: apps/address/abstract_models.py:34
  55. msgid "First line of address"
  56. msgstr ""
  57. #: apps/address/abstract_models.py:35
  58. msgid "Second line of address"
  59. msgstr ""
  60. #: apps/address/abstract_models.py:37
  61. msgid "Third line of address"
  62. msgstr ""
  63. #: apps/address/abstract_models.py:39
  64. msgid "City"
  65. msgstr ""
  66. #: apps/address/abstract_models.py:40
  67. msgid "State/County"
  68. msgstr ""
  69. #: apps/address/abstract_models.py:42
  70. msgid "Post/Zip-code"
  71. msgstr ""
  72. #: apps/address/abstract_models.py:43 apps/address/abstract_models.py:156
  73. msgid "Country"
  74. msgstr ""
  75. #: apps/address/abstract_models.py:47
  76. msgid "Search text"
  77. msgstr ""
  78. #: apps/address/abstract_models.py:51
  79. #: templates/oscar/checkout/checkout.html:33
  80. #: templates/oscar/checkout/thank_you.html:29
  81. #: templates/oscar/customer/anon_order.html:23
  82. #: templates/oscar/dashboard/orders/order_detail.html:314
  83. msgid "Address"
  84. msgstr ""
  85. #: apps/address/abstract_models.py:52
  86. #: templates/oscar/dashboard/users/detail.html:96
  87. #: templates/oscar/dashboard/users/detail.html:130
  88. msgid "Addresses"
  89. msgstr ""
  90. #: apps/address/abstract_models.py:140
  91. msgid "ISO 3166-1 alpha-2"
  92. msgstr ""
  93. #: apps/address/abstract_models.py:142
  94. msgid "ISO 3166-1 alpha-3"
  95. msgstr ""
  96. #: apps/address/abstract_models.py:145
  97. msgid "ISO 3166-1 numeric"
  98. msgstr ""
  99. #: apps/address/abstract_models.py:146
  100. msgid "Official name (CAPS)"
  101. msgstr ""
  102. #: apps/address/abstract_models.py:147
  103. msgid "Country name"
  104. msgstr ""
  105. #: apps/address/abstract_models.py:149
  106. msgid "Is Highlighted"
  107. msgstr ""
  108. #: apps/address/abstract_models.py:151
  109. msgid "Is Shipping Country"
  110. msgstr ""
  111. #: apps/address/abstract_models.py:157 apps/shipping/models.py:16
  112. msgid "Countries"
  113. msgstr ""
  114. #: apps/address/abstract_models.py:171
  115. msgid "Phone number"
  116. msgstr ""
  117. #: apps/address/abstract_models.py:175
  118. msgid "Courier instructions"
  119. msgstr ""
  120. #: apps/address/abstract_models.py:176
  121. msgid "For example, leave the parcel in the wheelie bin if I'm not in."
  122. msgstr ""
  123. #: apps/address/abstract_models.py:181
  124. #: templates/oscar/checkout/shipping_address.html:5
  125. #: templates/oscar/customer/anon_order.html:19
  126. #: templates/oscar/dashboard/orders/order_list.html:104
  127. #: templates/oscar/dashboard/orders/shippingaddress_form.html:5
  128. msgid "Shipping address"
  129. msgstr ""
  130. #: apps/address/abstract_models.py:182
  131. msgid "Shipping addresses"
  132. msgstr ""
  133. #: apps/address/abstract_models.py:206 apps/analytics/abstract_models.py:43
  134. #: apps/analytics/abstract_models.py:71 apps/analytics/abstract_models.py:87
  135. #: apps/basket/reports.py:82 apps/customer/abstract_models.py:20
  136. #: apps/customer/abstract_models.py:177 apps/order/abstract_models.py:26
  137. #: apps/order/abstract_models.py:219 apps/order/reports.py:20
  138. #: apps/payment/models.py:163 apps/voucher/abstract_models.py:139
  139. #: templates/oscar/dashboard/orders/order_detail.html:430
  140. #: templates/oscar/dashboard/reports/partials/order_report.html:10
  141. #: templates/oscar/dashboard/reviews/review_delete.html:37
  142. #: templates/oscar/dashboard/reviews/review_list.html:43
  143. #: templates/oscar/dashboard/users/alerts/list.html:50
  144. #: templates/oscar/dashboard/users/alerts/partials/alert.html:9
  145. msgid "User"
  146. msgstr ""
  147. #: apps/address/abstract_models.py:210
  148. msgid "Default shipping address?"
  149. msgstr ""
  150. #: apps/address/abstract_models.py:212
  151. msgid "Default billing address?"
  152. msgstr ""
  153. #: apps/address/abstract_models.py:217 apps/offer/models.py:71
  154. msgid "Number of Orders"
  155. msgstr ""
  156. #: apps/address/abstract_models.py:221
  157. msgid "Address Hash"
  158. msgstr ""
  159. #: apps/address/abstract_models.py:222 apps/analytics/abstract_models.py:73
  160. #: apps/analytics/abstract_models.py:89 apps/basket/abstract_models.py:464
  161. #: apps/catalogue/abstract_models.py:290 apps/catalogue/abstract_models.py:841
  162. #: apps/customer/abstract_models.py:59 apps/offer/models.py:75
  163. #: apps/offer/models.py:370 apps/order/abstract_models.py:226
  164. #: apps/order/abstract_models.py:527 apps/order/abstract_models.py:567
  165. #: apps/partner/abstract_models.py:104 apps/partner/abstract_models.py:268
  166. #: apps/payment/models.py:24 apps/promotions/models.py:29
  167. #: apps/promotions/models.py:316
  168. msgid "Date Created"
  169. msgstr ""
  170. #: apps/address/abstract_models.py:257
  171. msgid "User address"
  172. msgstr ""
  173. #: apps/address/abstract_models.py:258
  174. msgid "User addresses"
  175. msgstr ""
  176. #: apps/address/abstract_models.py:266
  177. #: templates/oscar/dashboard/orders/order_detail.html:329
  178. #: templates/oscar/dashboard/orders/order_list.html:105
  179. msgid "Billing address"
  180. msgstr ""
  181. #: apps/address/abstract_models.py:267
  182. msgid "Billing addresses"
  183. msgstr ""
  184. #: apps/analytics/abstract_models.py:16 apps/analytics/abstract_models.py:72
  185. #: apps/analytics/reports.py:22 apps/basket/abstract_models.py:452
  186. #: apps/catalogue/abstract_models.py:168 apps/catalogue/abstract_models.py:227
  187. #: apps/catalogue/abstract_models.py:430 apps/catalogue/abstract_models.py:673
  188. #: apps/catalogue/abstract_models.py:833 apps/order/abstract_models.py:288
  189. #: apps/partner/abstract_models.py:70 apps/promotions/models.py:262
  190. #: templates/oscar/customer/anon_order.html:55
  191. #: templates/oscar/customer/order.html:47
  192. #: templates/oscar/customer/profile.html:197
  193. #: templates/oscar/dashboard/catalogue/stockalert_list.html:41
  194. #: templates/oscar/dashboard/orders/order_detail.html:111
  195. #: templates/oscar/dashboard/reports/partials/product_report.html:8
  196. #: templates/oscar/dashboard/reviews/review_delete.html:36
  197. #: templates/oscar/dashboard/users/alerts/list.html:49
  198. #: templates/oscar/dashboard/users/alerts/partials/alert.html:5
  199. msgid "Product"
  200. msgstr "商品"
  201. #: apps/analytics/abstract_models.py:19 apps/analytics/reports.py:23
  202. #: templates/oscar/dashboard/reports/partials/product_report.html:9
  203. msgid "Views"
  204. msgstr ""
  205. #: apps/analytics/abstract_models.py:21 apps/analytics/abstract_models.py:49
  206. msgid "Basket Additions"
  207. msgstr ""
  208. #: apps/analytics/abstract_models.py:23
  209. msgid "Purchaes"
  210. msgstr ""
  211. #: apps/analytics/abstract_models.py:26 apps/catalogue/abstract_models.py:288
  212. #: apps/catalogue/reviews/abstract_models.py:31
  213. #: templates/oscar/dashboard/reviews/review_delete.html:38
  214. #: templates/oscar/dashboard/reviews/review_list.html:44
  215. #: templates/oscar/dashboard/users/detail.html:161
  216. #: templates/oscar/reviews/reviews.html:45
  217. msgid "Score"
  218. msgstr ""
  219. #: apps/analytics/abstract_models.py:31
  220. msgid "Product record"
  221. msgstr ""
  222. #: apps/analytics/abstract_models.py:32
  223. msgid "Product records"
  224. msgstr ""
  225. #: apps/analytics/abstract_models.py:35
  226. #, python-format
  227. msgid "Record for '%s'"
  228. msgstr ""
  229. #: apps/analytics/abstract_models.py:47
  230. msgid "Product Views"
  231. msgstr ""
  232. #: apps/analytics/abstract_models.py:53 apps/analytics/reports.py:68
  233. #: apps/dashboard/orders/app.py:9 apps/dashboard/orders/app.py:10
  234. #: apps/order/abstract_models.py:192 templates/oscar/dashboard/index.html:103
  235. #: templates/oscar/dashboard/orders/line_detail.html:18
  236. #: templates/oscar/dashboard/orders/order_detail.html:18
  237. #: templates/oscar/dashboard/orders/shippingaddress_form.html:15
  238. #: templates/oscar/dashboard/orders/statistics.html:18
  239. #: templates/oscar/dashboard/reports/partials/user_report.html:13
  240. #: templates/oscar/dashboard/users/detail.html:70
  241. #: templates/oscar/dashboard/users/detail.html:95
  242. #: templates/oscar/dashboard/users/detail.html:102
  243. msgid "Orders"
  244. msgstr "注文一覧"
  245. #: apps/analytics/abstract_models.py:55 apps/order/abstract_models.py:438
  246. msgid "Order Lines"
  247. msgstr ""
  248. #: apps/analytics/abstract_models.py:57
  249. msgid "Order Items"
  250. msgstr ""
  251. #: apps/analytics/abstract_models.py:58
  252. msgid "Total Spent"
  253. msgstr ""
  254. #: apps/analytics/abstract_models.py:61
  255. msgid "Last Order Date"
  256. msgstr ""
  257. #: apps/analytics/abstract_models.py:65
  258. msgid "User Record"
  259. msgstr ""
  260. #: apps/analytics/abstract_models.py:66
  261. msgid "User Records"
  262. msgstr ""
  263. #: apps/analytics/abstract_models.py:77 apps/basket/abstract_models.py:52
  264. #: apps/basket/abstract_models.py:441 templates/oscar/basket/basket.html:7
  265. #: templates/oscar/basket/basket.html:16
  266. #: templates/oscar/partials/nav_alternate.html:13
  267. #: templates/oscar/partials/nav_primary.html:14
  268. msgid "Basket"
  269. msgstr "カート"
  270. #: apps/analytics/abstract_models.py:78 apps/basket/abstract_models.py:53
  271. msgid "Baskets"
  272. msgstr ""
  273. #: apps/analytics/abstract_models.py:81
  274. #, python-format
  275. msgid "%(user)s viewed '%(product)s'"
  276. msgstr ""
  277. #: apps/analytics/abstract_models.py:88
  278. msgid "Search term"
  279. msgstr ""
  280. #: apps/analytics/abstract_models.py:93
  281. msgid "User search queries"
  282. msgstr ""
  283. #: apps/analytics/abstract_models.py:96
  284. #, python-format
  285. msgid "%(user)s searched for '%(query)s'"
  286. msgstr ""
  287. #: apps/analytics/reports.py:24 apps/analytics/reports.py:67
  288. #: templates/oscar/dashboard/reports/partials/product_report.html:10
  289. #: templates/oscar/dashboard/reports/partials/user_report.html:12
  290. msgid "Basket additions"
  291. msgstr ""
  292. #: apps/analytics/reports.py:25
  293. #: templates/oscar/dashboard/reports/partials/product_report.html:11
  294. msgid "Purchases"
  295. msgstr ""
  296. #: apps/analytics/reports.py:42
  297. msgid "Product analytics"
  298. msgstr ""
  299. #: apps/analytics/reports.py:64 apps/basket/reports.py:21
  300. #: apps/catalogue/abstract_models.py:24 apps/catalogue/abstract_models.py:60
  301. #: apps/catalogue/abstract_models.py:186 apps/catalogue/abstract_models.py:208
  302. #: apps/catalogue/abstract_models.py:558 apps/catalogue/abstract_models.py:711
  303. #: apps/catalogue/abstract_models.py:743 apps/catalogue/abstract_models.py:765
  304. #: apps/catalogue/abstract_models.py:794
  305. #: apps/catalogue/reviews/abstract_models.py:37
  306. #: apps/customer/abstract_models.py:43 apps/dashboard/users/forms.py:11
  307. #: apps/dashboard/vouchers/forms.py:15 apps/dashboard/vouchers/forms.py:74
  308. #: apps/offer/models.py:21 apps/offer/models.py:360
  309. #: apps/order/abstract_models.py:499 apps/order/abstract_models.py:636
  310. #: apps/partner/abstract_models.py:35 apps/payment/models.py:145
  311. #: apps/payment/models.py:165 apps/promotions/models.py:137
  312. #: apps/promotions/models.py:165 apps/promotions/models.py:186
  313. #: apps/promotions/models.py:200 apps/shipping/models.py:12
  314. #: apps/voucher/abstract_models.py:18 templates/oscar/customer/profile.html:49
  315. #: templates/oscar/dashboard/catalogue/category_list.html:42
  316. #: templates/oscar/dashboard/offers/offer_delete.html:35
  317. #: templates/oscar/dashboard/offers/offer_detail.html:30
  318. #: templates/oscar/dashboard/offers/preview.html:7
  319. #: templates/oscar/dashboard/orders/order_detail.html:39
  320. #: templates/oscar/dashboard/promotions/promotion_list.html:39
  321. #: templates/oscar/dashboard/ranges/range_list.html:34
  322. #: templates/oscar/dashboard/reports/partials/open_basket_report.html:9
  323. #: templates/oscar/dashboard/reports/partials/submitted_basket_report.html:9
  324. #: templates/oscar/dashboard/reports/partials/user_report.html:9
  325. #: templates/oscar/dashboard/vouchers/voucher_delete.html:34
  326. #: templates/oscar/dashboard/vouchers/voucher_detail.html:34
  327. #: templates/oscar/dashboard/vouchers/voucher_list.html:50
  328. msgid "Name"
  329. msgstr "アカウント情報"
  330. #: apps/analytics/reports.py:65 templates/oscar/customer/profile.html:65
  331. #: templates/oscar/dashboard/reports/partials/user_report.html:10
  332. #: templates/oscar/dashboard/users/index.html:50
  333. msgid "Date registered"
  334. msgstr "アカウント作成日時"
  335. #: apps/analytics/reports.py:66
  336. #: templates/oscar/dashboard/reports/partials/user_report.html:11
  337. msgid "Product views"
  338. msgstr ""
  339. #: apps/analytics/reports.py:69
  340. #: templates/oscar/dashboard/reports/partials/user_report.html:14
  341. msgid "Order lines"
  342. msgstr ""
  343. #: apps/analytics/reports.py:70
  344. #: templates/oscar/dashboard/reports/partials/user_report.html:15
  345. msgid "Order items"
  346. msgstr ""
  347. #: apps/analytics/reports.py:71
  348. #: templates/oscar/dashboard/reports/partials/user_report.html:16
  349. msgid "Total spent"
  350. msgstr ""
  351. #: apps/analytics/reports.py:72
  352. #: templates/oscar/dashboard/reports/partials/user_report.html:17
  353. msgid "Date of last order"
  354. msgstr ""
  355. #: apps/analytics/reports.py:94
  356. msgid "User analytics"
  357. msgstr ""
  358. #: apps/basket/abstract_models.py:22
  359. msgid "Owner"
  360. msgstr ""
  361. #: apps/basket/abstract_models.py:30
  362. msgid "Open - currently active"
  363. msgstr ""
  364. #: apps/basket/abstract_models.py:31
  365. msgid "Merged - superceded by another basket"
  366. msgstr ""
  367. #: apps/basket/abstract_models.py:32
  368. msgid "Saved - for items to be purchased later"
  369. msgstr ""
  370. #: apps/basket/abstract_models.py:33
  371. msgid "Frozen - the basket cannot be modified"
  372. msgstr ""
  373. #: apps/basket/abstract_models.py:34
  374. msgid "Submitted - has been ordered at the checkout"
  375. msgstr ""
  376. #: apps/basket/abstract_models.py:36 apps/catalogue/abstract_models.py:268
  377. #: apps/catalogue/abstract_models.py:802
  378. #: apps/catalogue/reviews/abstract_models.py:48
  379. #: apps/customer/abstract_models.py:197 apps/dashboard/catalogue/forms.py:212
  380. #: apps/dashboard/orders/forms.py:65 apps/dashboard/ranges/models.py:23
  381. #: apps/dashboard/reviews/forms.py:13 apps/dashboard/reviews/forms.py:26
  382. #: apps/order/abstract_models.py:48 apps/order/abstract_models.py:321
  383. #: apps/partner/abstract_models.py:267 apps/payment/models.py:23
  384. #: templates/oscar/customer/anon_order.html:14
  385. #: templates/oscar/customer/anon_order.html:60
  386. #: templates/oscar/customer/profile.html:198
  387. #: templates/oscar/dashboard/catalogue/product_list.html:59
  388. #: templates/oscar/dashboard/catalogue/stockalert_list.html:46
  389. #: templates/oscar/dashboard/offers/offer_list.html:48
  390. #: templates/oscar/dashboard/orders/line_detail.html:59
  391. #: templates/oscar/dashboard/orders/order_detail.html:75
  392. #: templates/oscar/dashboard/orders/order_detail.html:113
  393. #: templates/oscar/dashboard/orders/order_list.html:102
  394. #: templates/oscar/dashboard/orders/statistics.html:60
  395. #: templates/oscar/dashboard/reviews/review_delete.html:40
  396. #: templates/oscar/dashboard/reviews/review_list.html:46
  397. #: templates/oscar/dashboard/users/detail.html:110
  398. #: templates/oscar/dashboard/users/alerts/list.html:51
  399. #: templates/oscar/dashboard/users/alerts/partials/alert.html:19
  400. msgid "Status"
  401. msgstr "ステータス"
  402. #: apps/basket/abstract_models.py:40 apps/dashboard/vouchers/app.py:9
  403. #: apps/voucher/abstract_models.py:55 templates/oscar/basket/basket.html:135
  404. #: templates/oscar/dashboard/index.html:150
  405. #: templates/oscar/dashboard/vouchers/voucher_delete.html:16
  406. #: templates/oscar/dashboard/vouchers/voucher_detail.html:16
  407. #: templates/oscar/dashboard/vouchers/voucher_form.html:9
  408. #: templates/oscar/dashboard/vouchers/voucher_form.html:19
  409. msgid "Vouchers"
  410. msgstr ""
  411. #: apps/basket/abstract_models.py:42 apps/basket/reports.py:87
  412. #: apps/customer/abstract_models.py:200
  413. #: templates/oscar/customer/profile.html:199
  414. #: templates/oscar/dashboard/offers/offer_detail.html:36
  415. #: templates/oscar/dashboard/offers/offer_list.html:53
  416. #: templates/oscar/dashboard/promotions/promotion_list.html:42
  417. #: templates/oscar/dashboard/ranges/range_list.html:36
  418. #: templates/oscar/dashboard/reports/partials/submitted_basket_report.html:13
  419. #: templates/oscar/dashboard/reviews/review_delete.html:41
  420. #: templates/oscar/dashboard/reviews/review_list.html:47
  421. #: templates/oscar/dashboard/users/detail.html:164
  422. #: templates/oscar/dashboard/users/alerts/list.html:52
  423. #: templates/oscar/dashboard/users/alerts/partials/alert.html:23
  424. #: templates/oscar/dashboard/vouchers/voucher_list.html:55
  425. msgid "Date created"
  426. msgstr "作成日時"
  427. #: apps/basket/abstract_models.py:43
  428. msgid "Date merged"
  429. msgstr ""
  430. #: apps/basket/abstract_models.py:44
  431. #: templates/oscar/customer/order_list.html:44
  432. #: templates/oscar/customer/profile.html:89
  433. msgid "Date submitted"
  434. msgstr "注文日時"
  435. #: apps/basket/abstract_models.py:69
  436. #, python-format
  437. msgid "%(status)s basket (owner: %(owner)s, lines: %(num_lines)d)"
  438. msgstr ""
  439. #: apps/basket/abstract_models.py:94 apps/basket/forms.py:168
  440. #, python-format
  441. msgid ""
  442. "Due to technical limitations we are not able to ship more than %(threshold)d"
  443. " items in one order. Your basket currently has %(basket)d items."
  444. msgstr ""
  445. #: apps/basket/abstract_models.py:447
  446. msgid "Line Reference"
  447. msgstr ""
  448. #: apps/basket/abstract_models.py:453 apps/basket/forms.py:116
  449. #: apps/basket/forms.py:214 apps/order/abstract_models.py:289
  450. #: apps/order/abstract_models.py:475 apps/order/abstract_models.py:547
  451. #: apps/order/abstract_models.py:589 templates/oscar/basket/basket.html:42
  452. #: templates/oscar/checkout/checkout.html:89
  453. #: templates/oscar/checkout/thank_you.html:73
  454. #: templates/oscar/customer/anon_order.html:57
  455. #: templates/oscar/customer/order.html:49
  456. #: templates/oscar/dashboard/orders/line_detail.html:51
  457. #: templates/oscar/dashboard/orders/order_detail.html:110
  458. msgid "Quantity"
  459. msgstr ""
  460. #: apps/basket/abstract_models.py:459
  461. msgid "Price excl. Tax"
  462. msgstr "定価(税抜)"
  463. #: apps/basket/abstract_models.py:462
  464. msgid "Price incl. Tax"
  465. msgstr "定価(税込)"
  466. #: apps/basket/abstract_models.py:474
  467. msgid "Basket line"
  468. msgstr ""
  469. #: apps/basket/abstract_models.py:475
  470. msgid "Basket lines"
  471. msgstr ""
  472. #: apps/basket/abstract_models.py:479
  473. #, python-format
  474. msgid "%(basket)s, Product '%(product)s', quantity %(quantity)d"
  475. msgstr ""
  476. #: apps/basket/abstract_models.py:490
  477. #, python-format
  478. msgid "You cannot modify a %s basket"
  479. msgstr ""
  480. #: apps/basket/abstract_models.py:675 apps/order/abstract_models.py:450
  481. #: apps/order/abstract_models.py:474 apps/order/abstract_models.py:546
  482. #: apps/order/abstract_models.py:588
  483. msgid "Line"
  484. msgstr ""
  485. #: apps/basket/abstract_models.py:676 apps/catalogue/abstract_models.py:549
  486. #: apps/catalogue/abstract_models.py:728 apps/catalogue/abstract_models.py:807
  487. #: apps/order/abstract_models.py:452 apps/order/abstract_models.py:473
  488. msgid "Option"
  489. msgstr ""
  490. #: apps/basket/abstract_models.py:677 apps/basket/reports.py:26
  491. #: apps/basket/reports.py:86 apps/offer/models.py:188 apps/offer/models.py:262
  492. #: apps/order/abstract_models.py:454
  493. #: templates/oscar/dashboard/reports/partials/open_basket_report.html:12
  494. #: templates/oscar/dashboard/reports/partials/submitted_basket_report.html:12
  495. msgid "Value"
  496. msgstr ""
  497. #: apps/basket/abstract_models.py:681
  498. msgid "Line attribute"
  499. msgstr ""
  500. #: apps/basket/abstract_models.py:682
  501. msgid "Line attributes"
  502. msgstr ""
  503. #: apps/basket/forms.py:16
  504. msgid "Save for Later"
  505. msgstr "今は買わない"
  506. #: apps/basket/forms.py:44
  507. msgid "Move to Basket"
  508. msgstr ""
  509. #: apps/basket/forms.py:90 apps/catalogue/abstract_models.py:559
  510. #: apps/catalogue/abstract_models.py:795 apps/customer/abstract_models.py:40
  511. #: apps/dashboard/vouchers/forms.py:16 apps/dashboard/vouchers/forms.py:75
  512. #: apps/order/abstract_models.py:500 apps/order/abstract_models.py:638
  513. #: apps/order/abstract_models.py:675 apps/payment/models.py:146
  514. #: apps/voucher/abstract_models.py:21
  515. #: templates/oscar/dashboard/vouchers/voucher_delete.html:35
  516. #: templates/oscar/dashboard/vouchers/voucher_detail.html:35
  517. #: templates/oscar/dashboard/vouchers/voucher_list.html:51
  518. msgid "Code"
  519. msgstr ""
  520. #: apps/basket/forms.py:100 apps/basket/forms.py:115
  521. #: templates/oscar/dashboard/users/detail.html:160
  522. msgid "Product ID"
  523. msgstr ""
  524. #: apps/basket/forms.py:109
  525. msgid "This product is not available for purchase"
  526. msgstr ""
  527. #: apps/basket/forms.py:148
  528. msgid "Please select a valid product"
  529. msgstr ""
  530. #: apps/basket/forms.py:192
  531. msgid "Variant"
  532. msgstr ""
  533. #: apps/basket/reports.py:20 apps/basket/reports.py:81
  534. msgid "User ID"
  535. msgstr ""
  536. #: apps/basket/reports.py:22 apps/catalogue/reviews/abstract_models.py:38
  537. #: apps/customer/abstract_models.py:28 apps/customer/abstract_models.py:178
  538. #: apps/dashboard/users/forms.py:10
  539. #: templates/oscar/dashboard/reports/partials/open_basket_report.html:8
  540. #: templates/oscar/dashboard/reports/partials/submitted_basket_report.html:8
  541. #: templates/oscar/dashboard/reports/partials/user_report.html:8
  542. #: templates/oscar/dashboard/users/index.html:45
  543. msgid "Email"
  544. msgstr ""
  545. #: apps/basket/reports.py:23 apps/basket/reports.py:83
  546. msgid "Basket status"
  547. msgstr ""
  548. #: apps/basket/reports.py:24 apps/basket/reports.py:84
  549. #: templates/oscar/dashboard/reports/partials/open_basket_report.html:10
  550. #: templates/oscar/dashboard/reports/partials/submitted_basket_report.html:10
  551. msgid "Num lines"
  552. msgstr ""
  553. #: apps/basket/reports.py:25 apps/basket/reports.py:85
  554. #: templates/oscar/dashboard/reports/partials/open_basket_report.html:11
  555. #: templates/oscar/dashboard/reports/partials/submitted_basket_report.html:11
  556. #: templates/oscar/dashboard/users/detail.html:107
  557. msgid "Num items"
  558. msgstr ""
  559. #: apps/basket/reports.py:27
  560. #: templates/oscar/dashboard/reports/partials/open_basket_report.html:13
  561. msgid "Date of creation"
  562. msgstr ""
  563. #: apps/basket/reports.py:28
  564. #: templates/oscar/dashboard/reports/partials/open_basket_report.html:14
  565. msgid "Time since creation"
  566. msgstr ""
  567. #: apps/basket/reports.py:62
  568. msgid "Open baskets"
  569. msgstr ""
  570. #: apps/basket/reports.py:88
  571. #: templates/oscar/dashboard/reports/partials/submitted_basket_report.html:14
  572. msgid "Time between creation and submission"
  573. msgstr ""
  574. #: apps/basket/reports.py:117
  575. msgid "Submitted baskets"
  576. msgstr ""
  577. #: apps/basket/views.py:92
  578. msgid "Basket updated"
  579. msgstr ""
  580. #: apps/basket/views.py:105
  581. #, python-format
  582. msgid "'%(title)s' has been saved for later"
  583. msgstr ""
  584. #: apps/basket/views.py:111
  585. msgid "You can't save an item for later if you're not logged in!"
  586. msgstr ""
  587. #: apps/basket/views.py:129
  588. #, python-format
  589. msgid ""
  590. "Your basket couldn't be updated because:\n"
  591. "%s"
  592. msgstr ""
  593. #: apps/basket/views.py:192
  594. #, python-format
  595. msgid "'%(title)s' has been added to your basket"
  596. msgstr "'%(title)s'がカートに追加されました"
  597. #: apps/basket/views.py:196
  598. #, python-format
  599. msgid "'%(title)s' (quantity %(quantity)d) has been added to yourbasket"
  600. msgstr ""
  601. #: apps/basket/views.py:220
  602. #, python-format
  603. msgid "The '%(code)s' voucher has expired"
  604. msgstr ""
  605. #: apps/basket/views.py:250
  606. msgid "Your basket does not qualify for a voucher discount"
  607. msgstr ""
  608. #: apps/basket/views.py:255
  609. #, python-format
  610. msgid "Voucher '%(code)s' added to basket"
  611. msgstr ""
  612. #: apps/basket/views.py:267
  613. #, python-format
  614. msgid "You have already added the '%(code)s' voucher to your basket"
  615. msgstr ""
  616. #: apps/basket/views.py:275
  617. #, python-format
  618. msgid "No voucher found with code '%(code)s'"
  619. msgstr ""
  620. #: apps/basket/views.py:283 apps/dashboard/vouchers/forms.py:54
  621. msgid "Please enter a voucher code"
  622. msgstr ""
  623. #: apps/basket/views.py:303
  624. #, python-format
  625. msgid "No voucher found with id '%d'"
  626. msgstr ""
  627. #: apps/basket/views.py:308
  628. #, python-format
  629. msgid "Voucher '%s' removed from basket"
  630. msgstr ""
  631. #: apps/basket/views.py:346
  632. #, python-format
  633. msgid "'%(product)s' has been moved back to your basket"
  634. msgstr ""
  635. #: apps/catalogue/abstract_models.py:25 apps/catalogue/abstract_models.py:63
  636. #: apps/catalogue/abstract_models.py:209 apps/catalogue/abstract_models.py:264
  637. #: apps/catalogue/abstract_models.py:744 apps/catalogue/abstract_models.py:766
  638. #: apps/offer/models.py:24 apps/shipping/models.py:11
  639. msgid "Slug"
  640. msgstr ""
  641. #: apps/catalogue/abstract_models.py:29
  642. msgid "Requires shipping?"
  643. msgstr ""
  644. #: apps/catalogue/abstract_models.py:32
  645. msgid "Track stock levels?"
  646. msgstr ""
  647. #: apps/catalogue/abstract_models.py:37 apps/catalogue/abstract_models.py:808
  648. msgid "Options"
  649. msgstr ""
  650. #: apps/catalogue/abstract_models.py:42 apps/catalogue/abstract_models.py:269
  651. #: apps/catalogue/abstract_models.py:557
  652. msgid "Product Class"
  653. msgstr ""
  654. #: apps/catalogue/abstract_models.py:43 apps/offer/models.py:367
  655. msgid "Product Classes"
  656. msgstr ""
  657. #: apps/catalogue/abstract_models.py:61 apps/catalogue/abstract_models.py:265
  658. #: apps/offer/models.py:25 apps/promotions/models.py:202
  659. #: apps/promotions/models.py:222 apps/shipping/models.py:13
  660. #: templates/oscar/dashboard/catalogue/category_list.html:43
  661. #: templates/oscar/dashboard/offers/offer_delete.html:36
  662. #: templates/oscar/dashboard/offers/offer_detail.html:31
  663. #: templates/oscar/dashboard/offers/preview.html:8
  664. msgid "Description"
  665. msgstr "説明"
  666. #: apps/catalogue/abstract_models.py:62 apps/promotions/models.py:168
  667. #: apps/promotions/models.py:175 apps/promotions/models.py:176
  668. msgid "Image"
  669. msgstr ""
  670. #: apps/catalogue/abstract_models.py:64
  671. msgid "Full Name"
  672. msgstr ""
  673. #: apps/catalogue/abstract_models.py:92
  674. #, python-format
  675. msgid "A category with slug '%(slug)s' already exists"
  676. msgstr ""
  677. #: apps/catalogue/abstract_models.py:154 apps/catalogue/abstract_models.py:169
  678. #: apps/customer/abstract_models.py:48
  679. #: templates/oscar/dashboard/catalogue/product_update.html:107
  680. msgid "Category"
  681. msgstr ""
  682. #: apps/catalogue/abstract_models.py:155 apps/catalogue/abstract_models.py:295
  683. #: apps/dashboard/catalogue/app.py:11
  684. #: templates/oscar/dashboard/catalogue/category_delete.html:11
  685. #: templates/oscar/dashboard/catalogue/category_form.html:17
  686. #: templates/oscar/dashboard/catalogue/category_list.html:17
  687. msgid "Categories"
  688. msgstr ""
  689. #: apps/catalogue/abstract_models.py:170
  690. msgid "Is Cannonical"
  691. msgstr ""
  692. #: apps/catalogue/abstract_models.py:175
  693. msgid "Product Category"
  694. msgstr ""
  695. #: apps/catalogue/abstract_models.py:176
  696. msgid "Product Categories"
  697. msgstr ""
  698. #: apps/catalogue/abstract_models.py:187
  699. msgid "Name Plural"
  700. msgstr ""
  701. #: apps/catalogue/abstract_models.py:195 apps/catalogue/abstract_models.py:229
  702. msgid "Contributor Role"
  703. msgstr ""
  704. #: apps/catalogue/abstract_models.py:196
  705. msgid "Contributor Roles"
  706. msgstr ""
  707. #: apps/catalogue/abstract_models.py:216 apps/catalogue/abstract_models.py:228
  708. msgid "Contributor"
  709. msgstr ""
  710. #: apps/catalogue/abstract_models.py:217
  711. msgid "Contributors"
  712. msgstr ""
  713. #: apps/catalogue/abstract_models.py:236
  714. msgid "Product Contributor"
  715. msgstr ""
  716. #: apps/catalogue/abstract_models.py:237
  717. msgid "Product Contributors"
  718. msgstr ""
  719. #: apps/catalogue/abstract_models.py:252 apps/dashboard/catalogue/forms.py:64
  720. #: apps/dashboard/orders/forms.py:61 apps/order/abstract_models.py:283
  721. #: templates/oscar/catalogue/detail.html:96
  722. #: templates/oscar/dashboard/catalogue/product_list.html:56
  723. #: templates/oscar/dashboard/orders/line_detail.html:48
  724. #: templates/oscar/dashboard/orders/order_detail.html:112
  725. #: templates/oscar/dashboard/ranges/range_product_list.html:82
  726. msgid "UPC"
  727. msgstr ""
  728. #: apps/catalogue/abstract_models.py:253
  729. msgid ""
  730. "Universal Product Code (UPC) is an identifier for a product which is\n"
  731. " not specific to a particular supplier. Eg an ISBN for a book."
  732. msgstr "ISBNコードをご入力ください"
  733. #: apps/catalogue/abstract_models.py:257
  734. msgid "Parent"
  735. msgstr ""
  736. #: apps/catalogue/abstract_models.py:258
  737. msgid ""
  738. "Only choose a parent product if this is a 'variant' of a canonical catalogue. For example\n"
  739. " if this is a size 4 of a particular t-shirt. Leave blank if this is a CANONICAL PRODUCT (ie\n"
  740. " there is only one version of this product)."
  741. msgstr "関連商品がある場合にはお選びください。必須ではありません。"
  742. #: apps/catalogue/abstract_models.py:270
  743. msgid "Choose what type of product this is"
  744. msgstr ""
  745. #: apps/catalogue/abstract_models.py:272
  746. msgid "Attributes"
  747. msgstr ""
  748. #: apps/catalogue/abstract_models.py:272
  749. msgid ""
  750. "A product attribute is something that this product MUST have, such as a "
  751. "size, as specified by its class"
  752. msgstr ""
  753. #: apps/catalogue/abstract_models.py:274
  754. msgid "Product Options"
  755. msgstr ""
  756. #: apps/catalogue/abstract_models.py:275
  757. msgid ""
  758. "Options are values that can be associated with a item when it is added to\n"
  759. " a customer's basket. This could be something like a personalised message to be\n"
  760. " printed on a T-shirt."
  761. msgstr ""
  762. #: apps/catalogue/abstract_models.py:280
  763. msgid "Related Products"
  764. msgstr ""
  765. #: apps/catalogue/abstract_models.py:280
  766. msgid ""
  767. "Related items are things like different formats\n"
  768. " of the same book. Grouping them together allows better linking betwen products on the site."
  769. msgstr ""
  770. #: apps/catalogue/abstract_models.py:285
  771. msgid "Recommended Products"
  772. msgstr ""
  773. #: apps/catalogue/abstract_models.py:293 apps/customer/abstract_models.py:60
  774. #: apps/order/abstract_models.py:227 apps/partner/abstract_models.py:105
  775. msgid "Date Updated"
  776. msgstr ""
  777. #: apps/catalogue/abstract_models.py:297
  778. msgid "Is Discountable"
  779. msgstr "割引対象"
  780. #: apps/catalogue/abstract_models.py:371
  781. msgid "No stock available"
  782. msgstr ""
  783. #: apps/catalogue/abstract_models.py:431 apps/dashboard/catalogue/app.py:10
  784. #: apps/promotions/models.py:246
  785. #: templates/oscar/dashboard/promotions/handpickedproductlist_form.html:5
  786. #: templates/oscar/dashboard/ranges/range_product_list.html:23
  787. msgid "Products"
  788. msgstr "商品"
  789. #: apps/catalogue/abstract_models.py:451
  790. msgid "Canonical products must have a title"
  791. msgstr ""
  792. #: apps/catalogue/abstract_models.py:470
  793. msgid "Primary Product"
  794. msgstr ""
  795. #: apps/catalogue/abstract_models.py:471
  796. msgid "Recommended Product"
  797. msgstr ""
  798. #: apps/catalogue/abstract_models.py:472
  799. msgid "Ranking"
  800. msgstr ""
  801. #: apps/catalogue/abstract_models.py:475
  802. msgid "Product Recommendation"
  803. msgstr ""
  804. #: apps/catalogue/abstract_models.py:476
  805. msgid "Product Recomendations"
  806. msgstr ""
  807. #: apps/catalogue/abstract_models.py:499
  808. #, python-format
  809. msgid "%(obj)s has no attribute named '%(attr)s'"
  810. msgstr ""
  811. #: apps/catalogue/abstract_models.py:507
  812. #, python-format
  813. msgid "%(attr)s attribute cannot be blank"
  814. msgstr ""
  815. #: apps/catalogue/abstract_models.py:514
  816. #, python-format
  817. msgid "%(attr)s attribute %(err)s"
  818. msgstr ""
  819. #: apps/catalogue/abstract_models.py:543 apps/catalogue/abstract_models.py:674
  820. msgid "Text"
  821. msgstr ""
  822. #: apps/catalogue/abstract_models.py:544 apps/catalogue/abstract_models.py:675
  823. msgid "Integer"
  824. msgstr ""
  825. #: apps/catalogue/abstract_models.py:545
  826. msgid "True / False"
  827. msgstr ""
  828. #: apps/catalogue/abstract_models.py:546 apps/catalogue/abstract_models.py:677
  829. msgid "Float"
  830. msgstr ""
  831. #: apps/catalogue/abstract_models.py:547
  832. msgid "Rich Text"
  833. msgstr ""
  834. #: apps/catalogue/abstract_models.py:548 apps/catalogue/abstract_models.py:679
  835. #: apps/order/abstract_models.py:254
  836. #: templates/oscar/dashboard/orders/order_detail.html:231
  837. #: templates/oscar/dashboard/orders/order_detail.html:267
  838. #: templates/oscar/dashboard/orders/order_detail.html:429
  839. msgid "Date"
  840. msgstr ""
  841. #: apps/catalogue/abstract_models.py:550
  842. msgid "Entity"
  843. msgstr ""
  844. #: apps/catalogue/abstract_models.py:560
  845. msgid "Code must match ^[a-zA-Z_][0-9a-zA-Z_]*$"
  846. msgstr ""
  847. #: apps/catalogue/abstract_models.py:561 apps/catalogue/abstract_models.py:745
  848. #: apps/offer/models.py:43 apps/offer/models.py:187 apps/offer/models.py:261
  849. #: apps/order/abstract_models.py:453 apps/payment/models.py:20
  850. #: templates/oscar/dashboard/orders/order_detail.html:431
  851. #: templates/oscar/dashboard/promotions/page_detail.html:40
  852. #: templates/oscar/dashboard/promotions/promotion_list.html:40
  853. msgid "Type"
  854. msgstr "タイプ"
  855. #: apps/catalogue/abstract_models.py:563
  856. msgid "Option Group"
  857. msgstr ""
  858. #: apps/catalogue/abstract_models.py:563
  859. msgid "Select an option group if using type \"Option\""
  860. msgstr ""
  861. #: apps/catalogue/abstract_models.py:565
  862. msgid "Entity Type"
  863. msgstr ""
  864. #: apps/catalogue/abstract_models.py:565
  865. msgid "Select an entity type if using type \"Entity\""
  866. msgstr ""
  867. #: apps/catalogue/abstract_models.py:566
  868. msgid "Required"
  869. msgstr ""
  870. #: apps/catalogue/abstract_models.py:571
  871. msgid "Product Attribute"
  872. msgstr ""
  873. #: apps/catalogue/abstract_models.py:572
  874. #: templates/oscar/dashboard/catalogue/product_update.html:69
  875. msgid "Product Attributes"
  876. msgstr ""
  877. #: apps/catalogue/abstract_models.py:576
  878. msgid "Must be str or unicode"
  879. msgstr ""
  880. #: apps/catalogue/abstract_models.py:582
  881. msgid "Must be a float"
  882. msgstr ""
  883. #: apps/catalogue/abstract_models.py:588
  884. msgid "Must be an integer"
  885. msgstr ""
  886. #: apps/catalogue/abstract_models.py:592
  887. msgid "Must be a date or datetime"
  888. msgstr ""
  889. #: apps/catalogue/abstract_models.py:596
  890. msgid "Must be a boolean"
  891. msgstr ""
  892. #: apps/catalogue/abstract_models.py:600
  893. msgid "Must be an AttributeEntity model object instance"
  894. msgstr ""
  895. #: apps/catalogue/abstract_models.py:602
  896. msgid "Model has not been saved yet"
  897. msgstr ""
  898. #: apps/catalogue/abstract_models.py:604
  899. #, python-format
  900. msgid "Entity must be of type %s"
  901. msgstr ""
  902. #: apps/catalogue/abstract_models.py:608
  903. msgid "Must be an AttributeOption model object instance"
  904. msgstr ""
  905. #: apps/catalogue/abstract_models.py:610
  906. msgid "AttributeOption has not been saved yet"
  907. msgstr ""
  908. #: apps/catalogue/abstract_models.py:613
  909. #, python-format
  910. msgid "%(enum)s is not a valid choice for %(attr)s"
  911. msgstr ""
  912. #: apps/catalogue/abstract_models.py:672
  913. msgid "Attribute"
  914. msgstr ""
  915. #: apps/catalogue/abstract_models.py:676
  916. msgid "Boolean"
  917. msgstr ""
  918. #: apps/catalogue/abstract_models.py:678
  919. msgid "Richtext"
  920. msgstr ""
  921. #: apps/catalogue/abstract_models.py:681
  922. msgid "Value Option"
  923. msgstr ""
  924. #: apps/catalogue/abstract_models.py:683
  925. msgid "Value Entity"
  926. msgstr ""
  927. #: apps/catalogue/abstract_models.py:698
  928. msgid "Product Attribute Value"
  929. msgstr ""
  930. #: apps/catalogue/abstract_models.py:699
  931. msgid "Product Attribut Values"
  932. msgstr ""
  933. #: apps/catalogue/abstract_models.py:718
  934. msgid "Attribute Option Group"
  935. msgstr ""
  936. #: apps/catalogue/abstract_models.py:719
  937. msgid "Attribute Option Groups"
  938. msgstr ""
  939. #: apps/catalogue/abstract_models.py:727
  940. msgid "Group"
  941. msgstr ""
  942. #: apps/catalogue/abstract_models.py:735
  943. msgid "Attribute Option"
  944. msgstr ""
  945. #: apps/catalogue/abstract_models.py:736
  946. msgid "Attribute Options"
  947. msgstr ""
  948. #: apps/catalogue/abstract_models.py:752
  949. msgid "Attribute Entity"
  950. msgstr ""
  951. #: apps/catalogue/abstract_models.py:753
  952. msgid "Attribute Entities"
  953. msgstr ""
  954. #: apps/catalogue/abstract_models.py:773
  955. msgid "Attribute Entity Type"
  956. msgstr ""
  957. #: apps/catalogue/abstract_models.py:774
  958. msgid "Attribute Entity Types"
  959. msgstr ""
  960. #: apps/catalogue/abstract_models.py:799
  961. msgid "Required - a value for this option must be specified"
  962. msgstr ""
  963. #: apps/catalogue/abstract_models.py:800
  964. msgid "Optional - a value for this option can be omitted"
  965. msgstr ""
  966. #: apps/catalogue/abstract_models.py:834
  967. msgid "Original"
  968. msgstr ""
  969. #: apps/catalogue/abstract_models.py:835
  970. msgid "Caption"
  971. msgstr ""
  972. #: apps/catalogue/abstract_models.py:838 apps/promotions/models.py:27
  973. #: apps/promotions/models.py:263 apps/promotions/models.py:304
  974. msgid "Display Order"
  975. msgstr ""
  976. #: apps/catalogue/abstract_models.py:839
  977. msgid ""
  978. "An image with a display order of\n"
  979. " zero will be the primary image for a product"
  980. msgstr ""
  981. #: apps/catalogue/abstract_models.py:847
  982. msgid "Product Image"
  983. msgstr ""
  984. #: apps/catalogue/abstract_models.py:848
  985. msgid "Product Images"
  986. msgstr ""
  987. #: apps/catalogue/utils.py:52
  988. #, python-format
  989. msgid "%(filename)s is not a valid image (%(error)s)"
  990. msgstr ""
  991. #: apps/catalogue/utils.py:61
  992. #, python-format
  993. msgid "%s is not a valid image archive"
  994. msgstr ""
  995. #: apps/catalogue/views.py:153 templates/oscar/catalogue/browse.html:21
  996. msgid "All products"
  997. msgstr "全カテゴリ"
  998. #: apps/catalogue/views.py:155
  999. #, python-format
  1000. msgid "Products matching '%(query)s'"
  1001. msgstr ""
  1002. #: apps/catalogue/reviews/abstract_models.py:32
  1003. msgid "Review title"
  1004. msgstr ""
  1005. #: apps/catalogue/reviews/abstract_models.py:33
  1006. #: templates/oscar/customer/email.html:48
  1007. #: templates/oscar/dashboard/users/detail.html:163
  1008. msgid "Body"
  1009. msgstr ""
  1010. #: apps/catalogue/reviews/abstract_models.py:39
  1011. #: apps/dashboard/pages/forms.py:23 apps/dashboard/promotions/forms.py:39
  1012. #: models/fields.py:18 templates/oscar/dashboard/pages/index.html:51
  1013. #: templates/oscar/dashboard/promotions/pagepromotion_list.html:44
  1014. msgid "URL"
  1015. msgstr "URL"
  1016. #: apps/catalogue/reviews/abstract_models.py:43
  1017. msgid "Requires moderation"
  1018. msgstr ""
  1019. #: apps/catalogue/reviews/abstract_models.py:44
  1020. #: apps/dashboard/reviews/forms.py:10
  1021. msgid "Approved"
  1022. msgstr ""
  1023. #: apps/catalogue/reviews/abstract_models.py:45
  1024. #: apps/dashboard/reviews/forms.py:11
  1025. msgid "Rejected"
  1026. msgstr ""
  1027. #: apps/catalogue/reviews/abstract_models.py:51
  1028. msgid "Total Votes"
  1029. msgstr ""
  1030. #: apps/catalogue/reviews/abstract_models.py:52
  1031. msgid "Delta Votes"
  1032. msgstr ""
  1033. #: apps/catalogue/reviews/abstract_models.py:64
  1034. msgid "Product Review"
  1035. msgstr ""
  1036. #: apps/catalogue/reviews/abstract_models.py:65
  1037. msgid "Product Reviews"
  1038. msgstr ""
  1039. #: apps/catalogue/reviews/abstract_models.py:79
  1040. msgid "Anonymous review must have a name and an email"
  1041. msgstr ""
  1042. #: apps/catalogue/reviews/abstract_models.py:81
  1043. msgid "Reviews must have a title"
  1044. msgstr ""
  1045. #: apps/catalogue/reviews/abstract_models.py:83
  1046. msgid "Reviews must have a score"
  1047. msgstr ""
  1048. #: apps/catalogue/reviews/abstract_models.py:122
  1049. msgid "Up"
  1050. msgstr ""
  1051. #: apps/catalogue/reviews/abstract_models.py:123
  1052. msgid "Down"
  1053. msgstr ""
  1054. #: apps/catalogue/reviews/abstract_models.py:125
  1055. msgid "Delta"
  1056. msgstr ""
  1057. #: apps/catalogue/reviews/abstract_models.py:132
  1058. msgid "Vote"
  1059. msgstr ""
  1060. #: apps/catalogue/reviews/abstract_models.py:133
  1061. #: templates/oscar/dashboard/reviews/review_list.html:45
  1062. msgid "Votes"
  1063. msgstr ""
  1064. #: apps/catalogue/reviews/forms.py:11 apps/catalogue/reviews/forms.py:20
  1065. #: apps/catalogue/reviews/forms.py:37 apps/dashboard/catalogue/forms.py:202
  1066. msgid "This field is required"
  1067. msgstr ""
  1068. #: apps/catalogue/reviews/forms.py:14
  1069. #, python-format
  1070. msgid "Please enter a short title (with %d fewer characters)"
  1071. msgstr ""
  1072. #: apps/catalogue/reviews/forms.py:50
  1073. msgid "You cannot vote on your own reviews!"
  1074. msgstr ""
  1075. #: apps/catalogue/reviews/views.py:27
  1076. msgid "You have already reviewed this product!"
  1077. msgstr ""
  1078. #: apps/catalogue/reviews/views.py:55
  1079. msgid "Thank you for reviewing this product"
  1080. msgstr ""
  1081. #: apps/catalogue/reviews/views.py:90
  1082. msgid "You cannot vote on your own reviews"
  1083. msgstr ""
  1084. #: apps/catalogue/reviews/views.py:98
  1085. msgid "You have already voted on this review"
  1086. msgstr ""
  1087. #: apps/catalogue/reviews/views.py:104
  1088. msgid "Thanks for voting!"
  1089. msgstr ""
  1090. #: apps/catalogue/reviews/views.py:106
  1091. msgid "We couldn't process your vote"
  1092. msgstr ""
  1093. #: apps/checkout/decorators.py:21
  1094. msgid "You must complete this step of the checkout first"
  1095. msgstr ""
  1096. #: apps/checkout/decorators.py:35
  1097. msgid "You must add some products to your basket before checking out"
  1098. msgstr ""
  1099. #: apps/checkout/forms.py:23
  1100. msgid "My email address is"
  1101. msgstr ""
  1102. #: apps/checkout/forms.py:25
  1103. msgid "No, I am a new customer"
  1104. msgstr ""
  1105. #: apps/checkout/forms.py:26
  1106. msgid "Yes, I have a password"
  1107. msgstr ""
  1108. #: apps/checkout/views.py:108 apps/checkout/views.py:249
  1109. #: apps/checkout/views.py:330 apps/checkout/views.py:376
  1110. msgid "You need to add some items to your basket to checkout"
  1111. msgstr ""
  1112. #: apps/checkout/views.py:113
  1113. msgid "Please either sign in or enter your email address"
  1114. msgstr ""
  1115. #: apps/checkout/views.py:119
  1116. msgid "Your basket does not require a shipping address to be submitted"
  1117. msgstr ""
  1118. #: apps/checkout/views.py:150
  1119. msgid "Address deleted from your address book"
  1120. msgstr ""
  1121. #: apps/checkout/views.py:188 apps/checkout/views.py:209
  1122. #: apps/customer/views.py:518 apps/customer/views.py:536
  1123. msgid "Address saved"
  1124. msgstr ""
  1125. #: apps/checkout/views.py:223
  1126. msgid "Address deleted"
  1127. msgstr ""
  1128. #: apps/checkout/views.py:259 apps/checkout/views.py:337
  1129. #: apps/checkout/views.py:382
  1130. msgid "Please choose a shipping address"
  1131. msgstr ""
  1132. #: apps/checkout/views.py:267
  1133. msgid ""
  1134. "Shipping is not available for your chosen address - please choose another"
  1135. msgstr ""
  1136. #: apps/checkout/views.py:302
  1137. msgid "Your submitted shipping method is not permitted"
  1138. msgstr ""
  1139. #: apps/checkout/views.py:342 apps/checkout/views.py:386
  1140. msgid "Please choose a shipping method"
  1141. msgstr ""
  1142. #: apps/checkout/views.py:477
  1143. msgid "This order cannot be submitted as the basket is empty"
  1144. msgstr ""
  1145. #: apps/checkout/views.py:506
  1146. msgid ""
  1147. "A problem occurred while processing payment for this order. No payment has "
  1148. "been taken. Please try again contact customer services if this problem "
  1149. "persists"
  1150. msgstr ""
  1151. #: apps/checkout/views.py:620
  1152. msgid "No order found"
  1153. msgstr ""
  1154. #: apps/customer/abstract_models.py:21 templates/oscar/customer/email.html:44
  1155. #: templates/oscar/customer/email_list.html:33
  1156. #: templates/oscar/customer/profile.html:162
  1157. msgid "Subject"
  1158. msgstr "タイトル"
  1159. #: apps/customer/abstract_models.py:22
  1160. msgid "Body Text"
  1161. msgstr ""
  1162. #: apps/customer/abstract_models.py:23
  1163. msgid "Body HTML"
  1164. msgstr ""
  1165. #: apps/customer/abstract_models.py:24
  1166. msgid "Date Sent"
  1167. msgstr "送信日"
  1168. #: apps/customer/abstract_models.py:29
  1169. #: templates/oscar/dashboard/orders/order_detail.html:94
  1170. #: templates/oscar/dashboard/orders/order_detail.html:414
  1171. msgid "Emails"
  1172. msgstr ""
  1173. #: apps/customer/abstract_models.py:32
  1174. #, python-format
  1175. msgid "Email to %(user)s with subject '%(subject)s'"
  1176. msgstr ""
  1177. #: apps/customer/abstract_models.py:46
  1178. msgid "Order related"
  1179. msgstr ""
  1180. #: apps/customer/abstract_models.py:47
  1181. msgid "User related"
  1182. msgstr ""
  1183. #: apps/customer/abstract_models.py:51
  1184. msgid "Email Subject Template"
  1185. msgstr ""
  1186. #: apps/customer/abstract_models.py:52
  1187. msgid "Email Body Template"
  1188. msgstr ""
  1189. #: apps/customer/abstract_models.py:53
  1190. msgid "Email Body HTML Temlate"
  1191. msgstr ""
  1192. #: apps/customer/abstract_models.py:54
  1193. msgid "HTML template"
  1194. msgstr ""
  1195. #: apps/customer/abstract_models.py:57
  1196. msgid "SMS Template"
  1197. msgstr ""
  1198. #: apps/customer/abstract_models.py:57
  1199. msgid "SMS template"
  1200. msgstr ""
  1201. #: apps/customer/abstract_models.py:72
  1202. msgid "Communication Event Type"
  1203. msgstr ""
  1204. #: apps/customer/abstract_models.py:73
  1205. msgid "Communication Event Types"
  1206. msgstr ""
  1207. #: apps/customer/abstract_models.py:181
  1208. msgid "Key"
  1209. msgstr ""
  1210. #: apps/customer/abstract_models.py:192
  1211. msgid "Not yet confirmed"
  1212. msgstr ""
  1213. #: apps/customer/abstract_models.py:193
  1214. #: templates/oscar/dashboard/index.html:146
  1215. #: templates/oscar/dashboard/index.html:150
  1216. #: templates/oscar/dashboard/offers/offer_list.html:59
  1217. #: templates/oscar/dashboard/users/index.html:48
  1218. msgid "Active"
  1219. msgstr ""
  1220. #: apps/customer/abstract_models.py:194
  1221. msgid "Cancelled"
  1222. msgstr ""
  1223. #: apps/customer/abstract_models.py:195 apps/partner/abstract_models.py:265
  1224. #: templates/oscar/dashboard/index.html:136
  1225. #: templates/oscar/dashboard/catalogue/stockalert_list.html:31
  1226. msgid "Closed"
  1227. msgstr ""
  1228. #: apps/customer/abstract_models.py:201
  1229. #: templates/oscar/dashboard/users/alerts/partials/alert.html:28
  1230. msgid "Date confirmed"
  1231. msgstr ""
  1232. #: apps/customer/abstract_models.py:203
  1233. #: templates/oscar/dashboard/users/alerts/partials/alert.html:34
  1234. msgid "Date cancelled"
  1235. msgstr ""
  1236. #: apps/customer/abstract_models.py:205
  1237. msgid "Date closed"
  1238. msgstr ""
  1239. #: apps/customer/forms.py:87 apps/customer/forms.py:146
  1240. msgid "Email Address"
  1241. msgstr ""
  1242. #: apps/customer/forms.py:128
  1243. msgid "Please choose a less common password"
  1244. msgstr ""
  1245. #: apps/customer/forms.py:147
  1246. msgid "Password"
  1247. msgstr ""
  1248. #: apps/customer/forms.py:150
  1249. msgid "Confirm Password"
  1250. msgstr ""
  1251. #: apps/customer/forms.py:162
  1252. msgid "A user with that email address already exists."
  1253. msgstr ""
  1254. #: apps/customer/forms.py:169
  1255. msgid "The two password fields didn't match."
  1256. msgstr ""
  1257. #: apps/customer/forms.py:188
  1258. msgid "At least one date field is required."
  1259. msgstr ""
  1260. #: apps/customer/forms.py:235
  1261. msgid "A user with this email address already exists"
  1262. msgstr ""
  1263. #: apps/customer/forms.py:263 templates/oscar/customer/profile.html:53
  1264. #: templates/oscar/dashboard/orders/order_detail.html:45
  1265. msgid "Email address"
  1266. msgstr ""
  1267. #: apps/customer/forms.py:309
  1268. msgid "Send notification to"
  1269. msgstr ""
  1270. #: apps/customer/forms.py:311
  1271. msgid "Enter your email"
  1272. msgstr ""
  1273. #: apps/customer/forms.py:345
  1274. #, python-format
  1275. msgid "There is already an active stock alert for %s"
  1276. msgstr ""
  1277. #: apps/customer/forms.py:355
  1278. msgid "You already have an active alert for this product"
  1279. msgstr ""
  1280. #: apps/customer/profile.py:14
  1281. msgid "Can't import profile model"
  1282. msgstr ""
  1283. #: apps/customer/views.py:125
  1284. msgid "No alert found"
  1285. msgstr ""
  1286. #: apps/customer/views.py:128
  1287. msgid "Alert cancelled"
  1288. msgstr ""
  1289. #: apps/customer/views.py:384
  1290. #, python-format
  1291. msgid "'%s' unavailable for re-order"
  1292. msgstr ""
  1293. #: apps/customer/views.py:427
  1294. #, python-format
  1295. msgid "All available lines from order %s have been added to your basket"
  1296. msgstr ""
  1297. #: apps/customer/views.py:452
  1298. msgid "This product is no longer available for re-order"
  1299. msgstr ""
  1300. #: apps/customer/views.py:482
  1301. #, python-format
  1302. msgid "%(qty)d copies of '%(product)s' have been added to your basket"
  1303. msgstr ""
  1304. #: apps/customer/views.py:485
  1305. #, python-format
  1306. msgid "'%s' has been added to your basket"
  1307. msgstr "'%s' カートに追加されました"
  1308. #: apps/customer/views.py:508
  1309. msgid "Add a new address"
  1310. msgstr ""
  1311. #: apps/customer/views.py:529
  1312. msgid "Edit address"
  1313. msgstr ""
  1314. #: apps/customer/views.py:575
  1315. msgid "Password updated"
  1316. msgstr ""
  1317. #: apps/customer/alerts/views.py:53
  1318. msgid "An alert has been created"
  1319. msgstr ""
  1320. #: apps/customer/alerts/views.py:55
  1321. #, python-format
  1322. msgid "An email has been sent to %s for confirmation"
  1323. msgstr ""
  1324. #: apps/customer/alerts/views.py:78
  1325. msgid "Your stock alert is now active"
  1326. msgstr ""
  1327. #: apps/customer/alerts/views.py:80
  1328. msgid "Your stock alert cannot be confirmed"
  1329. msgstr ""
  1330. #: apps/customer/alerts/views.py:88
  1331. msgid "Your stock alert has been cancelled"
  1332. msgstr ""
  1333. #: apps/customer/alerts/views.py:90
  1334. msgid "Your stock alert cannot be cancelled"
  1335. msgstr ""
  1336. #: apps/customer/notifications/views.py:28
  1337. msgid "Notifications inbox"
  1338. msgstr ""
  1339. #: apps/customer/notifications/views.py:47
  1340. msgid "Archived notifications"
  1341. msgstr ""
  1342. #: apps/customer/notifications/views.py:84
  1343. #, python-format
  1344. msgid "%(count)d notification archived"
  1345. msgid_plural "%(count)d notifications archived"
  1346. msgstr[0] ""
  1347. msgstr[1] ""
  1348. #: apps/customer/notifications/views.py:94
  1349. #, python-format
  1350. msgid "%(count)d notification deleted"
  1351. msgid_plural "%(count)d notifications deleted"
  1352. msgstr[0] ""
  1353. msgstr[1] ""
  1354. #: apps/dashboard/catalogue/app.py:9
  1355. #: templates/oscar/dashboard/catalogue/product_update.html:18
  1356. msgid "Catalogue"
  1357. msgstr ""
  1358. #: apps/dashboard/catalogue/app.py:12
  1359. #: templates/oscar/dashboard/catalogue/stockalert_list.html:8
  1360. #: templates/oscar/dashboard/catalogue/stockalert_list.html:17
  1361. msgid "Stock alerts"
  1362. msgstr ""
  1363. #: apps/dashboard/catalogue/forms.py:30
  1364. msgid "Category with the given path already exists."
  1365. msgstr ""
  1366. #: apps/dashboard/catalogue/forms.py:71 apps/order/abstract_models.py:278
  1367. #: apps/partner/abstract_models.py:71
  1368. #: templates/oscar/dashboard/catalogue/product_list.html:60
  1369. #: templates/oscar/dashboard/catalogue/product_update.html:136
  1370. #: templates/oscar/dashboard/catalogue/stockalert_list.html:42
  1371. #: templates/oscar/dashboard/orders/line_detail.html:62
  1372. #: templates/oscar/dashboard/ranges/range_product_list.html:84
  1373. msgid "Partner"
  1374. msgstr "在庫管理者"
  1375. #: apps/dashboard/catalogue/forms.py:73 apps/dashboard/orders/forms.py:62
  1376. #: apps/order/abstract_models.py:280 apps/partner/abstract_models.py:75
  1377. #: templates/oscar/dashboard/catalogue/product_list.html:61
  1378. #: templates/oscar/dashboard/orders/line_detail.html:65
  1379. #: templates/oscar/dashboard/ranges/range_product_list.html:85
  1380. msgid "Partner SKU"
  1381. msgstr "ISBN(SKU)"
  1382. #: apps/dashboard/catalogue/forms.py:204
  1383. msgid "Parent products must have a title"
  1384. msgstr ""
  1385. #: apps/dashboard/catalogue/forms.py:226
  1386. msgid "A top-level product must have at least one category"
  1387. msgstr "カテゴリを選択してください"
  1388. #: apps/dashboard/catalogue/forms.py:229
  1389. msgid "A variant product should not have categories"
  1390. msgstr ""
  1391. #: apps/dashboard/catalogue/views.py:29
  1392. #, python-format
  1393. msgid "Products %(upc_filter)s %(title_filter)s"
  1394. msgstr ""
  1395. #: apps/dashboard/catalogue/views.py:57 apps/dashboard/orders/views.py:153
  1396. #, python-format
  1397. msgid " including an item with UPC '%s'"
  1398. msgstr ""
  1399. #: apps/dashboard/catalogue/views.py:61 apps/dashboard/orders/views.py:149
  1400. #, python-format
  1401. msgid " including an item with title matching '%s'"
  1402. msgstr ""
  1403. #: apps/dashboard/catalogue/views.py:72 apps/dashboard/catalogue/views.py:77
  1404. msgid "Please choose a product class"
  1405. msgstr ""
  1406. #: apps/dashboard/catalogue/views.py:99
  1407. #, python-format
  1408. msgid "Create new %s product"
  1409. msgstr "新規追加: %s"
  1410. #: apps/dashboard/catalogue/views.py:126 apps/dashboard/catalogue/views.py:163
  1411. msgid "Your submitted data was not valid - please correct the below errors"
  1412. msgstr "エラーがありました。下記のエラーを修正して再度登録してください。"
  1413. #: apps/dashboard/catalogue/views.py:175
  1414. #, python-format
  1415. msgid "Created product '%s'"
  1416. msgstr "'%s'が登録されました"
  1417. #: apps/dashboard/catalogue/views.py:193
  1418. #: templates/oscar/dashboard/catalogue/product_update.html:8
  1419. msgid "Update product"
  1420. msgstr ""
  1421. #: apps/dashboard/catalogue/views.py:270
  1422. #, python-format
  1423. msgid "Updated product '%s'"
  1424. msgstr "'%s'の更新が完了しました"
  1425. #: apps/dashboard/catalogue/views.py:292
  1426. #, python-format
  1427. msgid "Alerts with status \"%s\""
  1428. msgstr ""
  1429. #: apps/dashboard/catalogue/views.py:295
  1430. msgid "All alerts"
  1431. msgstr "全アラート"
  1432. #: apps/dashboard/offers/app.py:9 apps/voucher/abstract_models.py:26
  1433. #: templates/oscar/dashboard/index.html:146
  1434. #: templates/oscar/dashboard/offers/offer_delete.html:16
  1435. #: templates/oscar/dashboard/offers/offer_detail.html:18
  1436. #: templates/oscar/dashboard/offers/step_form.html:19
  1437. #: templates/oscar/offer/detail.html:15
  1438. msgid "Offers"
  1439. msgstr ""
  1440. #: apps/dashboard/offers/forms.py:13 apps/dashboard/vouchers/forms.py:17
  1441. #: templates/oscar/dashboard/offers/offer_delete.html:37
  1442. #: templates/oscar/dashboard/offers/offer_detail.html:32
  1443. #: templates/oscar/dashboard/offers/offer_list.html:49
  1444. #: templates/oscar/dashboard/offers/preview.html:9
  1445. #: templates/oscar/dashboard/vouchers/voucher_delete.html:36
  1446. #: templates/oscar/dashboard/vouchers/voucher_detail.html:36
  1447. msgid "Start date"
  1448. msgstr ""
  1449. #: apps/dashboard/offers/forms.py:15 apps/dashboard/vouchers/forms.py:18
  1450. #: templates/oscar/dashboard/offers/offer_delete.html:38
  1451. #: templates/oscar/dashboard/offers/offer_detail.html:33
  1452. #: templates/oscar/dashboard/offers/offer_list.html:50
  1453. #: templates/oscar/dashboard/offers/preview.html:10
  1454. #: templates/oscar/dashboard/vouchers/voucher_delete.html:37
  1455. #: templates/oscar/dashboard/vouchers/voucher_detail.html:37
  1456. msgid "End date"
  1457. msgstr ""
  1458. #: apps/dashboard/offers/forms.py:40 apps/order/abstract_models.py:673
  1459. #: templates/oscar/dashboard/offers/offer_list.html:47
  1460. #: templates/oscar/dashboard/orders/order_detail.html:390
  1461. msgid "Offer name"
  1462. msgstr ""
  1463. #: apps/dashboard/offers/forms.py:41
  1464. #: templates/oscar/dashboard/vouchers/voucher_list.html:52
  1465. msgid "Is active?"
  1466. msgstr ""
  1467. #: apps/dashboard/offers/views.py:34
  1468. msgid "All offers"
  1469. msgstr ""
  1470. #: apps/dashboard/offers/views.py:44
  1471. #, python-format
  1472. msgid "Offers matching '%s'"
  1473. msgstr ""
  1474. #: apps/dashboard/offers/views.py:73 apps/dashboard/offers/views.py:81
  1475. #, python-format
  1476. msgid "%s step not complete"
  1477. msgstr ""
  1478. #: apps/dashboard/offers/views.py:152
  1479. #, python-format
  1480. msgid "Edit %(step_name)s for offer #%(offer_id)d"
  1481. msgstr ""
  1482. #: apps/dashboard/offers/views.py:156
  1483. #, python-format
  1484. msgid "Create new offer: %s"
  1485. msgstr ""
  1486. #: apps/dashboard/offers/views.py:242
  1487. #, python-format
  1488. msgid "Offer '%s' updated"
  1489. msgstr ""
  1490. #: apps/dashboard/offers/views.py:244
  1491. #, python-format
  1492. msgid "Offer '%s' created!"
  1493. msgstr ""
  1494. #: apps/dashboard/offers/views.py:251
  1495. #, python-format
  1496. msgid "Preview offer #%d"
  1497. msgstr ""
  1498. #: apps/dashboard/offers/views.py:252
  1499. msgid "Preview offer"
  1500. msgstr ""
  1501. #: apps/dashboard/offers/views.py:264
  1502. msgid "Offer deleted!"
  1503. msgstr ""
  1504. #: apps/dashboard/offers/views.py:290 apps/dashboard/ranges/views.py:37
  1505. msgid "Range created"
  1506. msgstr ""
  1507. #: apps/dashboard/offers/views.py:299 apps/dashboard/ranges/views.py:55
  1508. msgid "Range updated"
  1509. msgstr ""
  1510. #: apps/dashboard/offers/views.py:309 apps/dashboard/ranges/views.py:70
  1511. msgid "Range deleted"
  1512. msgstr ""
  1513. #: apps/dashboard/orders/app.py:11
  1514. #: templates/oscar/dashboard/orders/statistics.html:21
  1515. msgid "Statistics"
  1516. msgstr "解析"
  1517. #: apps/dashboard/orders/forms.py:14
  1518. #: templates/oscar/promotions/singleproduct.html:24
  1519. msgid "From"
  1520. msgstr "始期"
  1521. #: apps/dashboard/orders/forms.py:15
  1522. msgid "To"
  1523. msgstr "終期"
  1524. #: apps/dashboard/orders/forms.py:21 apps/dashboard/orders/forms.py:44
  1525. #: apps/dashboard/orders/views.py:98
  1526. msgid "All orders"
  1527. msgstr "全注文"
  1528. #: apps/dashboard/orders/forms.py:33
  1529. #, python-format
  1530. msgid "Orders placed between %(date_from)s and %(date_to)s"
  1531. msgstr ""
  1532. #: apps/dashboard/orders/forms.py:38
  1533. #, python-format
  1534. msgid "Orders placed since %s"
  1535. msgstr ""
  1536. #: apps/dashboard/orders/forms.py:41
  1537. #, python-format
  1538. msgid "Orders placed until %s"
  1539. msgstr ""
  1540. #: apps/dashboard/orders/forms.py:58 apps/dashboard/orders/views.py:226
  1541. #: apps/order/abstract_models.py:21 apps/order/reports.py:19
  1542. #: templates/oscar/customer/order_list.html:42
  1543. #: templates/oscar/customer/profile.html:87
  1544. #: templates/oscar/dashboard/offers/offer_detail.html:51
  1545. #: templates/oscar/dashboard/reports/partials/order_report.html:9
  1546. #: templates/oscar/dashboard/vouchers/voucher_detail.html:58
  1547. msgid "Order number"
  1548. msgstr "注文番号"
  1549. #: apps/dashboard/orders/forms.py:59 apps/dashboard/reviews/forms.py:29
  1550. msgid "Customer name"
  1551. msgstr ""
  1552. #: apps/dashboard/orders/forms.py:60
  1553. msgid "Product name"
  1554. msgstr ""
  1555. #: apps/dashboard/orders/forms.py:67 apps/dashboard/reports/forms.py:18
  1556. #: apps/dashboard/reviews/forms.py:27
  1557. msgid "Date from"
  1558. msgstr "始期"
  1559. #: apps/dashboard/orders/forms.py:68 apps/dashboard/reports/forms.py:19
  1560. msgid "Date to"
  1561. msgstr "終期"
  1562. #: apps/dashboard/orders/forms.py:70 apps/voucher/reports.py:21
  1563. #: templates/oscar/basket/basket.html:98
  1564. #: templates/oscar/dashboard/orders/order_detail.html:389
  1565. #: templates/oscar/dashboard/reports/partials/voucher_report.html:9
  1566. msgid "Voucher code"
  1567. msgstr ""
  1568. #: apps/dashboard/orders/forms.py:73
  1569. msgid "Payment method"
  1570. msgstr ""
  1571. #: apps/dashboard/orders/forms.py:76 apps/promotions/models.py:146
  1572. msgid "HTML"
  1573. msgstr ""
  1574. #: apps/dashboard/orders/forms.py:77
  1575. msgid "CSV"
  1576. msgstr ""
  1577. #: apps/dashboard/orders/forms.py:79
  1578. msgid "Get results as"
  1579. msgstr ""
  1580. #: apps/dashboard/orders/views.py:72
  1581. #, python-format
  1582. msgid ""
  1583. "%(main_filter)s %(name_filter)s %(title_filter)s%(upc_filter)s "
  1584. "%(sku_filter)s %(date_filter)s%(voucher_filter)s %(payment_filter)s "
  1585. "%(status_filter)s"
  1586. msgstr ""
  1587. #: apps/dashboard/orders/views.py:114
  1588. msgid "Orders without an order status"
  1589. msgstr ""
  1590. #: apps/dashboard/orders/views.py:117
  1591. #, python-format
  1592. msgid "Orders with status '%s'"
  1593. msgstr ""
  1594. #: apps/dashboard/orders/views.py:134
  1595. #, python-format
  1596. msgid "Orders with number starting with \"%s\""
  1597. msgstr ""
  1598. #: apps/dashboard/orders/views.py:145 apps/dashboard/reviews/views.py:117
  1599. #: apps/dashboard/users/views.py:131
  1600. #, python-format
  1601. msgid " with customer name matching '%s'"
  1602. msgstr ""
  1603. #: apps/dashboard/orders/views.py:157
  1604. #, python-format
  1605. msgid " including an item with ID '%s'"
  1606. msgstr ""
  1607. #: apps/dashboard/orders/views.py:163
  1608. #, python-format
  1609. msgid " placed between %(start_date)s and %(end_date)s"
  1610. msgstr ""
  1611. #: apps/dashboard/orders/views.py:168
  1612. #, python-format
  1613. msgid " placed since %s"
  1614. msgstr ""
  1615. #: apps/dashboard/orders/views.py:172
  1616. #, python-format
  1617. msgid " placed before %s"
  1618. msgstr ""
  1619. #: apps/dashboard/orders/views.py:176
  1620. #, python-format
  1621. msgid " using voucher '%s'"
  1622. msgstr ""
  1623. #: apps/dashboard/orders/views.py:180
  1624. #, python-format
  1625. msgid " paid for by %s"
  1626. msgstr ""
  1627. #: apps/dashboard/orders/views.py:184
  1628. #, python-format
  1629. msgid " with status %s"
  1630. msgstr ""
  1631. #: apps/dashboard/orders/views.py:227
  1632. msgid "Order value"
  1633. msgstr ""
  1634. #: apps/dashboard/orders/views.py:228
  1635. #: templates/oscar/dashboard/orders/order_detail.html:63
  1636. #: templates/oscar/dashboard/orders/order_list.html:100
  1637. msgid "Date of purchase"
  1638. msgstr ""
  1639. #: apps/dashboard/orders/views.py:229
  1640. #: templates/oscar/dashboard/orders/order_list.html:101
  1641. msgid "Number of items"
  1642. msgstr ""
  1643. #: apps/dashboard/orders/views.py:230
  1644. msgid "Order status"
  1645. msgstr ""
  1646. #: apps/dashboard/orders/views.py:231
  1647. msgid "Customer email address"
  1648. msgstr ""
  1649. #: apps/dashboard/orders/views.py:232
  1650. msgid "Deliver to name"
  1651. msgstr ""
  1652. #: apps/dashboard/orders/views.py:233
  1653. msgid "Bill to name"
  1654. msgstr ""
  1655. #: apps/dashboard/orders/views.py:303 views/generic.py:66
  1656. msgid "Invalid action"
  1657. msgstr ""
  1658. #: apps/dashboard/orders/views.py:319
  1659. msgid "You must select some lines to act on"
  1660. msgstr ""
  1661. #: apps/dashboard/orders/views.py:323
  1662. msgid "No valid action submitted"
  1663. msgstr ""
  1664. #: apps/dashboard/orders/views.py:334
  1665. msgid "Note saved"
  1666. msgstr ""
  1667. #: apps/dashboard/orders/views.py:349
  1668. msgid "Note cannot be deleted"
  1669. msgstr ""
  1670. #: apps/dashboard/orders/views.py:351
  1671. msgid "Note deleted"
  1672. msgstr ""
  1673. #: apps/dashboard/orders/views.py:358 apps/dashboard/orders/views.py:381
  1674. #, python-format
  1675. msgid "The new status '%s' is not valid"
  1676. msgstr ""
  1677. #: apps/dashboard/orders/views.py:361
  1678. #, python-format
  1679. msgid "The new status '%s' is not valid for this order"
  1680. msgstr ""
  1681. #: apps/dashboard/orders/views.py:368 apps/dashboard/orders/views.py:451
  1682. #, python-format
  1683. msgid "Unable to change order status due to payment error: %s"
  1684. msgstr ""
  1685. #: apps/dashboard/orders/views.py:370
  1686. #, python-format
  1687. msgid "Order status changed from '%(old_status)s' to '%(new_status)s'"
  1688. msgstr ""
  1689. #: apps/dashboard/orders/views.py:386
  1690. #, python-format
  1691. msgid "'%(status)s' is not a valid new status for line %(line_id)d"
  1692. msgstr ""
  1693. #: apps/dashboard/orders/views.py:395
  1694. #, python-format
  1695. msgid ""
  1696. "Status of line #%(line_id)d changed from '%(old_status)s' to "
  1697. "'%(new_status)s'"
  1698. msgstr ""
  1699. #: apps/dashboard/orders/views.py:412 apps/dashboard/orders/views.py:445
  1700. #, python-format
  1701. msgid "The event type '%s' is not valid"
  1702. msgstr ""
  1703. #: apps/dashboard/orders/views.py:421 apps/dashboard/orders/views.py:423
  1704. #, python-format
  1705. msgid "Unable to create shipping event: %s"
  1706. msgstr ""
  1707. #: apps/dashboard/orders/views.py:425
  1708. #, python-format
  1709. msgid "Unable to create shipping event due to payment error: %s"
  1710. msgstr ""
  1711. #: apps/dashboard/orders/views.py:427
  1712. msgid "Shipping event created"
  1713. msgstr ""
  1714. #: apps/dashboard/orders/views.py:435 apps/dashboard/orders/views.py:468
  1715. msgid "Please choose a valid amount"
  1716. msgstr ""
  1717. #: apps/dashboard/orders/views.py:453
  1718. msgid "Payment event created"
  1719. msgstr ""
  1720. #: apps/dashboard/orders/views.py:515
  1721. #, python-format
  1722. msgid "%(field)s changed from '%(old_value)s' to '%(new_value)s'"
  1723. msgstr ""
  1724. #: apps/dashboard/orders/views.py:541
  1725. #, python-format
  1726. msgid ""
  1727. "Delivery address updated:\n"
  1728. "%s"
  1729. msgstr ""
  1730. #: apps/dashboard/orders/views.py:547
  1731. msgid "Delivery address updated"
  1732. msgstr ""
  1733. #: apps/dashboard/pages/forms.py:24
  1734. msgid ""
  1735. "Example: '/about/contact/'. Make sure to have leading and trailing slashes."
  1736. msgstr ""
  1737. #: apps/dashboard/pages/views.py:36
  1738. msgid "All pages"
  1739. msgstr "全ページ"
  1740. #: apps/dashboard/pages/views.py:49
  1741. #, python-format
  1742. msgid " with title containing '%s'"
  1743. msgstr ""
  1744. #: apps/dashboard/pages/views.py:78
  1745. msgid "Create New Page"
  1746. msgstr ""
  1747. #: apps/dashboard/pages/views.py:112
  1748. #, python-format
  1749. msgid "Created new page '%s'"
  1750. msgstr ""
  1751. #: apps/dashboard/pages/views.py:130
  1752. msgid "Update Page"
  1753. msgstr ""
  1754. #: apps/dashboard/pages/views.py:150
  1755. #, python-format
  1756. msgid "Updated page '%s'"
  1757. msgstr ""
  1758. #: apps/dashboard/pages/views.py:166
  1759. #, python-format
  1760. msgid "Deleted page '%s'"
  1761. msgstr ""
  1762. #: apps/dashboard/promotions/app.py:10
  1763. msgid "Content"
  1764. msgstr "コンテンツ"
  1765. #: apps/dashboard/promotions/app.py:11
  1766. msgid "Re-usable content blocks"
  1767. msgstr "再利用可コンテンツブロック"
  1768. #: apps/dashboard/promotions/app.py:12
  1769. msgid "Content blocks by page"
  1770. msgstr "ページ別コンテンツブロック"
  1771. #: apps/dashboard/promotions/app.py:13 apps/promotions/models.py:90
  1772. #: templates/oscar/dashboard/pages/delete.html:16
  1773. #: templates/oscar/dashboard/pages/index.html:7
  1774. #: templates/oscar/dashboard/pages/index.html:16
  1775. #: templates/oscar/dashboard/pages/update.html:17
  1776. #: templates/oscar/flatpages/help.html:9
  1777. msgid "Pages"
  1778. msgstr "ページ"
  1779. #: apps/dashboard/promotions/forms.py:19
  1780. msgid "Promotion type"
  1781. msgstr "プロモーションタイプ"
  1782. #: apps/dashboard/promotions/forms.py:41 apps/promotions/models.py:26
  1783. msgid "Position"
  1784. msgstr ""
  1785. #: apps/dashboard/promotions/forms.py:42
  1786. msgid "Where in the page this content block will appear"
  1787. msgstr ""
  1788. #: apps/dashboard/promotions/views.py:123
  1789. msgid "Promotion removed successfully"
  1790. msgstr ""
  1791. #: apps/dashboard/promotions/views.py:136
  1792. msgid "Promotion created successfully"
  1793. msgstr ""
  1794. #: apps/dashboard/promotions/views.py:149
  1795. #, python-format
  1796. msgid "Create a new %s content block"
  1797. msgstr ""
  1798. #: apps/dashboard/promotions/views.py:188
  1799. msgid "Product list promotion created"
  1800. msgstr ""
  1801. #: apps/dashboard/promotions/views.py:206
  1802. msgid "Update content block"
  1803. msgstr ""
  1804. #: apps/dashboard/promotions/views.py:222
  1805. msgid "Promotion updated successfully"
  1806. msgstr ""
  1807. #: apps/dashboard/promotions/views.py:231
  1808. #, python-format
  1809. msgid "Content block '%(block)s' added to page '%(page)s'"
  1810. msgstr ""
  1811. #: apps/dashboard/promotions/views.py:246
  1812. msgid "No link found to delete"
  1813. msgstr ""
  1814. #: apps/dashboard/promotions/views.py:250
  1815. #, python-format
  1816. msgid "Promotion removed from page '%s'"
  1817. msgstr ""
  1818. #: apps/dashboard/promotions/views.py:290
  1819. msgid "Product list promotion updated"
  1820. msgstr ""
  1821. #: apps/dashboard/promotions/views.py:307
  1822. msgid "Promotion deleted successfully"
  1823. msgstr ""
  1824. #: apps/dashboard/ranges/app.py:9 apps/offer/models.py:378
  1825. #: templates/oscar/dashboard/ranges/range_delete.html:16
  1826. #: templates/oscar/dashboard/ranges/range_form.html:19
  1827. #: templates/oscar/dashboard/ranges/range_product_list.html:16
  1828. msgid "Ranges"
  1829. msgstr ""
  1830. #: apps/dashboard/ranges/forms.py:20
  1831. msgid "Product SKUs or UPCs"
  1832. msgstr ""
  1833. #: apps/dashboard/ranges/forms.py:23
  1834. msgid "You can paste in a selection of SKUs or UPCs"
  1835. msgstr ""
  1836. #: apps/dashboard/ranges/forms.py:24
  1837. msgid "File of SKUs or UPCs"
  1838. msgstr ""
  1839. #: apps/dashboard/ranges/forms.py:25
  1840. msgid "Either comma-separated, or one identifier per line"
  1841. msgstr ""
  1842. #: apps/dashboard/ranges/forms.py:34
  1843. msgid "You must submit either a list of SKU/UPCs or a file"
  1844. msgstr ""
  1845. #: apps/dashboard/ranges/forms.py:52 apps/dashboard/ranges/views.py:140
  1846. #, python-format
  1847. msgid "The products with SKUs or UPCs matching %s are already in this range"
  1848. msgstr ""
  1849. #: apps/dashboard/ranges/forms.py:59
  1850. #, python-format
  1851. msgid "No products exist with a SKU or UPC matching %s"
  1852. msgstr ""
  1853. #: apps/dashboard/ranges/models.py:11 apps/offer/models.py:186
  1854. #: apps/offer/models.py:260 apps/offer/models.py:377
  1855. msgid "Range"
  1856. msgstr ""
  1857. #: apps/dashboard/ranges/models.py:12
  1858. msgid "File Path"
  1859. msgstr ""
  1860. #: apps/dashboard/ranges/models.py:13
  1861. msgid "Size"
  1862. msgstr ""
  1863. #: apps/dashboard/ranges/models.py:14
  1864. msgid "Uploaded By"
  1865. msgstr ""
  1866. #: apps/dashboard/ranges/models.py:15
  1867. msgid "Date Uploaded"
  1868. msgstr ""
  1869. #: apps/dashboard/ranges/models.py:24
  1870. msgid "Error Message"
  1871. msgstr ""
  1872. #: apps/dashboard/ranges/models.py:27
  1873. msgid "Date Processed"
  1874. msgstr ""
  1875. #: apps/dashboard/ranges/models.py:28
  1876. msgid "Number of New SKUs"
  1877. msgstr ""
  1878. #: apps/dashboard/ranges/models.py:29
  1879. msgid "Number of Unknown SKUs"
  1880. msgstr ""
  1881. #: apps/dashboard/ranges/models.py:30
  1882. msgid "Number of Duplicate SKUs"
  1883. msgstr ""
  1884. #: apps/dashboard/ranges/models.py:34
  1885. msgid "Range Product Uploaded File"
  1886. msgstr ""
  1887. #: apps/dashboard/ranges/models.py:35
  1888. msgid "Range Product Uploaded Files"
  1889. msgstr ""
  1890. #: apps/dashboard/ranges/views.py:42
  1891. msgid "Create range"
  1892. msgstr ""
  1893. #: apps/dashboard/ranges/views.py:60
  1894. msgid "Update range"
  1895. msgstr ""
  1896. #: apps/dashboard/ranges/views.py:108
  1897. #, python-format
  1898. msgid "Removed %d product from range"
  1899. msgid_plural "Removed %d products from range"
  1900. msgstr[0] ""
  1901. msgstr[1] ""
  1902. #: apps/dashboard/ranges/views.py:133
  1903. #, python-format
  1904. msgid "%d product added to range"
  1905. msgid_plural "%d products added to range"
  1906. msgstr[0] ""
  1907. msgstr[1] ""
  1908. #: apps/dashboard/ranges/views.py:145
  1909. #, python-format
  1910. msgid "No product(s) were found with SKU or UPC matching %s"
  1911. msgstr ""
  1912. #: apps/dashboard/ranges/views.py:155
  1913. #, python-format
  1914. msgid ""
  1915. "File processed: %(new_skus)d products added, %(dupe_skus)d duplicate "
  1916. "identifiers, %(unknown_skus)d identifiers were not found"
  1917. msgstr ""
  1918. #: apps/dashboard/reports/app.py:9
  1919. #: templates/oscar/dashboard/reports/index.html:7
  1920. msgid "Reports"
  1921. msgstr "レポート"
  1922. #: apps/dashboard/reports/forms.py:14
  1923. msgid "Report Type"
  1924. msgstr "レポートタイプ"
  1925. #: apps/dashboard/reports/forms.py:15
  1926. msgid "Only the offer and order reports use the selected date range"
  1927. msgstr "オファーと注文状況のレポートは始期終期の設定が有効です"
  1928. #: apps/dashboard/reports/forms.py:20
  1929. msgid "The report is inclusive of this date"
  1930. msgstr "このレポートには始期終期当日を含みます"
  1931. #: apps/dashboard/reports/forms.py:25
  1932. msgid "Your start date must be before your end date"
  1933. msgstr ""
  1934. #: apps/dashboard/reports/reports.py:24
  1935. #, python-format
  1936. msgid "%(report_filter)s between %(start_date)s and %(end_date)s"
  1937. msgstr ""
  1938. #: apps/dashboard/reports/views.py:22
  1939. msgid "You do not have access to this report"
  1940. msgstr ""
  1941. #: apps/dashboard/reviews/app.py:9
  1942. #: templates/oscar/dashboard/reviews/review_delete.html:16
  1943. #: templates/oscar/dashboard/reviews/review_list.html:7
  1944. #: templates/oscar/dashboard/reviews/review_list.html:16
  1945. #: templates/oscar/dashboard/reviews/review_update.html:18
  1946. #: templates/oscar/dashboard/users/detail.html:82
  1947. #: templates/oscar/dashboard/users/detail.html:97
  1948. #: templates/oscar/dashboard/users/detail.html:155
  1949. msgid "Reviews"
  1950. msgstr ""
  1951. #: apps/dashboard/reviews/forms.py:24 apps/promotions/models.py:67
  1952. msgid "Keyword"
  1953. msgstr "キーワード"
  1954. #: apps/dashboard/reviews/forms.py:28
  1955. msgid "to"
  1956. msgstr "いつまで"
  1957. #: apps/dashboard/reviews/views.py:26
  1958. #, python-format
  1959. msgid ""
  1960. "%(main_filter)s %(date_filter)s %(status_filter)s%(kw_filter)s "
  1961. "%(name_filter)s"
  1962. msgstr ""
  1963. #: apps/dashboard/reviews/views.py:54
  1964. #, python-format
  1965. msgid " created between %(start_date)s and %(end_date)s"
  1966. msgstr ""
  1967. #: apps/dashboard/reviews/views.py:60
  1968. #, python-format
  1969. msgid " created after %s"
  1970. msgstr ""
  1971. #: apps/dashboard/reviews/views.py:65
  1972. #, python-format
  1973. msgid " created before %s"
  1974. msgstr ""
  1975. #: apps/dashboard/reviews/views.py:72
  1976. msgid "All reviews"
  1977. msgstr ""
  1978. #: apps/dashboard/reviews/views.py:91 apps/dashboard/users/views.py:115
  1979. #, python-format
  1980. msgid " with status matching '%s'"
  1981. msgstr ""
  1982. #: apps/dashboard/reviews/views.py:98
  1983. #, python-format
  1984. msgid " with keyword matching '%s'"
  1985. msgstr ""
  1986. #: apps/dashboard/users/app.py:9 apps/dashboard/users/app.py:10
  1987. #: templates/oscar/dashboard/index.html:79
  1988. #: templates/oscar/dashboard/users/detail.html:18
  1989. #: templates/oscar/dashboard/users/index.html:8
  1990. #: templates/oscar/dashboard/users/index.html:20
  1991. msgid "Customers"
  1992. msgstr "カスタマー"
  1993. #: apps/dashboard/users/app.py:11 templates/oscar/customer/profile.html:34
  1994. #: templates/oscar/customer/profile.html:187
  1995. msgid "Alerts"
  1996. msgstr "アラート"
  1997. #: apps/dashboard/users/views.py:25
  1998. #, python-format
  1999. msgid "%(main_filter)s %(email_filter)s %(name_filter)s"
  2000. msgstr ""
  2001. #: apps/dashboard/users/views.py:31
  2002. msgid "All users"
  2003. msgstr "顧客一覧"
  2004. #: apps/dashboard/users/views.py:49
  2005. #, python-format
  2006. msgid " with email matching '%s'"
  2007. msgstr ""
  2008. #: apps/dashboard/users/views.py:59
  2009. #, python-format
  2010. msgid " with name matching '%s'"
  2011. msgstr ""
  2012. #: apps/dashboard/users/views.py:80
  2013. msgid "Users' status successfully changed"
  2014. msgstr ""
  2015. #: apps/dashboard/users/views.py:100
  2016. msgid "All Alerts"
  2017. msgstr "全アラート"
  2018. #: apps/dashboard/users/views.py:138
  2019. #, python-format
  2020. msgid " with customer email matching '%s'"
  2021. msgstr ""
  2022. #: apps/dashboard/users/views.py:156
  2023. msgid "Product alert saved"
  2024. msgstr ""
  2025. #: apps/dashboard/users/views.py:166
  2026. msgid "Product alert deleted"
  2027. msgstr ""
  2028. #: apps/dashboard/vouchers/forms.py:19 apps/voucher/abstract_models.py:35
  2029. #: templates/oscar/dashboard/vouchers/voucher_delete.html:38
  2030. #: templates/oscar/dashboard/vouchers/voucher_detail.html:38
  2031. msgid "Usage"
  2032. msgstr ""
  2033. #: apps/dashboard/vouchers/forms.py:22
  2034. msgid "Which products get a discount?"
  2035. msgstr ""
  2036. #: apps/dashboard/vouchers/forms.py:26
  2037. #, python-format
  2038. msgid "% off products in range"
  2039. msgstr ""
  2040. #: apps/dashboard/vouchers/forms.py:27
  2041. msgid "Fixed amount off products in range"
  2042. msgstr ""
  2043. #: apps/dashboard/vouchers/forms.py:31
  2044. msgid "Discount type"
  2045. msgstr ""
  2046. #: apps/dashboard/vouchers/forms.py:34
  2047. msgid "Discount value"
  2048. msgstr ""
  2049. #: apps/dashboard/vouchers/forms.py:48
  2050. #, python-format
  2051. msgid "The name '%s' is already in use"
  2052. msgstr ""
  2053. #: apps/dashboard/vouchers/forms.py:61
  2054. #, python-format
  2055. msgid "The code '%s' is already in use"
  2056. msgstr ""
  2057. #: apps/dashboard/vouchers/forms.py:69
  2058. msgid "The start date must be before the end date"
  2059. msgstr ""
  2060. #: apps/dashboard/vouchers/forms.py:76
  2061. msgid "Is Active?"
  2062. msgstr ""
  2063. #: apps/dashboard/vouchers/views.py:25
  2064. #, python-format
  2065. msgid "%(main_filter)s %(name_filter)s %(code_filter)s"
  2066. msgstr ""
  2067. #: apps/dashboard/vouchers/views.py:29
  2068. msgid "All vouchers"
  2069. msgstr ""
  2070. #: apps/dashboard/vouchers/views.py:45
  2071. #, python-format
  2072. msgid "with name matching '%s'"
  2073. msgstr ""
  2074. #: apps/dashboard/vouchers/views.py:48
  2075. #, python-format
  2076. msgid "with code '%s'"
  2077. msgstr ""
  2078. #: apps/dashboard/vouchers/views.py:52
  2079. msgid "Active vouchers"
  2080. msgstr ""
  2081. #: apps/dashboard/vouchers/views.py:70
  2082. msgid "Create voucher"
  2083. msgstr ""
  2084. #: apps/dashboard/vouchers/views.py:87
  2085. #, python-format
  2086. msgid "Offer for voucher '%s'"
  2087. msgstr ""
  2088. #: apps/dashboard/vouchers/views.py:103
  2089. msgid "Voucher created"
  2090. msgstr ""
  2091. #: apps/dashboard/vouchers/views.py:130
  2092. msgid "Update voucher"
  2093. msgstr ""
  2094. #: apps/dashboard/vouchers/views.py:175
  2095. msgid "Voucher updated"
  2096. msgstr ""
  2097. #: apps/dashboard/vouchers/views.py:185
  2098. msgid "Voucher deleted"
  2099. msgstr ""
  2100. #: apps/offer/models.py:22
  2101. msgid ""
  2102. "This is displayed within the customer's\n"
  2103. " basket"
  2104. msgstr ""
  2105. #: apps/offer/models.py:38
  2106. msgid "Site offer - available to all users"
  2107. msgstr ""
  2108. #: apps/offer/models.py:39
  2109. msgid ""
  2110. "Voucher offer - only available after entering the appropriate voucher code"
  2111. msgstr ""
  2112. #: apps/offer/models.py:40
  2113. msgid "User offer - available to certain types of user"
  2114. msgstr ""
  2115. #: apps/offer/models.py:41
  2116. msgid ""
  2117. "Session offer - temporary offer, available for a user for the duration of "
  2118. "their session"
  2119. msgstr ""
  2120. #: apps/offer/models.py:45 apps/offer/models.py:191
  2121. #: templates/oscar/dashboard/offers/offer_delete.html:39
  2122. #: templates/oscar/dashboard/offers/offer_detail.html:34
  2123. #: templates/oscar/dashboard/offers/offer_list.html:51
  2124. #: templates/oscar/dashboard/offers/preview.html:11
  2125. msgid "Condition"
  2126. msgstr ""
  2127. #: apps/offer/models.py:46 apps/offer/models.py:271
  2128. #: templates/oscar/dashboard/offers/offer_delete.html:40
  2129. #: templates/oscar/dashboard/offers/offer_detail.html:35
  2130. #: templates/oscar/dashboard/offers/offer_list.html:52
  2131. #: templates/oscar/dashboard/offers/preview.html:12
  2132. msgid "Benefit"
  2133. msgstr ""
  2134. #: apps/offer/models.py:51 apps/voucher/abstract_models.py:38
  2135. msgid "Start Date"
  2136. msgstr ""
  2137. #: apps/offer/models.py:52 apps/voucher/abstract_models.py:39
  2138. msgid "End Date"
  2139. msgstr ""
  2140. #: apps/offer/models.py:53
  2141. msgid "Offers are not active on their end date, only the days preceding"
  2142. msgstr ""
  2143. #: apps/offer/models.py:57
  2144. msgid "Priority"
  2145. msgstr ""
  2146. #: apps/offer/models.py:58
  2147. msgid "The highest priority offers are applied first"
  2148. msgstr ""
  2149. #: apps/offer/models.py:64
  2150. msgid ""
  2151. "This controls the maximum times an offer can be applied to a single basket"
  2152. msgstr ""
  2153. #: apps/offer/models.py:68
  2154. msgid "Total Discount"
  2155. msgstr ""
  2156. #: apps/offer/models.py:73
  2157. msgid "URL redirect (optional)"
  2158. msgstr ""
  2159. #: apps/offer/models.py:86
  2160. msgid "Conditional Offer"
  2161. msgstr ""
  2162. #: apps/offer/models.py:87
  2163. msgid "Conditional Offers"
  2164. msgstr ""
  2165. #: apps/offer/models.py:102 apps/voucher/abstract_models.py:64
  2166. msgid "End date should be later than start date"
  2167. msgstr ""
  2168. #: apps/offer/models.py:182
  2169. msgid "Depends on number of items in basket that are in condition range"
  2170. msgstr ""
  2171. #: apps/offer/models.py:183
  2172. msgid "Depends on value of items in basket that are in condition range"
  2173. msgstr ""
  2174. #: apps/offer/models.py:184
  2175. msgid ""
  2176. "Needs to contain a set number of DISTINCT items from the condition range"
  2177. msgstr ""
  2178. #: apps/offer/models.py:192
  2179. msgid "Conditions"
  2180. msgstr ""
  2181. #: apps/offer/models.py:196
  2182. #, python-format
  2183. msgid "Basket includes %(count)d item(s) from %(range)s"
  2184. msgstr ""
  2185. #: apps/offer/models.py:199
  2186. #, python-format
  2187. msgid "Basket includes %(count)d distinct products from %(range)s"
  2188. msgstr ""
  2189. #: apps/offer/models.py:201
  2190. #, python-format
  2191. msgid "Basket includes %(count)d value from %(range)s"
  2192. msgstr ""
  2193. #: apps/offer/models.py:255
  2194. #, python-format
  2195. msgid "Discount is a % of the product's value"
  2196. msgstr ""
  2197. #: apps/offer/models.py:256
  2198. msgid "Discount is a fixed amount off the product's value"
  2199. msgstr ""
  2200. #: apps/offer/models.py:257
  2201. msgid "Discount is to give the cheapest product for free"
  2202. msgstr ""
  2203. #: apps/offer/models.py:258
  2204. msgid "Get the products that meet the condition for a fixed price"
  2205. msgstr ""
  2206. #: apps/offer/models.py:267
  2207. msgid "Max Affected Items"
  2208. msgstr ""
  2209. #: apps/offer/models.py:268
  2210. msgid ""
  2211. "Set this to prevent the discount consuming all items within the range that "
  2212. "are in the basket."
  2213. msgstr ""
  2214. #: apps/offer/models.py:272
  2215. msgid "Benefits"
  2216. msgstr ""
  2217. #: apps/offer/models.py:276
  2218. #, python-format
  2219. msgid "%(value)s%% discount on %(range)s"
  2220. msgstr ""
  2221. #: apps/offer/models.py:278
  2222. #, python-format
  2223. msgid "Cheapest product is free from %s"
  2224. msgstr ""
  2225. #: apps/offer/models.py:280
  2226. #, python-format
  2227. msgid "The products that meet the condition are sold for %s"
  2228. msgstr ""
  2229. #: apps/offer/models.py:282
  2230. #, python-format
  2231. msgid "%(value).2f discount on %(range)s"
  2232. msgstr ""
  2233. #: apps/offer/models.py:286
  2234. #, python-format
  2235. msgid " (max %d item)"
  2236. msgid_plural " (max %d items)"
  2237. msgstr[0] ""
  2238. msgstr[1] ""
  2239. #: apps/offer/models.py:298
  2240. msgid "Benefit requires a value"
  2241. msgstr ""
  2242. #: apps/offer/models.py:300
  2243. #, python-format
  2244. msgid "Benefits of type %s need a value"
  2245. msgstr ""
  2246. #: apps/offer/models.py:302
  2247. msgid "Percentage benefit value can't be greater than 100"
  2248. msgstr ""
  2249. #: apps/offer/models.py:305
  2250. #, python-format
  2251. msgid "Benefits of type %s need a range"
  2252. msgstr ""
  2253. #: apps/offer/models.py:361
  2254. msgid "Includes All Products"
  2255. msgstr ""
  2256. #: apps/offer/models.py:363
  2257. msgid "Included Products"
  2258. msgstr ""
  2259. #: apps/offer/models.py:365
  2260. msgid "Excluded Products"
  2261. msgstr ""
  2262. #: apps/offer/models.py:369
  2263. msgid "Included Categories"
  2264. msgstr ""
  2265. #: apps/offer/models.py:445
  2266. msgid "Count Condition"
  2267. msgstr ""
  2268. #: apps/offer/models.py:446
  2269. msgid "Count Conditions"
  2270. msgstr ""
  2271. #: apps/offer/models.py:479 apps/offer/models.py:548
  2272. #, python-format
  2273. msgid "Buy %(delta)d more product from %(range)s"
  2274. msgid_plural "Buy %(delta)d more products from %(range)s"
  2275. msgstr[0] ""
  2276. msgstr[1] ""
  2277. #: apps/offer/models.py:517
  2278. msgid "Coverage Condition"
  2279. msgstr ""
  2280. #: apps/offer/models.py:518
  2281. msgid "Coverage Conditions"
  2282. msgstr ""
  2283. #: apps/offer/models.py:605
  2284. msgid "Value Condition"
  2285. msgstr ""
  2286. #: apps/offer/models.py:606
  2287. msgid "Value Conditions"
  2288. msgstr ""
  2289. #: apps/offer/models.py:642
  2290. #, python-format
  2291. msgid "Spend %(value)s more from %(range)s"
  2292. msgstr ""
  2293. #: apps/offer/models.py:683
  2294. msgid "Percentage discount benefit"
  2295. msgstr ""
  2296. #: apps/offer/models.py:684
  2297. msgid "Percentage discount benefits"
  2298. msgstr ""
  2299. #: apps/offer/models.py:718
  2300. msgid "Absolute discount benefit"
  2301. msgstr ""
  2302. #: apps/offer/models.py:719
  2303. msgid "Absolute discount benefits"
  2304. msgstr ""
  2305. #: apps/offer/models.py:765
  2306. msgid "Fixed price benefit"
  2307. msgstr ""
  2308. #: apps/offer/models.py:766
  2309. msgid "Fixed price benefits"
  2310. msgstr ""
  2311. #: apps/offer/models.py:817
  2312. msgid "Multibuy discount benefit"
  2313. msgstr ""
  2314. #: apps/offer/models.py:818
  2315. msgid "Multibuy discount benefits"
  2316. msgstr ""
  2317. #: apps/offer/reports.py:21
  2318. #: templates/oscar/dashboard/reports/partials/offer_report.html:9
  2319. msgid "Offer"
  2320. msgstr ""
  2321. #: apps/offer/reports.py:22 apps/voucher/abstract_models.py:46
  2322. #: apps/voucher/reports.py:24
  2323. #: templates/oscar/dashboard/offers/offer_detail.html:39
  2324. #: templates/oscar/dashboard/reports/partials/offer_report.html:10
  2325. #: templates/oscar/dashboard/reports/partials/voucher_report.html:12
  2326. #: templates/oscar/dashboard/vouchers/voucher_detail.html:48
  2327. msgid "Total discount"
  2328. msgstr ""
  2329. #: apps/offer/reports.py:37
  2330. #: templates/oscar/dashboard/offers/offer_detail.html:38
  2331. msgid "Offer performance"
  2332. msgstr ""
  2333. #: apps/order/abstract_models.py:23 templates/oscar/dashboard/index.html:146
  2334. msgid "Site"
  2335. msgstr ""
  2336. #: apps/order/abstract_models.py:24
  2337. msgid "Basket ID"
  2338. msgstr ""
  2339. #: apps/order/abstract_models.py:29
  2340. msgid "Billing Address"
  2341. msgstr ""
  2342. #: apps/order/abstract_models.py:34
  2343. msgid "Order total (inc. tax)"
  2344. msgstr ""
  2345. #: apps/order/abstract_models.py:35
  2346. msgid "Order total (excl. tax)"
  2347. msgstr ""
  2348. #: apps/order/abstract_models.py:38
  2349. #: templates/oscar/customer/anon_order.html:91
  2350. #: templates/oscar/customer/order.html:84
  2351. msgid "Shipping charge (inc. tax)"
  2352. msgstr ""
  2353. #: apps/order/abstract_models.py:39
  2354. msgid "Shipping charge (excl. tax)"
  2355. msgstr ""
  2356. #: apps/order/abstract_models.py:44 templates/oscar/customer/order.html:39
  2357. msgid "Shipping Address"
  2358. msgstr ""
  2359. #: apps/order/abstract_models.py:45 templates/oscar/checkout/checkout.html:47
  2360. #: templates/oscar/checkout/shipping_methods.html:6
  2361. #: templates/oscar/checkout/thank_you.html:43
  2362. #: templates/oscar/customer/anon_order.html:45
  2363. msgid "Shipping method"
  2364. msgstr ""
  2365. #: apps/order/abstract_models.py:50
  2366. msgid "Guest email address"
  2367. msgstr ""
  2368. #: apps/order/abstract_models.py:70
  2369. #, python-format
  2370. msgid ""
  2371. "'%(new_status)s' is not a valid status for order %(number)s (current status:"
  2372. " '%(status)s')"
  2373. msgstr ""
  2374. #: apps/order/abstract_models.py:166
  2375. msgid "In progress"
  2376. msgstr ""
  2377. #: apps/order/abstract_models.py:189
  2378. msgid "Can view orders (eg for reporting)"
  2379. msgstr ""
  2380. #: apps/order/abstract_models.py:191 apps/order/abstract_models.py:215
  2381. #: apps/order/abstract_models.py:252 apps/order/abstract_models.py:272
  2382. #: apps/order/abstract_models.py:523 apps/order/abstract_models.py:562
  2383. #: apps/order/abstract_models.py:671 apps/payment/models.py:43
  2384. #: apps/voucher/abstract_models.py:140 templates/oscar/customer/order.html:6
  2385. #: templates/oscar/dashboard/orders/shippingaddress_form.html:5
  2386. msgid "Order"
  2387. msgstr ""
  2388. #: apps/order/abstract_models.py:223
  2389. msgid "Note Type"
  2390. msgstr ""
  2391. #: apps/order/abstract_models.py:225
  2392. #: templates/oscar/dashboard/orders/order_detail.html:432
  2393. msgid "Message"
  2394. msgstr ""
  2395. #: apps/order/abstract_models.py:234
  2396. msgid "Order Note"
  2397. msgstr ""
  2398. #: apps/order/abstract_models.py:235
  2399. msgid "Order Notes"
  2400. msgstr ""
  2401. #: apps/order/abstract_models.py:253 apps/order/abstract_models.py:526
  2402. #: apps/order/abstract_models.py:564
  2403. msgid "Event Type"
  2404. msgstr ""
  2405. #: apps/order/abstract_models.py:258
  2406. msgid "Communication Event"
  2407. msgstr ""
  2408. #: apps/order/abstract_models.py:259
  2409. msgid "Communication Events"
  2410. msgstr ""
  2411. #: apps/order/abstract_models.py:262
  2412. #, python-format
  2413. msgid "'%(type)s' event for order #%(number)s"
  2414. msgstr ""
  2415. #: apps/order/abstract_models.py:279
  2416. msgid "Partner name"
  2417. msgstr ""
  2418. #: apps/order/abstract_models.py:293 apps/order/abstract_models.py:476
  2419. msgid "Price (inc. tax)"
  2420. msgstr ""
  2421. #: apps/order/abstract_models.py:294 apps/order/abstract_models.py:477
  2422. #: apps/partner/abstract_models.py:84
  2423. #: templates/oscar/catalogue/detail.html:104
  2424. msgid "Price (excl. tax)"
  2425. msgstr ""
  2426. #: apps/order/abstract_models.py:297
  2427. msgid "Price before discounts (inc. tax)"
  2428. msgstr ""
  2429. #: apps/order/abstract_models.py:299
  2430. msgid "Price before discounts (excl. tax)"
  2431. msgstr ""
  2432. #: apps/order/abstract_models.py:304
  2433. msgid "Unit Cost Price"
  2434. msgstr ""
  2435. #: apps/order/abstract_models.py:306
  2436. msgid "Unit Price (inc. tax)"
  2437. msgstr ""
  2438. #: apps/order/abstract_models.py:308
  2439. msgid "Unit Price (excl. tax)"
  2440. msgstr ""
  2441. #: apps/order/abstract_models.py:311
  2442. msgid "Unit Retail Price"
  2443. msgstr ""
  2444. #: apps/order/abstract_models.py:315
  2445. msgid "Partner reference"
  2446. msgstr ""
  2447. #: apps/order/abstract_models.py:316
  2448. msgid "This is the item number that the partner uses within their system"
  2449. msgstr ""
  2450. #: apps/order/abstract_models.py:317
  2451. msgid "Partner Notes"
  2452. msgstr ""
  2453. #: apps/order/abstract_models.py:324
  2454. msgid "Estimated Dispatch Date"
  2455. msgstr ""
  2456. #: apps/order/abstract_models.py:339
  2457. #, python-format
  2458. msgid "'%(new_status)s' is not a valid status (current status: '%(status)s')"
  2459. msgstr ""
  2460. #: apps/order/abstract_models.py:437
  2461. msgid "Order Line"
  2462. msgstr ""
  2463. #: apps/order/abstract_models.py:444
  2464. msgid "<missing product>"
  2465. msgstr ""
  2466. #: apps/order/abstract_models.py:445
  2467. #, python-format
  2468. msgid "Product '%(name)s', quantity '%(qty)s'"
  2469. msgstr ""
  2470. #: apps/order/abstract_models.py:458
  2471. msgid "Line Attribute"
  2472. msgstr ""
  2473. #: apps/order/abstract_models.py:459
  2474. msgid "Line Attributes"
  2475. msgstr ""
  2476. #: apps/order/abstract_models.py:478
  2477. msgid "Shiping (inc. tax)"
  2478. msgstr ""
  2479. #: apps/order/abstract_models.py:479
  2480. msgid "Shipping (excl. tax)"
  2481. msgstr ""
  2482. #: apps/order/abstract_models.py:484
  2483. msgid "Line Price"
  2484. msgstr ""
  2485. #: apps/order/abstract_models.py:485
  2486. msgid "Line Prices"
  2487. msgstr ""
  2488. #: apps/order/abstract_models.py:488
  2489. #, python-format
  2490. msgid "Line '%(number)s' (quantity %(qty)d) price %(price)s"
  2491. msgstr ""
  2492. #: apps/order/abstract_models.py:501 apps/order/abstract_models.py:642
  2493. msgid "Sequence"
  2494. msgstr ""
  2495. #: apps/order/abstract_models.py:510
  2496. msgid "Payment Event Type"
  2497. msgstr ""
  2498. #: apps/order/abstract_models.py:511
  2499. msgid "Payment Event Types"
  2500. msgstr ""
  2501. #: apps/order/abstract_models.py:524 apps/order/abstract_models.py:676
  2502. #: apps/payment/models.py:21
  2503. #: templates/oscar/dashboard/orders/order_detail.html:269
  2504. #: templates/oscar/dashboard/orders/order_detail.html:391
  2505. msgid "Amount"
  2506. msgstr ""
  2507. #: apps/order/abstract_models.py:525 apps/order/abstract_models.py:563
  2508. #: templates/oscar/dashboard/orders/order_detail.html:233
  2509. #: templates/oscar/dashboard/orders/order_detail.html:270
  2510. msgid "Lines"
  2511. msgstr ""
  2512. #: apps/order/abstract_models.py:531
  2513. msgid "Payment Event"
  2514. msgstr ""
  2515. #: apps/order/abstract_models.py:532
  2516. #: templates/oscar/dashboard/orders/order_detail.html:260
  2517. msgid "Payment Events"
  2518. msgstr ""
  2519. #: apps/order/abstract_models.py:535
  2520. #, python-format
  2521. msgid "Payment event for order %s"
  2522. msgstr ""
  2523. #: apps/order/abstract_models.py:545 apps/order/abstract_models.py:587
  2524. #: templates/oscar/dashboard/orders/order_detail.html:232
  2525. #: templates/oscar/dashboard/orders/order_detail.html:268
  2526. msgid "Event"
  2527. msgstr ""
  2528. #: apps/order/abstract_models.py:550
  2529. msgid "Payment Event Quantity"
  2530. msgstr ""
  2531. #: apps/order/abstract_models.py:551
  2532. msgid "Payment Event Quantities"
  2533. msgstr ""
  2534. #: apps/order/abstract_models.py:565
  2535. msgid "Event notes"
  2536. msgstr ""
  2537. #: apps/order/abstract_models.py:566
  2538. msgid "This could be the dispatch reference, or a tracking number"
  2539. msgstr ""
  2540. #: apps/order/abstract_models.py:571
  2541. msgid "Shipping Event"
  2542. msgstr ""
  2543. #: apps/order/abstract_models.py:572
  2544. #: templates/oscar/dashboard/orders/order_detail.html:224
  2545. msgid "Shipping Events"
  2546. msgstr ""
  2547. #: apps/order/abstract_models.py:576
  2548. #, python-format
  2549. msgid "Order #%(number)s, type %(type)s"
  2550. msgstr ""
  2551. #: apps/order/abstract_models.py:592
  2552. msgid "Shipping Event Quantity"
  2553. msgstr ""
  2554. #: apps/order/abstract_models.py:593
  2555. msgid "Shipping Event Quantities"
  2556. msgstr ""
  2557. #: apps/order/abstract_models.py:607
  2558. msgid "This shipping event is not permitted"
  2559. msgstr ""
  2560. #: apps/order/abstract_models.py:616
  2561. #, python-format
  2562. msgid "Invalid quantity (%d) for event type (total exceeds line total)"
  2563. msgstr ""
  2564. #: apps/order/abstract_models.py:628
  2565. #, python-format
  2566. msgid "%(product)s - quantity %(qty)d"
  2567. msgstr ""
  2568. #: apps/order/abstract_models.py:639
  2569. msgid "Is Required"
  2570. msgstr ""
  2571. #: apps/order/abstract_models.py:640
  2572. msgid ""
  2573. "This event must be passed before the next shipping event can take place"
  2574. msgstr ""
  2575. #: apps/order/abstract_models.py:651
  2576. msgid "Shipping Event Type"
  2577. msgstr ""
  2578. #: apps/order/abstract_models.py:652
  2579. msgid "Shipping Event Types"
  2580. msgstr ""
  2581. #: apps/order/abstract_models.py:672
  2582. msgid "Offer ID"
  2583. msgstr ""
  2584. #: apps/order/abstract_models.py:674
  2585. msgid "Voucher ID"
  2586. msgstr ""
  2587. #: apps/order/abstract_models.py:680
  2588. msgid "Order Discount"
  2589. msgstr ""
  2590. #: apps/order/abstract_models.py:681
  2591. msgid "Order Discounts"
  2592. msgstr ""
  2593. #: apps/order/abstract_models.py:697
  2594. #, python-format
  2595. msgid "Discount of %(amount)r from order %(order)s"
  2596. msgstr ""
  2597. #: apps/order/reports.py:21
  2598. #: templates/oscar/dashboard/reports/partials/order_report.html:11
  2599. msgid "Total incl. tax"
  2600. msgstr ""
  2601. #: apps/order/reports.py:22
  2602. #: templates/oscar/dashboard/reports/partials/order_report.html:12
  2603. #: templates/oscar/dashboard/users/detail.html:109
  2604. #: templates/oscar/dashboard/vouchers/voucher_detail.html:61
  2605. msgid "Date placed"
  2606. msgstr ""
  2607. #: apps/order/reports.py:41
  2608. msgid "Orders placed"
  2609. msgstr ""
  2610. #: apps/order/utils.py:48
  2611. msgid "Empty baskets cannot be submitted"
  2612. msgstr ""
  2613. #: apps/order/utils.py:64
  2614. #, python-format
  2615. msgid "There is already an order with number %s"
  2616. msgstr ""
  2617. #: apps/order/utils.py:120
  2618. #, python-format
  2619. msgid "No partner found for product '%s'"
  2620. msgstr ""
  2621. #: apps/partner/abstract_models.py:40
  2622. msgid "Users"
  2623. msgstr ""
  2624. #: apps/partner/abstract_models.py:43
  2625. msgid "Fulfillment Partner"
  2626. msgstr ""
  2627. #: apps/partner/abstract_models.py:44
  2628. msgid "Fulfillment Partners"
  2629. msgstr ""
  2630. #: apps/partner/abstract_models.py:47
  2631. msgid "Can edit stock records"
  2632. msgstr ""
  2633. #: apps/partner/abstract_models.py:48
  2634. msgid "Can view stock records"
  2635. msgstr ""
  2636. #: apps/partner/abstract_models.py:49
  2637. msgid "Can edit product range"
  2638. msgstr ""
  2639. #: apps/partner/abstract_models.py:50
  2640. msgid "Can view product range"
  2641. msgstr ""
  2642. #: apps/partner/abstract_models.py:51
  2643. msgid "Can edit order lines"
  2644. msgstr ""
  2645. #: apps/partner/abstract_models.py:52
  2646. msgid "Can view order lines"
  2647. msgstr ""
  2648. #: apps/partner/abstract_models.py:78 apps/payment/models.py:45
  2649. msgid "Currency"
  2650. msgstr ""
  2651. #: apps/partner/abstract_models.py:87
  2652. msgid "Price (retail)"
  2653. msgstr ""
  2654. #: apps/partner/abstract_models.py:90
  2655. msgid "Cost Price"
  2656. msgstr ""
  2657. #: apps/partner/abstract_models.py:93
  2658. #: templates/oscar/dashboard/catalogue/product_list.html:64
  2659. msgid "Number in stock"
  2660. msgstr "在庫登録"
  2661. #: apps/partner/abstract_models.py:96
  2662. msgid "Low Stock Threshold"
  2663. msgstr ""
  2664. #: apps/partner/abstract_models.py:101
  2665. msgid "Number of Allocated"
  2666. msgstr ""
  2667. #: apps/partner/abstract_models.py:110 apps/partner/abstract_models.py:260
  2668. msgid "Stock Record"
  2669. msgstr ""
  2670. #: apps/partner/abstract_models.py:111
  2671. msgid "Stock Records"
  2672. msgstr ""
  2673. #: apps/partner/abstract_models.py:138
  2674. msgid "Invalid stock consumption request"
  2675. msgstr ""
  2676. #: apps/partner/abstract_models.py:261
  2677. msgid "Threshold"
  2678. msgstr ""
  2679. #: apps/partner/abstract_models.py:264
  2680. #: templates/oscar/dashboard/index.html:132
  2681. #: templates/oscar/dashboard/catalogue/stockalert_list.html:30
  2682. msgid "Open"
  2683. msgstr ""
  2684. #: apps/partner/abstract_models.py:269
  2685. msgid "Date Closed"
  2686. msgstr ""
  2687. #: apps/partner/abstract_models.py:276
  2688. #, python-format
  2689. msgid "<stockalert for \"%(stock)s\" status %(status)s>"
  2690. msgstr ""
  2691. #: apps/partner/abstract_models.py:280
  2692. msgid "Stock Alert"
  2693. msgstr ""
  2694. #: apps/partner/abstract_models.py:281
  2695. msgid "Stock Alerts"
  2696. msgstr ""
  2697. #: apps/partner/utils.py:26
  2698. #, python-format
  2699. msgid ""
  2700. "Partner named '%(partner)s' does not exist (existing partners: %(list)s)"
  2701. msgstr ""
  2702. #: apps/partner/utils.py:32 apps/partner/utils.py:105
  2703. msgid "No file path supplied"
  2704. msgstr ""
  2705. #: apps/partner/utils.py:190
  2706. #, python-format
  2707. msgid "%s does not exist"
  2708. msgstr ""
  2709. #: apps/partner/utils.py:195
  2710. #, python-format
  2711. msgid "%s is not a file"
  2712. msgstr ""
  2713. #: apps/partner/utils.py:203
  2714. #, python-format
  2715. msgid "%s is not readable"
  2716. msgstr ""
  2717. #: apps/partner/wrappers.py:32
  2718. #, python-format
  2719. msgid "'%s' is not available to purchase"
  2720. msgstr ""
  2721. #: apps/partner/wrappers.py:37
  2722. #, python-format
  2723. msgid "'%(title)s' - A maximum of %(max)d can be bought"
  2724. msgstr ""
  2725. #: apps/partner/wrappers.py:73
  2726. #, python-format
  2727. msgid "In stock (%d available)"
  2728. msgstr ""
  2729. #: apps/partner/wrappers.py:75
  2730. msgid "Available"
  2731. msgstr "在庫有"
  2732. #: apps/partner/wrappers.py:76
  2733. #: templates/oscar/catalogue/partials/stock_record.html:13
  2734. #: templates/oscar/promotions/default.html:19
  2735. #: templates/oscar/promotions/singleproduct.html:30
  2736. #: templates/oscar/promotions/partials/product_carousel.html:24
  2737. msgid "Not available"
  2738. msgstr ""
  2739. #: apps/payment/forms.py:72
  2740. msgid "Please enter a valid credit card number."
  2741. msgstr ""
  2742. #: apps/payment/forms.py:93
  2743. msgid "Enter a valid month."
  2744. msgstr ""
  2745. #: apps/payment/forms.py:94
  2746. msgid "Enter a valid year."
  2747. msgstr ""
  2748. #: apps/payment/forms.py:138
  2749. msgid "The expiration date you entered is in the past."
  2750. msgstr ""
  2751. #: apps/payment/forms.py:171
  2752. msgid "The starting date you entered is in the future."
  2753. msgstr ""
  2754. #: apps/payment/forms.py:190
  2755. msgid "Card number"
  2756. msgstr ""
  2757. #: apps/payment/forms.py:192
  2758. msgid "Name on card"
  2759. msgstr ""
  2760. #: apps/payment/forms.py:195
  2761. msgid "CVV Number"
  2762. msgstr ""
  2763. #: apps/payment/forms.py:198
  2764. msgid "This is the 3 or 4 digit security number on the back of your bankcard"
  2765. msgstr ""
  2766. #: apps/payment/forms.py:199
  2767. msgid "Valid from"
  2768. msgstr ""
  2769. #: apps/payment/forms.py:200
  2770. msgid "Valid to"
  2771. msgstr ""
  2772. #: apps/payment/models.py:16 apps/payment/models.py:68
  2773. #: templates/oscar/dashboard/orders/order_detail.html:346
  2774. msgid "Source"
  2775. msgstr ""
  2776. #: apps/payment/models.py:22 apps/payment/models.py:54
  2777. #: templates/oscar/dashboard/orders/order_detail.html:350
  2778. msgid "Reference"
  2779. msgstr ""
  2780. #: apps/payment/models.py:27
  2781. #, python-format
  2782. msgid "%(type)s of %(amount).2f"
  2783. msgstr ""
  2784. #: apps/payment/models.py:30
  2785. msgid "Transaction"
  2786. msgstr ""
  2787. #: apps/payment/models.py:31
  2788. #: templates/oscar/dashboard/orders/order_detail.html:372
  2789. msgid "Transactions"
  2790. msgstr ""
  2791. #: apps/payment/models.py:44 apps/payment/models.py:150
  2792. msgid "Source Type"
  2793. msgstr ""
  2794. #: apps/payment/models.py:48
  2795. msgid "Amount Allocated"
  2796. msgstr ""
  2797. #: apps/payment/models.py:49
  2798. msgid "Amount Debited"
  2799. msgstr ""
  2800. #: apps/payment/models.py:50
  2801. msgid "Amount Refunded"
  2802. msgstr ""
  2803. #: apps/payment/models.py:57
  2804. msgid "Label"
  2805. msgstr ""
  2806. #: apps/payment/models.py:69
  2807. msgid "Sources"
  2808. msgstr ""
  2809. #: apps/payment/models.py:72
  2810. #, python-format
  2811. msgid "Allocation of %(amount).2f from type %(type)s"
  2812. msgstr ""
  2813. #: apps/payment/models.py:75
  2814. #, python-format
  2815. msgid " (reference: %s)"
  2816. msgstr ""
  2817. #: apps/payment/models.py:146
  2818. msgid ""
  2819. "This is used within\n"
  2820. " forms to identify this source type"
  2821. msgstr ""
  2822. #: apps/payment/models.py:151
  2823. msgid "Source Types"
  2824. msgstr ""
  2825. #: apps/payment/models.py:164
  2826. msgid "Card Type"
  2827. msgstr ""
  2828. #: apps/payment/models.py:166
  2829. msgid "Number"
  2830. msgstr ""
  2831. #: apps/payment/models.py:167
  2832. msgid "Expiry Date"
  2833. msgstr ""
  2834. #: apps/payment/models.py:170
  2835. msgid "Partner Reference"
  2836. msgstr ""
  2837. #: apps/payment/models.py:173
  2838. msgid "Bankcard"
  2839. msgstr ""
  2840. #: apps/payment/models.py:174
  2841. msgid "Bankcards"
  2842. msgstr ""
  2843. #: apps/promotions/models.py:28
  2844. msgid "Clicks"
  2845. msgstr ""
  2846. #: apps/promotions/models.py:34
  2847. msgid "Linked Promotion"
  2848. msgstr ""
  2849. #: apps/promotions/models.py:35
  2850. msgid "Linked Promotions"
  2851. msgstr ""
  2852. #: apps/promotions/models.py:46
  2853. #: templates/oscar/dashboard/promotions/form.html:49
  2854. msgid "Page URL"
  2855. msgstr ""
  2856. #: apps/promotions/models.py:55
  2857. msgid "Page Promotion"
  2858. msgstr "ページプロモーション"
  2859. #: apps/promotions/models.py:56
  2860. msgid "Page Promotions"
  2861. msgstr ""
  2862. #: apps/promotions/models.py:71
  2863. msgid "Filter"
  2864. msgstr "絞り込み"
  2865. #: apps/promotions/models.py:77
  2866. msgid "Keyword Promotion"
  2867. msgstr ""
  2868. #: apps/promotions/models.py:78
  2869. msgid "Keyword Promotions"
  2870. msgstr ""
  2871. #: apps/promotions/models.py:89
  2872. msgid "Keywords"
  2873. msgstr ""
  2874. #: apps/promotions/models.py:94
  2875. msgid "Promotion"
  2876. msgstr ""
  2877. #: apps/promotions/models.py:95 templates/oscar/dashboard/index.html:153
  2878. msgid "Promotions"
  2879. msgstr ""
  2880. #: apps/promotions/models.py:143
  2881. msgid "Display type"
  2882. msgstr ""
  2883. #: apps/promotions/models.py:145
  2884. msgid ""
  2885. "This can be used to have different types of HTML blocks (eg different "
  2886. "widths)"
  2887. msgstr ""
  2888. #: apps/promotions/models.py:150 apps/promotions/models.py:151
  2889. msgid "Raw HTML"
  2890. msgstr ""
  2891. #: apps/promotions/models.py:166 apps/promotions/models.py:223
  2892. msgid "Link URL"
  2893. msgstr ""
  2894. #: apps/promotions/models.py:166
  2895. msgid ""
  2896. "This is\n"
  2897. " where this promotion links to"
  2898. msgstr ""
  2899. #: apps/promotions/models.py:194
  2900. msgid "Multi Image"
  2901. msgstr ""
  2902. #: apps/promotions/models.py:195
  2903. msgid "Multi Images"
  2904. msgstr ""
  2905. #: apps/promotions/models.py:212 apps/promotions/models.py:213
  2906. msgid "Single Product"
  2907. msgstr ""
  2908. #: apps/promotions/models.py:224
  2909. msgid "Link text"
  2910. msgstr ""
  2911. #: apps/promotions/models.py:229
  2912. msgid "Product List"
  2913. msgstr ""
  2914. #: apps/promotions/models.py:230
  2915. msgid "Product Lists"
  2916. msgstr ""
  2917. #: apps/promotions/models.py:255
  2918. msgid "Hand Picked Product List"
  2919. msgstr ""
  2920. #: apps/promotions/models.py:256
  2921. msgid "Hand Picked Product Lists"
  2922. msgstr ""
  2923. #: apps/promotions/models.py:261
  2924. msgid "List"
  2925. msgstr ""
  2926. #: apps/promotions/models.py:267 apps/promotions/models.py:268
  2927. msgid "Ordered Product"
  2928. msgstr ""
  2929. #: apps/promotions/models.py:276
  2930. msgid "Bestselling products"
  2931. msgstr ""
  2932. #: apps/promotions/models.py:277
  2933. msgid "Recently added products"
  2934. msgstr ""
  2935. #: apps/promotions/models.py:279 apps/shipping/models.py:130
  2936. #: templates/oscar/checkout/shipping_methods.html:23
  2937. #: templates/oscar/dashboard/orders/order_detail.html:302
  2938. msgid "Method"
  2939. msgstr ""
  2940. #: apps/promotions/models.py:280
  2941. msgid "Number of Products"
  2942. msgstr ""
  2943. #: apps/promotions/models.py:297
  2944. msgid "Automatic Product List"
  2945. msgstr ""
  2946. #: apps/promotions/models.py:298
  2947. msgid "Automatic Product Lists"
  2948. msgstr ""
  2949. #: apps/promotions/models.py:303 apps/promotions/models.py:319
  2950. msgid "Tabbed Block"
  2951. msgstr ""
  2952. #: apps/promotions/models.py:308
  2953. msgid "Ordered Product List"
  2954. msgstr ""
  2955. #: apps/promotions/models.py:309
  2956. msgid "Ordered Product Lists"
  2957. msgstr ""
  2958. #: apps/promotions/models.py:320
  2959. msgid "Tabbed Blocks"
  2960. msgstr ""
  2961. #: apps/search/forms.py:21
  2962. #: templates/oscar/dashboard/catalogue/product_list.html:29
  2963. #: templates/oscar/dashboard/offers/offer_list.html:25
  2964. #: templates/oscar/dashboard/offers/offer_list.html:29
  2965. #: templates/oscar/dashboard/orders/order_list.html:27
  2966. #: templates/oscar/dashboard/orders/order_list.html:46
  2967. #: templates/oscar/dashboard/orders/order_list.html:62
  2968. #: templates/oscar/dashboard/reviews/review_list.html:29
  2969. #: templates/oscar/dashboard/users/index.html:26
  2970. #: templates/oscar/dashboard/users/index.html:29
  2971. #: templates/oscar/dashboard/users/alerts/list.html:35
  2972. #: templates/oscar/dashboard/vouchers/voucher_list.html:25
  2973. #: templates/oscar/dashboard/vouchers/voucher_list.html:29
  2974. #: templates/oscar/partials/search.html:5
  2975. #: templates/oscar/search/results.html:17
  2976. msgid "Search"
  2977. msgstr "検索"
  2978. #: apps/shipping/methods.py:14
  2979. msgid "Free shipping"
  2980. msgstr "送料無料"
  2981. #: apps/shipping/methods.py:25
  2982. msgid "No shipping required"
  2983. msgstr ""
  2984. #: apps/shipping/methods.py:30
  2985. msgid "Fixed price shipping"
  2986. msgstr ""
  2987. #: apps/shipping/models.py:22 templates/oscar/customer/order.html:38
  2988. msgid "Shipping Method"
  2989. msgstr ""
  2990. #: apps/shipping/models.py:23
  2991. msgid "Shipping Methods"
  2992. msgstr ""
  2993. #: apps/shipping/models.py:50
  2994. msgid "Price per order"
  2995. msgstr ""
  2996. #: apps/shipping/models.py:51
  2997. msgid "Price per item"
  2998. msgstr ""
  2999. #: apps/shipping/models.py:54
  3000. msgid "Free Shipping"
  3001. msgstr "無料"
  3002. #: apps/shipping/models.py:59
  3003. msgid "Order and Item Charge"
  3004. msgstr ""
  3005. #: apps/shipping/models.py:60
  3006. msgid "Order and Item Charges"
  3007. msgstr ""
  3008. #: apps/shipping/models.py:88
  3009. msgid "Upper Charge"
  3010. msgstr ""
  3011. #: apps/shipping/models.py:89
  3012. msgid ""
  3013. "This is the charge when the\n"
  3014. " weight of the basket is greater than all\n"
  3015. " the weight bands"
  3016. msgstr ""
  3017. #: apps/shipping/models.py:94
  3018. msgid "Default Weight"
  3019. msgstr ""
  3020. #: apps/shipping/models.py:95
  3021. msgid ""
  3022. "Default product weight in Kg when no\n"
  3023. " weight attribute is defined"
  3024. msgstr ""
  3025. #: apps/shipping/models.py:99
  3026. msgid "Weight-based Shipping Method"
  3027. msgstr ""
  3028. #: apps/shipping/models.py:100
  3029. msgid "Weight-based Shipping Methods"
  3030. msgstr ""
  3031. #: apps/shipping/models.py:131
  3032. msgid "Upper Limit"
  3033. msgstr ""
  3034. #: apps/shipping/models.py:131
  3035. msgid ""
  3036. "Enter upper limit of this\n"
  3037. " weight band in Kg, the lower\n"
  3038. " limit will be determine by the\n"
  3039. " other weight bands"
  3040. msgstr ""
  3041. #: apps/shipping/models.py:135
  3042. msgid "Charge"
  3043. msgstr ""
  3044. #: apps/shipping/models.py:151
  3045. msgid "Weight Band"
  3046. msgstr ""
  3047. #: apps/shipping/models.py:152
  3048. msgid "Weight Bands"
  3049. msgstr ""
  3050. #: apps/shipping/models.py:155
  3051. #, python-format
  3052. msgid "Charge for weights up to %sKg"
  3053. msgstr ""
  3054. #: apps/shipping/repository.py:29
  3055. msgid "You need to define some shipping methods"
  3056. msgstr ""
  3057. #: apps/voucher/abstract_models.py:19
  3058. msgid ""
  3059. "This will be shown in the checkout and basket once the voucher is entered"
  3060. msgstr ""
  3061. #: apps/voucher/abstract_models.py:23
  3062. msgid "Case insensitive / No spaces allowed"
  3063. msgstr ""
  3064. #: apps/voucher/abstract_models.py:31
  3065. msgid "Can be used once by one customer"
  3066. msgstr ""
  3067. #: apps/voucher/abstract_models.py:32
  3068. msgid "Can be used multiple times by multiple customers"
  3069. msgstr ""
  3070. #: apps/voucher/abstract_models.py:33
  3071. msgid "Can only be used once per customer"
  3072. msgstr ""
  3073. #: apps/voucher/abstract_models.py:43
  3074. msgid "Times added to basket"
  3075. msgstr ""
  3076. #: apps/voucher/abstract_models.py:44
  3077. msgid "Times on orders"
  3078. msgstr ""
  3079. #: apps/voucher/abstract_models.py:54 apps/voucher/abstract_models.py:134
  3080. msgid "Voucher"
  3081. msgstr ""
  3082. #: apps/voucher/abstract_models.py:89
  3083. msgid "This voucher has already been used"
  3084. msgstr ""
  3085. #: apps/voucher/abstract_models.py:96
  3086. msgid "This voucher is only available to signed in users"
  3087. msgstr ""
  3088. #: apps/voucher/abstract_models.py:101
  3089. msgid "You have already used this voucher in a previous order"
  3090. msgstr ""
  3091. #: apps/voucher/abstract_models.py:141
  3092. msgid "Date Creted"
  3093. msgstr ""
  3094. #: apps/voucher/abstract_models.py:145
  3095. msgid "Voucher Application"
  3096. msgstr ""
  3097. #: apps/voucher/abstract_models.py:146
  3098. msgid "Voucher Applications"
  3099. msgstr ""
  3100. #: apps/voucher/abstract_models.py:149
  3101. #, python-format
  3102. msgid "'%(voucher)s' used by '%(user)s'"
  3103. msgstr ""
  3104. #: apps/voucher/reports.py:22
  3105. #: templates/oscar/dashboard/reports/partials/voucher_report.html:10
  3106. msgid "Added to a basket"
  3107. msgstr ""
  3108. #: apps/voucher/reports.py:23
  3109. #: templates/oscar/dashboard/reports/partials/voucher_report.html:11
  3110. msgid "Used in an order"
  3111. msgstr ""
  3112. #: apps/voucher/reports.py:42
  3113. #: templates/oscar/dashboard/vouchers/voucher_detail.html:43
  3114. msgid "Voucher performance"
  3115. msgstr ""
  3116. #: core/validators.py:36
  3117. msgid "Specified page does not exist"
  3118. msgstr ""
  3119. #: core/validators.py:77 core/validators.py:87
  3120. msgid "Specified page does already exist"
  3121. msgstr ""
  3122. #: management/commands/oscar_send_alerts.py:16
  3123. msgid "Check check for products that are back in stock and send out alerts"
  3124. msgstr ""
  3125. #: templates/oscar/404.html:5
  3126. msgid "Page not found"
  3127. msgstr "お探しのページは見つかりませんでした…。"
  3128. #: templates/oscar/404.html:13
  3129. msgid "Oops, page not found!"
  3130. msgstr ""
  3131. #: templates/oscar/404.html:14
  3132. msgid ""
  3133. "The page you are looking for isn't here. Please try again, use the "
  3134. "navigation above or feel free to send us your feedback. Thank you."
  3135. msgstr ""
  3136. #: templates/oscar/404.html:16 templates/oscar/500.html:12
  3137. msgid "Go back to previous page"
  3138. msgstr ""
  3139. #: templates/oscar/404.html:17 templates/oscar/500.html:13
  3140. msgid "Homepage"
  3141. msgstr ""
  3142. #: templates/oscar/500.html:9
  3143. msgid "Internal server error!"
  3144. msgstr ""
  3145. #: templates/oscar/500.html:10
  3146. msgid ""
  3147. "Something went terribly wrong. We're very sorry and will fix this problem "
  3148. "as soon as possible."
  3149. msgstr ""
  3150. #: templates/oscar/base.html:5
  3151. msgid "Build"
  3152. msgstr ""
  3153. #: templates/oscar/base.html:74
  3154. msgid "Version:"
  3155. msgstr ""
  3156. #: templates/oscar/basket/basket.html:23
  3157. msgid "Important messages about items in your basket"
  3158. msgstr ""
  3159. #: templates/oscar/basket/basket.html:30
  3160. msgid "You could be missing out on offers!"
  3161. msgstr ""
  3162. #: templates/oscar/basket/basket.html:32
  3163. #, python-format
  3164. msgid ""
  3165. "\n"
  3166. "\t<div class=\"warning\">%(upsell_message)s to qualify for the <a href=\"%(url)s\">%(offer_name)s</a> special offer</div>\n"
  3167. " "
  3168. msgstr ""
  3169. #: templates/oscar/basket/basket.html:41
  3170. msgid "Items to buy now"
  3171. msgstr "購入予定商品一覧"
  3172. #: templates/oscar/basket/basket.html:43
  3173. #: templates/oscar/basket/basket.html:203
  3174. #: templates/oscar/checkout/checkout.html:90
  3175. #: templates/oscar/dashboard/catalogue/product_update.html:144
  3176. #: templates/oscar/dashboard/ranges/range_product_list.html:86
  3177. msgid "Price"
  3178. msgstr "価格"
  3179. #: templates/oscar/basket/basket.html:70
  3180. #: templates/oscar/dashboard/catalogue/stockalert_list.html:58
  3181. #: templates/oscar/dashboard/reviews/review_list.html:101
  3182. msgid "Update"
  3183. msgstr "更新"
  3184. #: templates/oscar/basket/basket.html:71
  3185. #: templates/oscar/basket/basket.html:221
  3186. #: templates/oscar/dashboard/promotions/delete_pagepromotion.html:16
  3187. #: templates/oscar/dashboard/promotions/page_detail.html:52
  3188. #: templates/oscar/dashboard/ranges/range_product_list.html:102
  3189. msgid "Remove"
  3190. msgstr ""
  3191. #: templates/oscar/basket/basket.html:73
  3192. msgid "Save for later"
  3193. msgstr "今は買わない"
  3194. #: templates/oscar/basket/basket.html:93
  3195. msgid "Voucher/Promo Code"
  3196. msgstr ""
  3197. #: templates/oscar/basket/basket.html:95
  3198. msgid "I have a voucher code..."
  3199. msgstr ""
  3200. #: templates/oscar/basket/basket.html:103
  3201. msgid "Add voucher"
  3202. msgstr ""
  3203. #: templates/oscar/basket/basket.html:104
  3204. #: templates/oscar/checkout/user_address_delete.html:20
  3205. #: templates/oscar/checkout/user_address_form.html:21
  3206. #: templates/oscar/customer/address_delete.html:41
  3207. #: templates/oscar/customer/address_form.html:40
  3208. #: templates/oscar/customer/change_password_form.html:38
  3209. #: templates/oscar/customer/profile_form.html:34
  3210. #: templates/oscar/dashboard/catalogue/category_delete.html:33
  3211. #: templates/oscar/dashboard/catalogue/category_form.html:34
  3212. #: templates/oscar/dashboard/offers/offer_delete.html:46
  3213. #: templates/oscar/dashboard/offers/offer_detail.html:74
  3214. #: templates/oscar/dashboard/offers/preview.html:23
  3215. #: templates/oscar/dashboard/offers/step_form.html:43
  3216. #: templates/oscar/dashboard/orders/shippingaddress_form.html:39
  3217. #: templates/oscar/dashboard/pages/delete.html:36
  3218. #: templates/oscar/dashboard/pages/update.html:67
  3219. #: templates/oscar/dashboard/promotions/delete.html:36
  3220. #: templates/oscar/dashboard/promotions/delete_pagepromotion.html:17
  3221. #: templates/oscar/dashboard/promotions/form.html:37
  3222. #: templates/oscar/dashboard/ranges/range_delete.html:34
  3223. #: templates/oscar/dashboard/ranges/range_form.html:42
  3224. #: templates/oscar/dashboard/reviews/review_delete.html:47
  3225. #: templates/oscar/dashboard/reviews/review_update.html:82
  3226. #: templates/oscar/dashboard/users/alerts/delete.html:37
  3227. #: templates/oscar/dashboard/users/alerts/update.html:40
  3228. #: templates/oscar/dashboard/vouchers/voucher_delete.html:47
  3229. #: templates/oscar/dashboard/vouchers/voucher_detail.html:83
  3230. #: templates/oscar/dashboard/vouchers/voucher_form.html:39
  3231. #: templates/oscar/reviews/add_review.html:14
  3232. msgid "cancel"
  3233. msgstr "キャンセル"
  3234. #: templates/oscar/basket/basket.html:114
  3235. msgid "Basket Totals"
  3236. msgstr "カート計"
  3237. #: templates/oscar/basket/basket.html:122
  3238. msgid "Basket total (before discounts)"
  3239. msgstr ""
  3240. #: templates/oscar/basket/basket.html:128
  3241. msgid "Special offer:"
  3242. msgstr ""
  3243. #: templates/oscar/basket/basket.html:152
  3244. msgid "Basket total (after discounts)"
  3245. msgstr ""
  3246. #: templates/oscar/basket/basket.html:157
  3247. #: templates/oscar/checkout/thank_you.html:108
  3248. msgid "Basket total"
  3249. msgstr ""
  3250. #: templates/oscar/basket/basket.html:163
  3251. #: templates/oscar/checkout/checkout.html:28
  3252. #: templates/oscar/checkout/thank_you.html:26
  3253. #: templates/oscar/checkout/thank_you.html:114
  3254. #: templates/oscar/dashboard/orders/order_detail.html:91
  3255. msgid "Shipping"
  3256. msgstr ""
  3257. #: templates/oscar/basket/basket.html:167
  3258. #: templates/oscar/checkout/thank_you.html:120
  3259. #: templates/oscar/customer/anon_order.html:95
  3260. #: templates/oscar/customer/order.html:88
  3261. #: templates/oscar/dashboard/offers/offer_detail.html:52
  3262. #: templates/oscar/dashboard/vouchers/voucher_detail.html:59
  3263. msgid "Order total"
  3264. msgstr ""
  3265. #: templates/oscar/basket/basket.html:180
  3266. msgid "Proceed to checkout"
  3267. msgstr "注文確認画面へ"
  3268. #: templates/oscar/basket/basket.html:186
  3269. #: templates/oscar/basket/partials/basket_quick.html:23
  3270. msgid "Your basket is empty, you should probably add some items to buy."
  3271. msgstr "カートは空です。是非商品をご覧ください。"
  3272. #: templates/oscar/basket/basket.html:187
  3273. #: templates/oscar/checkout/thank_you.html:136
  3274. msgid "Continue shopping"
  3275. msgstr ""
  3276. #: templates/oscar/basket/basket.html:194
  3277. msgid "To buy later"
  3278. msgstr ""
  3279. #: templates/oscar/basket/basket.html:198
  3280. msgid "Your saved basket is empty."
  3281. msgstr ""
  3282. #: templates/oscar/basket/basket.html:202
  3283. msgid "To buy an item now, click 'Move to basket'"
  3284. msgstr ""
  3285. #: templates/oscar/basket/basket.html:228
  3286. msgid "Move to basket"
  3287. msgstr ""
  3288. #: templates/oscar/basket/saved_list.html:6
  3289. msgid "Saved Basket"
  3290. msgstr ""
  3291. #: templates/oscar/basket/partials/basket_quick.html:12
  3292. msgid "Quantity:"
  3293. msgstr ""
  3294. #: templates/oscar/basket/partials/basket_quick.html:17
  3295. msgid "Total Excl Tax:"
  3296. msgstr ""
  3297. #: templates/oscar/basket/partials/basket_quick.html:17
  3298. #: templates/oscar/partials/nav_alternate.html:15
  3299. #: templates/oscar/partials/nav_primary.html:16
  3300. msgid "Total:"
  3301. msgstr ""
  3302. #: templates/oscar/basket/partials/basket_quick.html:18
  3303. #: templates/oscar/partials/brand.html:9
  3304. msgid "View Basket"
  3305. msgstr "カートを見る"
  3306. #: templates/oscar/basket/partials/basket_quick.html:19
  3307. #: templates/oscar/checkout/checkout.html:6
  3308. msgid "Checkout"
  3309. msgstr ""
  3310. #: templates/oscar/catalogue/browse.html:17
  3311. #: templates/oscar/catalogue/detail.html:18
  3312. #: templates/oscar/customer/address_delete.html:12
  3313. #: templates/oscar/customer/address_form.html:12
  3314. #: templates/oscar/customer/address_list.html:12
  3315. #: templates/oscar/customer/change_password_form.html:9
  3316. #: templates/oscar/customer/email.html:9
  3317. #: templates/oscar/customer/email_list.html:12
  3318. #: templates/oscar/customer/login_registration.html:12
  3319. #: templates/oscar/customer/order.html:12
  3320. #: templates/oscar/customer/order_list.html:8
  3321. #: templates/oscar/customer/profile.html:12
  3322. #: templates/oscar/customer/profile_form.html:7
  3323. #: templates/oscar/customer/registration.html:11
  3324. #: templates/oscar/customer/notifications/list.html:11
  3325. #: templates/oscar/dashboard/index.html:13
  3326. #: templates/oscar/offer/detail.html:11
  3327. #: templates/oscar/registration/password_reset_complete.html:9
  3328. #: templates/oscar/registration/password_reset_confirm.html:9
  3329. #: templates/oscar/registration/password_reset_done.html:9
  3330. #: templates/oscar/registration/password_reset_form.html:9
  3331. #: templates/oscar/reviews/reviews.html:14
  3332. #: templates/oscar/search/results.html:13
  3333. msgid "Home"
  3334. msgstr "ホーム"
  3335. #: templates/oscar/catalogue/browse.html:38
  3336. msgid "Browse Categories"
  3337. msgstr "カテゴリーから探す"
  3338. #: templates/oscar/catalogue/browse.html:85
  3339. #: templates/oscar/dashboard/catalogue/product_list.html:94
  3340. #: templates/oscar/dashboard/ranges/range_product_list.html:118
  3341. #: templates/oscar/offer/detail.html:62
  3342. msgid "No products found."
  3343. msgstr ""
  3344. #: templates/oscar/catalogue/detail.html:43
  3345. msgid "Edit this product"
  3346. msgstr ""
  3347. #: templates/oscar/catalogue/detail.html:64
  3348. msgid "Add review"
  3349. msgstr ""
  3350. #: templates/oscar/catalogue/detail.html:72
  3351. msgid "Read the full description"
  3352. msgstr ""
  3353. #: templates/oscar/catalogue/detail.html:83
  3354. msgid "Product Description"
  3355. msgstr ""
  3356. #: templates/oscar/catalogue/detail.html:100
  3357. #: templates/oscar/dashboard/catalogue/product_list.html:58
  3358. #: templates/oscar/dashboard/catalogue/product_update.html:72
  3359. #: templates/oscar/dashboard/orders/line_detail.html:45
  3360. msgid "Product class"
  3361. msgstr ""
  3362. #: templates/oscar/catalogue/detail.html:107
  3363. msgid "Price (incl. tax)"
  3364. msgstr ""
  3365. #: templates/oscar/catalogue/detail.html:110
  3366. #: templates/oscar/customer/anon_order.html:56
  3367. msgid "Availability"
  3368. msgstr ""
  3369. #: templates/oscar/catalogue/detail.html:121
  3370. msgid "Num reviews"
  3371. msgstr ""
  3372. #: templates/oscar/catalogue/detail.html:134
  3373. msgid "Customer Reviews"
  3374. msgstr ""
  3375. #: templates/oscar/catalogue/detail.html:137
  3376. #: templates/oscar/reviews/reviews.html:38
  3377. msgid "Read customer reviews on this product."
  3378. msgstr ""
  3379. #: templates/oscar/catalogue/detail.html:139
  3380. msgid "Be the first to review this product."
  3381. msgstr ""
  3382. #: templates/oscar/catalogue/detail.html:142
  3383. #: templates/oscar/customer/anon_order.html:72
  3384. #: templates/oscar/customer/order.html:68
  3385. msgid "Write a review"
  3386. msgstr ""
  3387. #: templates/oscar/catalogue/detail.html:151
  3388. msgid "Reviewed by"
  3389. msgstr ""
  3390. #: templates/oscar/catalogue/detail.html:171
  3391. msgid "See all reviews"
  3392. msgstr ""
  3393. #: templates/oscar/catalogue/detail.html:182
  3394. msgid "Related items"
  3395. msgstr ""
  3396. #: templates/oscar/catalogue/detail.html:201
  3397. msgid "Recommended items"
  3398. msgstr ""
  3399. #: templates/oscar/catalogue/partials/add_to_basket_form.html:10
  3400. #: templates/oscar/catalogue/partials/add_to_basket_form_compact.html:9
  3401. msgid "Add to basket"
  3402. msgstr "カートに入れる"
  3403. #: templates/oscar/catalogue/partials/add_to_basket_form.html:16
  3404. msgid "You can get an email alert when this product is back in stock."
  3405. msgstr ""
  3406. #: templates/oscar/catalogue/partials/add_to_basket_form.html:18
  3407. #: templates/oscar/promotions/singleproduct.html:31
  3408. #: templates/oscar/promotions/partials/product_carousel.html:25
  3409. msgid "Notify me"
  3410. msgstr ""
  3411. #: templates/oscar/catalogue/partials/gallery.html:11
  3412. msgid "Previous Image"
  3413. msgstr ""
  3414. #: templates/oscar/catalogue/partials/gallery.html:12
  3415. msgid "Next Image"
  3416. msgstr ""
  3417. #: templates/oscar/catalogue/partials/gallery.html:28
  3418. #: templates/oscar/reviews/reviews.html:74
  3419. msgid "Previous"
  3420. msgstr "前へ"
  3421. #: templates/oscar/catalogue/partials/gallery.html:29
  3422. #: templates/oscar/reviews/reviews.html:84
  3423. msgid "Next"
  3424. msgstr "次へ"
  3425. #: templates/oscar/catalogue/partials/pagination.html:7
  3426. #: templates/oscar/partials/pagination.html:8
  3427. msgid "previous"
  3428. msgstr ""
  3429. #: templates/oscar/catalogue/partials/pagination.html:10
  3430. #, python-format
  3431. msgid ""
  3432. "\n"
  3433. "\t\tPage %(page_num)s of %(total_pages)s\n"
  3434. "\t\t"
  3435. msgstr ""
  3436. "\n"
  3437. "ページ%(page_num)s / %(total_pages)s"
  3438. #: templates/oscar/catalogue/partials/pagination.html:15
  3439. #: templates/oscar/partials/pagination.html:16
  3440. msgid "next"
  3441. msgstr ""
  3442. #: templates/oscar/catalogue/partials/product.html:22
  3443. msgid "No Rating"
  3444. msgstr ""
  3445. #: templates/oscar/catalogue/partials/stock_record.html:5
  3446. #, python-format
  3447. msgid "From %(price)s"
  3448. msgstr ""
  3449. #: templates/oscar/checkout/checkout.html:40
  3450. #: templates/oscar/checkout/thank_you.html:36
  3451. #: templates/oscar/customer/anon_order.html:32
  3452. msgid "Contact number"
  3453. msgstr ""
  3454. #: templates/oscar/checkout/checkout.html:44
  3455. #: templates/oscar/checkout/thank_you.html:40
  3456. #: templates/oscar/customer/anon_order.html:38
  3457. msgid "Shipping notes"
  3458. msgstr ""
  3459. #: templates/oscar/checkout/checkout.html:57
  3460. msgid "Change shipping address"
  3461. msgstr ""
  3462. #: templates/oscar/checkout/checkout.html:61
  3463. msgid "No shipping is required for this order"
  3464. msgstr ""
  3465. #: templates/oscar/checkout/checkout.html:70
  3466. #: templates/oscar/checkout/thank_you.html:55
  3467. #: templates/oscar/dashboard/orders/order_detail.html:92
  3468. msgid "Payment"
  3469. msgstr ""
  3470. #: templates/oscar/checkout/checkout.html:73
  3471. msgid "Payment details to go here"
  3472. msgstr ""
  3473. #: templates/oscar/checkout/checkout.html:75
  3474. msgid "Change payment details"
  3475. msgstr ""
  3476. #: templates/oscar/checkout/checkout.html:84
  3477. #: templates/oscar/customer/anon_order.html:50
  3478. #: templates/oscar/customer/order.html:37
  3479. #: templates/oscar/dashboard/orders/order_detail.html:90
  3480. msgid "Order contents"
  3481. msgstr ""
  3482. #: templates/oscar/checkout/checkout.html:88
  3483. msgid "Items in basket"
  3484. msgstr "カート内商品"
  3485. #: templates/oscar/checkout/checkout.html:122
  3486. #: templates/oscar/customer/emails/commtype_order_placed_body.html:15
  3487. #: templates/oscar/customer/emails/commtype_order_placed_body.txt:11
  3488. msgid "Shipping:"
  3489. msgstr ""
  3490. #: templates/oscar/checkout/checkout.html:131
  3491. #: templates/oscar/customer/emails/commtype_order_placed_body.html:14
  3492. #: templates/oscar/customer/emails/commtype_order_placed_body.txt:10
  3493. #: templates/oscar/partials/brand.html:16
  3494. msgid "Basket total:"
  3495. msgstr ""
  3496. #: templates/oscar/checkout/checkout.html:137
  3497. msgid "Order total:"
  3498. msgstr ""
  3499. #: templates/oscar/checkout/checkout.html:143
  3500. msgid "Edit order contents"
  3501. msgstr ""
  3502. #: templates/oscar/checkout/gateway.html:6
  3503. msgid "Checkout gateway"
  3504. msgstr ""
  3505. #: templates/oscar/checkout/gateway.html:16
  3506. msgid "Who are you?"
  3507. msgstr ""
  3508. #: templates/oscar/checkout/gateway.html:40
  3509. msgid "I have an account and my password is"
  3510. msgstr ""
  3511. #: templates/oscar/checkout/gateway.html:56
  3512. msgid "Get a password reminder"
  3513. msgstr ""
  3514. #: templates/oscar/checkout/gateway.html:62
  3515. msgid "I don't want to create an account"
  3516. msgstr ""
  3517. #: templates/oscar/checkout/gateway.html:68
  3518. #: templates/oscar/checkout/payment_details.html:31
  3519. #: templates/oscar/checkout/shipping_address.html:59
  3520. #: templates/oscar/dashboard/offers/step_form.html:42
  3521. msgid "Continue"
  3522. msgstr ""
  3523. #: templates/oscar/checkout/gateway.html:69
  3524. msgid "Alternatively"
  3525. msgstr ""
  3526. #: templates/oscar/checkout/gateway.html:69
  3527. msgid "create an account"
  3528. msgstr "アカウント作成"
  3529. #: templates/oscar/checkout/gateway.html:69
  3530. msgid "before you checkout."
  3531. msgstr ""
  3532. #: templates/oscar/checkout/nav.html:4
  3533. msgid "1. Shipping address"
  3534. msgstr ""
  3535. #: templates/oscar/checkout/nav.html:5
  3536. msgid "2. Shipping method"
  3537. msgstr ""
  3538. #: templates/oscar/checkout/nav.html:6
  3539. msgid "3. Payment"
  3540. msgstr ""
  3541. #: templates/oscar/checkout/nav.html:7
  3542. msgid "4. Confirmation"
  3543. msgstr ""
  3544. #: templates/oscar/checkout/payment_details.html:6
  3545. msgid "Payment details"
  3546. msgstr ""
  3547. #: templates/oscar/checkout/payment_details.html:24
  3548. msgid ""
  3549. "This page needs implementing within your project. You may want to use on "
  3550. "one of Oscar's payment gateway libraries:"
  3551. msgstr ""
  3552. #: templates/oscar/checkout/preview.html:5
  3553. msgid "Order preview"
  3554. msgstr ""
  3555. #: templates/oscar/checkout/preview.html:17
  3556. msgid "Submitting..."
  3557. msgstr "送信中・・・"
  3558. #: templates/oscar/checkout/preview.html:17
  3559. msgid "Place order"
  3560. msgstr ""
  3561. #: templates/oscar/checkout/shipping_address.html:16
  3562. msgid "Where should we ship to?"
  3563. msgstr ""
  3564. #: templates/oscar/checkout/shipping_address.html:35
  3565. msgid "Ship to this address"
  3566. msgstr ""
  3567. #: templates/oscar/checkout/shipping_address.html:36
  3568. #: templates/oscar/customer/address_list.html:46
  3569. #: templates/oscar/dashboard/catalogue/product_list.html:83
  3570. #: templates/oscar/dashboard/offers/offer_detail.html:72
  3571. #: templates/oscar/dashboard/offers/offer_list.html:68
  3572. #: templates/oscar/dashboard/orders/order_detail.html:443
  3573. #: templates/oscar/dashboard/pages/index.html:62
  3574. #: templates/oscar/dashboard/promotions/page_detail.html:50
  3575. #: templates/oscar/dashboard/promotions/pagepromotion_list.html:55
  3576. #: templates/oscar/dashboard/promotions/promotion_list.html:54
  3577. #: templates/oscar/dashboard/ranges/range_list.html:47
  3578. #: templates/oscar/dashboard/reviews/review_list.html:90
  3579. #: templates/oscar/dashboard/users/alerts/list.html:74
  3580. #: templates/oscar/dashboard/vouchers/voucher_detail.html:81
  3581. #: templates/oscar/dashboard/vouchers/voucher_list.html:68
  3582. msgid "Edit"
  3583. msgstr "編集"
  3584. #: templates/oscar/checkout/shipping_address.html:37
  3585. #: templates/oscar/customer/address_delete.html:41
  3586. #: templates/oscar/customer/address_list.html:47
  3587. #: templates/oscar/customer/notifications/list.html:76
  3588. #: templates/oscar/dashboard/catalogue/category_delete.html:32
  3589. #: templates/oscar/dashboard/catalogue/category_list.html:58
  3590. #: templates/oscar/dashboard/offers/offer_delete.html:45
  3591. #: templates/oscar/dashboard/offers/offer_detail.html:73
  3592. #: templates/oscar/dashboard/offers/offer_list.html:69
  3593. #: templates/oscar/dashboard/pages/delete.html:35
  3594. #: templates/oscar/dashboard/pages/index.html:63
  3595. #: templates/oscar/dashboard/promotions/delete.html:35
  3596. #: templates/oscar/dashboard/promotions/promotion_list.html:55
  3597. #: templates/oscar/dashboard/ranges/range_delete.html:33
  3598. #: templates/oscar/dashboard/ranges/range_list.html:51
  3599. #: templates/oscar/dashboard/reviews/review_delete.html:46
  3600. #: templates/oscar/dashboard/reviews/review_list.html:91
  3601. #: templates/oscar/dashboard/users/alerts/delete.html:36
  3602. #: templates/oscar/dashboard/users/alerts/list.html:75
  3603. #: templates/oscar/dashboard/vouchers/voucher_delete.html:46
  3604. #: templates/oscar/dashboard/vouchers/voucher_detail.html:82
  3605. #: templates/oscar/dashboard/vouchers/voucher_list.html:69
  3606. msgid "Delete"
  3607. msgstr "削除"
  3608. #: templates/oscar/checkout/shipping_address.html:49
  3609. msgid "Or a new address?"
  3610. msgstr ""
  3611. #: templates/oscar/checkout/shipping_address.html:60
  3612. #: templates/oscar/checkout/user_address_delete.html:20
  3613. #: templates/oscar/checkout/user_address_form.html:21
  3614. #: templates/oscar/customer/address_delete.html:41
  3615. #: templates/oscar/customer/address_form.html:39
  3616. #: templates/oscar/customer/change_password_form.html:38
  3617. #: templates/oscar/customer/profile_form.html:34
  3618. #: templates/oscar/dashboard/catalogue/category_delete.html:33
  3619. #: templates/oscar/dashboard/catalogue/category_form.html:33
  3620. #: templates/oscar/dashboard/catalogue/product_update.html:164
  3621. #: templates/oscar/dashboard/offers/offer_detail.html:72
  3622. #: templates/oscar/dashboard/offers/offer_detail.html:73
  3623. #: templates/oscar/dashboard/offers/step_form.html:40
  3624. #: templates/oscar/dashboard/offers/step_form.html:42
  3625. #: templates/oscar/dashboard/pages/delete.html:36
  3626. #: templates/oscar/dashboard/pages/update.html:66
  3627. #: templates/oscar/dashboard/promotions/delete.html:36
  3628. #: templates/oscar/dashboard/promotions/delete_pagepromotion.html:17
  3629. #: templates/oscar/dashboard/promotions/form.html:37
  3630. #: templates/oscar/dashboard/ranges/range_delete.html:33
  3631. #: templates/oscar/dashboard/ranges/range_form.html:38
  3632. #: templates/oscar/dashboard/ranges/range_form.html:41
  3633. #: templates/oscar/dashboard/ranges/range_product_list.html:122
  3634. #: templates/oscar/dashboard/reviews/review_delete.html:46
  3635. #: templates/oscar/dashboard/reviews/review_update.html:81
  3636. #: templates/oscar/dashboard/users/alerts/list.html:36
  3637. #: templates/oscar/dashboard/users/alerts/update.html:39
  3638. #: templates/oscar/dashboard/vouchers/voucher_delete.html:46
  3639. #: templates/oscar/dashboard/vouchers/voucher_detail.html:81
  3640. #: templates/oscar/dashboard/vouchers/voucher_detail.html:82
  3641. #: templates/oscar/dashboard/vouchers/voucher_form.html:38
  3642. #: templates/oscar/reviews/add_review.html:13
  3643. msgid "or"
  3644. msgstr "または"
  3645. #: templates/oscar/checkout/shipping_address.html:60
  3646. msgid "return to basket"
  3647. msgstr ""
  3648. #: templates/oscar/checkout/shipping_methods.html:19
  3649. msgid "Choose a shipping method"
  3650. msgstr ""
  3651. #: templates/oscar/checkout/shipping_methods.html:24
  3652. #: templates/oscar/checkout/thank_you.html:74
  3653. msgid "Cost"
  3654. msgstr ""
  3655. #: templates/oscar/checkout/shipping_methods.html:32
  3656. msgid "Description:"
  3657. msgstr ""
  3658. #: templates/oscar/checkout/shipping_methods.html:41
  3659. msgid "Select option"
  3660. msgstr ""
  3661. #: templates/oscar/checkout/thank_you.html:6
  3662. msgid "Confirmation of order"
  3663. msgstr ""
  3664. #: templates/oscar/checkout/thank_you.html:14
  3665. #, python-format
  3666. msgid ""
  3667. "\n"
  3668. "\t\tConfirmation for order #%(order_num)s\n"
  3669. "\t\t"
  3670. msgstr ""
  3671. #: templates/oscar/checkout/thank_you.html:18
  3672. msgid ""
  3673. "Your order has been placed and a confirmation email has ben sent - your "
  3674. "order number is"
  3675. msgstr ""
  3676. #: templates/oscar/checkout/thank_you.html:20
  3677. msgid ""
  3678. "Please make a note of this reference or print this page and quote it in any "
  3679. "communication with us regarding your order."
  3680. msgstr ""
  3681. #: templates/oscar/checkout/thank_you.html:47
  3682. msgid "No shipping is required for this order."
  3683. msgstr ""
  3684. #: templates/oscar/checkout/thank_you.html:59
  3685. msgid "No payment was required for this order."
  3686. msgstr ""
  3687. #: templates/oscar/checkout/thank_you.html:66
  3688. msgid "Order details"
  3689. msgstr ""
  3690. #: templates/oscar/checkout/thank_you.html:71
  3691. msgid "Items purchased"
  3692. msgstr ""
  3693. #: templates/oscar/checkout/thank_you.html:72
  3694. msgid "Estimated dispatch date"
  3695. msgstr ""
  3696. #: templates/oscar/checkout/thank_you.html:127
  3697. msgid "Tracking your order"
  3698. msgstr ""
  3699. #: templates/oscar/checkout/thank_you.html:129
  3700. msgid "You can"
  3701. msgstr ""
  3702. #: templates/oscar/checkout/thank_you.html:130
  3703. msgid "track the status of your order"
  3704. msgstr ""
  3705. #: templates/oscar/checkout/thank_you.html:135
  3706. msgid "Print this page"
  3707. msgstr "このページを印刷する"
  3708. #: templates/oscar/checkout/user_address_delete.html:19
  3709. #: templates/oscar/customer/address_delete.html:36
  3710. msgid "Are you sure you want to delete this address?"
  3711. msgstr ""
  3712. #: templates/oscar/checkout/user_address_delete.html:19
  3713. msgid "Yes!"
  3714. msgstr ""
  3715. #: templates/oscar/checkout/user_address_form.html:14
  3716. msgid "Enter an address for your addressbook"
  3717. msgstr ""
  3718. #: templates/oscar/checkout/user_address_form.html:20
  3719. #: templates/oscar/customer/address_form.html:38
  3720. #: templates/oscar/customer/profile_form.html:33
  3721. #: templates/oscar/dashboard/catalogue/category_form.html:33
  3722. #: templates/oscar/dashboard/offers/preview.html:22
  3723. #: templates/oscar/dashboard/pages/update.html:66
  3724. #: templates/oscar/dashboard/promotions/form.html:36
  3725. #: templates/oscar/dashboard/ranges/range_form.html:38
  3726. #: templates/oscar/dashboard/reviews/review_update.html:81
  3727. #: templates/oscar/dashboard/users/alerts/update.html:39
  3728. #: templates/oscar/dashboard/vouchers/voucher_form.html:38
  3729. msgid "Save"
  3730. msgstr "保存"
  3731. #: templates/oscar/customer/address_delete.html:6
  3732. #: templates/oscar/customer/address_delete.html:23
  3733. #: templates/oscar/customer/address_delete.html:29
  3734. msgid "Delete address?"
  3735. msgstr ""
  3736. #: templates/oscar/customer/address_delete.html:16
  3737. #: templates/oscar/customer/address_form.html:16
  3738. #: templates/oscar/customer/address_list.html:16
  3739. #: templates/oscar/customer/change_password_form.html:13
  3740. #: templates/oscar/customer/email.html:13
  3741. #: templates/oscar/customer/email_list.html:16
  3742. #: templates/oscar/customer/order.html:16
  3743. #: templates/oscar/customer/order_list.html:12
  3744. #: templates/oscar/customer/profile.html:15
  3745. #: templates/oscar/customer/profile.html:21
  3746. #: templates/oscar/customer/profile_form.html:11
  3747. #: templates/oscar/customer/notifications/list.html:15
  3748. #: templates/oscar/dashboard/layout.html:24
  3749. #: templates/oscar/partials/nav_accounts.html:11
  3750. msgid "Account"
  3751. msgstr "アカウント"
  3752. #: templates/oscar/customer/address_delete.html:20
  3753. #: templates/oscar/customer/address_form.html:20
  3754. #: templates/oscar/customer/address_list.html:6
  3755. #: templates/oscar/customer/address_list.html:19
  3756. #: templates/oscar/customer/profile.html:122
  3757. msgid "Address book"
  3758. msgstr ""
  3759. #: templates/oscar/customer/address_list.html:25
  3760. #: templates/oscar/customer/profile.html:32
  3761. msgid "Address Book"
  3762. msgstr ""
  3763. #: templates/oscar/customer/address_list.html:54
  3764. msgid "There are no addresses in your address book."
  3765. msgstr ""
  3766. #: templates/oscar/customer/address_list.html:57
  3767. msgid "Add a New Address"
  3768. msgstr ""
  3769. #: templates/oscar/customer/anon_order.html:8
  3770. #: templates/oscar/customer/order.html:23
  3771. #: templates/oscar/customer/order.html:29
  3772. #: templates/oscar/dashboard/orders/order_detail.html:27
  3773. #, python-format
  3774. msgid "Order #%(number)s"
  3775. msgstr "注文番号: %(number)s"
  3776. #: templates/oscar/customer/anon_order.html:58
  3777. msgid "Line price excl. tax"
  3778. msgstr ""
  3779. #: templates/oscar/customer/anon_order.html:59
  3780. msgid "Line price incl. tax"
  3781. msgstr ""
  3782. #: templates/oscar/customer/anon_order.html:85
  3783. msgid "Totals"
  3784. msgstr ""
  3785. #: templates/oscar/customer/anon_order.html:87
  3786. #: templates/oscar/customer/order.html:80
  3787. msgid "Basket total (inc. tax)"
  3788. msgstr ""
  3789. #: templates/oscar/customer/change_password_form.html:16
  3790. #: templates/oscar/customer/change_password_form.html:21
  3791. #: templates/oscar/customer/change_password_form.html:26
  3792. #: templates/oscar/customer/profile.html:73
  3793. msgid "Change password"
  3794. msgstr ""
  3795. #: templates/oscar/customer/change_password_form.html:37
  3796. msgid "Update password"
  3797. msgstr ""
  3798. #: templates/oscar/customer/email.html:17
  3799. #: templates/oscar/customer/email_list.html:6
  3800. #: templates/oscar/customer/email_list.html:19
  3801. #: templates/oscar/customer/email_list.html:25
  3802. #: templates/oscar/customer/profile.html:151
  3803. msgid "Email history"
  3804. msgstr "Eメール履歴"
  3805. #: templates/oscar/customer/email.html:26
  3806. msgid "Email detail"
  3807. msgstr ""
  3808. #: templates/oscar/customer/email.html:31
  3809. #: templates/oscar/dashboard/users/detail.html:37
  3810. msgid "Email:"
  3811. msgstr ""
  3812. #: templates/oscar/customer/email.html:40
  3813. #: templates/oscar/customer/email_list.html:32
  3814. #: templates/oscar/customer/profile.html:161
  3815. msgid "Date sent"
  3816. msgstr "送信日時"
  3817. #: templates/oscar/customer/email.html:53
  3818. msgid "Return to email history"
  3819. msgstr "Eメール履歴に戻る"
  3820. #: templates/oscar/customer/email_list.html:41
  3821. #: templates/oscar/customer/order_list.html:53
  3822. #: templates/oscar/customer/profile.html:98
  3823. #: templates/oscar/customer/profile.html:170
  3824. #: templates/oscar/dashboard/offers/offer_detail.html:63
  3825. #: templates/oscar/dashboard/orders/order_detail.html:137
  3826. #: templates/oscar/dashboard/orders/order_list.html:120
  3827. #: templates/oscar/dashboard/pages/index.html:61
  3828. #: templates/oscar/dashboard/reports/partials/order_report.html:22
  3829. #: templates/oscar/dashboard/users/detail.html:120
  3830. #: templates/oscar/dashboard/users/index.html:65
  3831. #: templates/oscar/dashboard/vouchers/voucher_detail.html:72
  3832. msgid "View"
  3833. msgstr "見る"
  3834. #: templates/oscar/customer/login_registration.html:6
  3835. #: templates/oscar/customer/login_registration.html:15
  3836. #: templates/oscar/partials/nav_accounts.html:25
  3837. msgid "Login or register"
  3838. msgstr "ログインする または 新規アカウント登録する"
  3839. #: templates/oscar/customer/login_registration.html:24
  3840. #: templates/oscar/customer/login_registration.html:28
  3841. msgid "Log In"
  3842. msgstr ""
  3843. #: templates/oscar/customer/login_registration.html:27
  3844. msgid "I've forgotten my password"
  3845. msgstr ""
  3846. #: templates/oscar/customer/login_registration.html:33
  3847. #: templates/oscar/customer/login_registration.html:36
  3848. #: templates/oscar/customer/registration.html:5
  3849. #: templates/oscar/customer/registration.html:14
  3850. #: templates/oscar/customer/registration.html:23
  3851. #: templates/oscar/customer/registration.html:26
  3852. msgid "Register"
  3853. msgstr ""
  3854. #: templates/oscar/customer/login_registration.html:36
  3855. #: templates/oscar/customer/registration.html:26
  3856. msgid "Registering..."
  3857. msgstr ""
  3858. #: templates/oscar/customer/order.html:20
  3859. #: templates/oscar/customer/order_list.html:15
  3860. #: templates/oscar/customer/order_list.html:20
  3861. #: templates/oscar/customer/order_list.html:25
  3862. #: templates/oscar/customer/profile.html:81
  3863. msgid "Order history"
  3864. msgstr "注文履歴"
  3865. #: templates/oscar/customer/order.html:48
  3866. msgid "Dispatch date"
  3867. msgstr ""
  3868. #: templates/oscar/customer/order.html:50
  3869. msgid "Line price excl tax"
  3870. msgstr "定価(税抜)"
  3871. #: templates/oscar/customer/order.html:51
  3872. msgid "Line price incl tax"
  3873. msgstr "定価(税込)"
  3874. #: templates/oscar/customer/order.html:67
  3875. #: templates/oscar/customer/order_list.html:58
  3876. #: templates/oscar/customer/profile.html:103
  3877. #: templates/oscar/dashboard/promotions/page_detail.html:51
  3878. msgid "Re-order"
  3879. msgstr "再注文"
  3880. #: templates/oscar/customer/order.html:103
  3881. msgid "Address:"
  3882. msgstr "住所:"
  3883. #: templates/oscar/customer/order.html:111
  3884. msgid "Contact Number:"
  3885. msgstr "連絡先番号:"
  3886. #: templates/oscar/customer/order.html:117
  3887. msgid "Shipping Notes:"
  3888. msgstr "メモ:"
  3889. #: templates/oscar/customer/order_list.html:31
  3890. msgid "Search in orders"
  3891. msgstr ""
  3892. #: templates/oscar/customer/order_list.html:34
  3893. msgid "Filter results"
  3894. msgstr "絞込結果"
  3895. #: templates/oscar/customer/order_list.html:35
  3896. #: templates/oscar/dashboard/offers/offer_list.html:30
  3897. #: templates/oscar/dashboard/orders/statistics.html:37
  3898. #: templates/oscar/dashboard/users/index.html:30
  3899. #: templates/oscar/dashboard/vouchers/voucher_list.html:30
  3900. msgid "Reset"
  3901. msgstr "リセット"
  3902. #: templates/oscar/customer/order_list.html:43
  3903. #: templates/oscar/customer/profile.html:88
  3904. #: templates/oscar/dashboard/orders/order_list.html:99
  3905. msgid "Total inc tax"
  3906. msgstr "税込総額"
  3907. #: templates/oscar/customer/order_list.html:65
  3908. msgid "No orders found"
  3909. msgstr ""
  3910. #: templates/oscar/customer/profile.html:6
  3911. msgid "My account"
  3912. msgstr "マイアカウント"
  3913. #: templates/oscar/customer/profile.html:30
  3914. #: templates/oscar/customer/profile.html:44
  3915. msgid "Profile"
  3916. msgstr ""
  3917. #: templates/oscar/customer/profile.html:31
  3918. msgid "Order History"
  3919. msgstr "注文履歴"
  3920. #: templates/oscar/customer/profile.html:33
  3921. msgid "Email History"
  3922. msgstr "Eメール履歴"
  3923. #: templates/oscar/customer/profile.html:72
  3924. #: templates/oscar/customer/profile_form.html:14
  3925. #: templates/oscar/customer/profile_form.html:19
  3926. #: templates/oscar/customer/profile_form.html:24
  3927. msgid "Edit profile"
  3928. msgstr "登録内容の変更"
  3929. #: templates/oscar/customer/profile.html:111
  3930. msgid "View order history"
  3931. msgstr "注文履歴を見る"
  3932. #: templates/oscar/customer/profile.html:114
  3933. msgid "You haven't placed any orders yet."
  3934. msgstr "まだ注文はありません"
  3935. #: templates/oscar/customer/profile.html:127
  3936. msgid "Number of addresses in addressbook"
  3937. msgstr ""
  3938. #: templates/oscar/customer/profile.html:131
  3939. msgid "Default shipping address"
  3940. msgstr ""
  3941. #: templates/oscar/customer/profile.html:135
  3942. msgid "Default billing address"
  3943. msgstr ""
  3944. #: templates/oscar/customer/profile.html:142
  3945. msgid "Manage address book"
  3946. msgstr ""
  3947. #: templates/oscar/customer/profile.html:155
  3948. msgid "You haven't been sent any emails yet."
  3949. msgstr ""
  3950. #: templates/oscar/customer/profile.html:177
  3951. msgid "View email history"
  3952. msgstr "Eメール履歴を見る"
  3953. #: templates/oscar/customer/profile.html:191
  3954. msgid "You do not have any active alerts for out-of-stock products."
  3955. msgstr ""
  3956. #: templates/oscar/customer/profile.html:214
  3957. #: templates/oscar/dashboard/catalogue/product_update.html:164
  3958. #: templates/oscar/dashboard/orders/partials/bulk_edit_form.html:25
  3959. msgid "Cancel"
  3960. msgstr ""
  3961. #: templates/oscar/customer/alerts/message.html:2
  3962. #, python-format
  3963. msgid ""
  3964. "\n"
  3965. "<a href=\"%(url)s\">%(title)s</a> is back in stock\n"
  3966. msgstr ""
  3967. #: templates/oscar/customer/alerts/emails/alert_body.txt:1
  3968. #, python-format
  3969. msgid "Dear %(name)s,"
  3970. msgstr ""
  3971. #: templates/oscar/customer/alerts/emails/alert_body.txt:1
  3972. #: templates/oscar/customer/emails/commtype_order_placed_body.html:1
  3973. msgid "Hello,"
  3974. msgstr ""
  3975. #: templates/oscar/customer/alerts/emails/alert_body.txt:2
  3976. #, python-format
  3977. msgid ""
  3978. "\n"
  3979. "We are happy to inform you that our product '%(product)s' is back in stock:\n"
  3980. "http://%(site)s%(path)s\n"
  3981. msgstr ""
  3982. #: templates/oscar/customer/alerts/emails/alert_body.txt:5
  3983. msgid ""
  3984. "\n"
  3985. "Beware that the amount of items in stock is limited. Be quick or someone might get there first.\n"
  3986. msgstr ""
  3987. #: templates/oscar/customer/alerts/emails/alert_body.txt:7
  3988. #, python-format
  3989. msgid ""
  3990. "\n"
  3991. "With this email we have disabled your alert automatically and you will not\n"
  3992. "receive any further email regarding this product.\n"
  3993. "\n"
  3994. "Thanks for your interest,\n"
  3995. "The %(site_name)s Team\n"
  3996. msgstr ""
  3997. #: templates/oscar/customer/alerts/emails/alert_subject.txt:1
  3998. #, python-format
  3999. msgid "%(title)s is back in stock"
  4000. msgstr ""
  4001. #: templates/oscar/customer/alerts/emails/confirmation_body.txt:1
  4002. #, python-format
  4003. msgid ""
  4004. "Hello,\n"
  4005. "\n"
  4006. "Somebody (hopefully you) has requested an email alert when\n"
  4007. "'%(product)s' is back in stock. Please click the following link\n"
  4008. "to confirm:\n"
  4009. "http://%(domain)s%(confirm_path)s\n"
  4010. "\n"
  4011. "You can cancel this alert at any time by clicking the following link:\n"
  4012. "http://%(domain)s%(cancel_path)s\n"
  4013. "\n"
  4014. "Thanks for your interest,\n"
  4015. "The %(site)s Team\n"
  4016. msgstr ""
  4017. #: templates/oscar/customer/alerts/emails/confirmation_subject.txt:1
  4018. msgid "Confirmation required for stock alert"
  4019. msgstr ""
  4020. #: templates/oscar/customer/emails/commtype_order_placed_body.html:3
  4021. #, python-format
  4022. msgid ""
  4023. "We are pleased to confirm your order %(order_number)s has been received and\n"
  4024. "will be processed shortly."
  4025. msgstr ""
  4026. #: templates/oscar/customer/emails/commtype_order_placed_body.html:6
  4027. #: templates/oscar/customer/emails/commtype_order_placed_body.txt:6
  4028. msgid "Your order contains:"
  4029. msgstr ""
  4030. #: templates/oscar/customer/emails/commtype_order_placed_body.html:10
  4031. #: templates/oscar/customer/emails/commtype_order_placed_body.txt:8
  4032. msgid "quantity:"
  4033. msgstr ""
  4034. #: templates/oscar/customer/emails/commtype_order_placed_body.html:10
  4035. #: templates/oscar/customer/emails/commtype_order_placed_body.txt:8
  4036. msgid "price:"
  4037. msgstr ""
  4038. #: templates/oscar/customer/emails/commtype_order_placed_body.html:16
  4039. #: templates/oscar/customer/emails/commtype_order_placed_body.txt:12
  4040. msgid "Order Total:"
  4041. msgstr ""
  4042. #: templates/oscar/customer/emails/commtype_order_placed_body.html:19
  4043. #: templates/oscar/customer/emails/commtype_order_placed_body.txt:14
  4044. msgid "Shipping address:"
  4045. msgstr ""
  4046. #: templates/oscar/customer/emails/commtype_order_placed_body.html:24
  4047. #, python-format
  4048. msgid ""
  4049. "You can view the status of this order by clicking <a href=\"%(status_url)s\""
  4050. " title=\"order status\">here</a>"
  4051. msgstr ""
  4052. #: templates/oscar/customer/emails/commtype_order_placed_body.html:27
  4053. #: templates/oscar/customer/emails/commtype_order_placed_body.txt:24
  4054. msgid "The team"
  4055. msgstr ""
  4056. #: templates/oscar/customer/emails/commtype_order_placed_body.txt:1
  4057. #, python-format
  4058. msgid ""
  4059. "Hello,\n"
  4060. "\n"
  4061. "We are pleased to confirm your order %(order_number)s has been received and\n"
  4062. "will be processed shortly."
  4063. msgstr ""
  4064. #: templates/oscar/customer/emails/commtype_order_placed_body.txt:20
  4065. #, python-format
  4066. msgid ""
  4067. "You can view the status of this order at the below URL:\n"
  4068. "%(status_url)s"
  4069. msgstr ""
  4070. #: templates/oscar/customer/emails/commtype_order_placed_subject.txt:1
  4071. #, python-format
  4072. msgid "Confirmation of order %(order.number)s"
  4073. msgstr ""
  4074. #: templates/oscar/customer/emails/commtype_password_reset_body.html:2
  4075. #: templates/oscar/customer/emails/commtype_password_reset_body.txt:2
  4076. #, python-format
  4077. msgid ""
  4078. "You're receiving this e-mail because you requested a password reset for your"
  4079. " user account at %(site_name)s."
  4080. msgstr ""
  4081. #: templates/oscar/customer/emails/commtype_password_reset_body.html:4
  4082. #: templates/oscar/customer/emails/commtype_password_reset_body.txt:4
  4083. msgid "Please go to the following page and choose a new password:"
  4084. msgstr ""
  4085. #: templates/oscar/customer/emails/commtype_password_reset_body.html:9
  4086. #: templates/oscar/customer/emails/commtype_password_reset_body.txt:9
  4087. msgid "Thanks for using our site!"
  4088. msgstr ""
  4089. #: templates/oscar/customer/emails/commtype_password_reset_body.html:11
  4090. #: templates/oscar/customer/emails/commtype_password_reset_body.txt:11
  4091. #, python-format
  4092. msgid "The %(site_name)s team"
  4093. msgstr ""
  4094. #: templates/oscar/customer/emails/commtype_password_reset_subject.txt:1
  4095. #, python-format
  4096. msgid "Resetting your password at %(site_name)s."
  4097. msgstr ""
  4098. #: templates/oscar/customer/emails/commtype_registration_body.html:1
  4099. #: templates/oscar/customer/emails/commtype_registration_body.txt:1
  4100. #: templates/oscar/customer/emails/commtype_registration_subject.txt:1
  4101. msgid "Thank you for registering."
  4102. msgstr ""
  4103. #: templates/oscar/customer/history/recently_viewed_products.html:3
  4104. msgid "Products you recently viewed"
  4105. msgstr "最近チェックした商品"
  4106. #: templates/oscar/customer/notifications/list.html:72
  4107. msgid "With selected items:"
  4108. msgstr ""
  4109. #: templates/oscar/customer/notifications/list.html:74
  4110. msgid "Archive"
  4111. msgstr ""
  4112. #: templates/oscar/customer/notifications/list.html:84
  4113. msgid "There are no notifications to display."
  4114. msgstr ""
  4115. #: templates/oscar/dashboard/index.html:10
  4116. #: templates/oscar/dashboard/index.html:19
  4117. #: templates/oscar/dashboard/layout.html:12
  4118. #: templates/oscar/dashboard/layout.html:64
  4119. #: templates/oscar/dashboard/catalogue/category_delete.html:7
  4120. #: templates/oscar/dashboard/catalogue/category_form.html:13
  4121. #: templates/oscar/dashboard/catalogue/category_list.html:14
  4122. #: templates/oscar/dashboard/catalogue/product_list.html:14
  4123. #: templates/oscar/dashboard/catalogue/product_update.html:14
  4124. #: templates/oscar/dashboard/catalogue/stockalert_list.html:14
  4125. #: templates/oscar/dashboard/offers/offer_delete.html:12
  4126. #: templates/oscar/dashboard/offers/offer_detail.html:14
  4127. #: templates/oscar/dashboard/offers/offer_list.html:12
  4128. #: templates/oscar/dashboard/offers/step_form.html:15
  4129. #: templates/oscar/dashboard/orders/line_detail.html:14
  4130. #: templates/oscar/dashboard/orders/order_detail.html:14
  4131. #: templates/oscar/dashboard/orders/order_list.html:14
  4132. #: templates/oscar/dashboard/orders/shippingaddress_form.html:11
  4133. #: templates/oscar/dashboard/orders/statistics.html:14
  4134. #: templates/oscar/dashboard/pages/delete.html:12
  4135. #: templates/oscar/dashboard/pages/index.html:13
  4136. #: templates/oscar/dashboard/pages/update.html:13
  4137. #: templates/oscar/dashboard/promotions/delete.html:12
  4138. #: templates/oscar/dashboard/promotions/form.html:9
  4139. #: templates/oscar/dashboard/promotions/page_detail.html:13
  4140. #: templates/oscar/dashboard/promotions/pagepromotion_list.html:20
  4141. #: templates/oscar/dashboard/promotions/promotion_list.html:17
  4142. #: templates/oscar/dashboard/ranges/range_delete.html:12
  4143. #: templates/oscar/dashboard/ranges/range_form.html:15
  4144. #: templates/oscar/dashboard/ranges/range_list.html:12
  4145. #: templates/oscar/dashboard/ranges/range_product_list.html:12
  4146. #: templates/oscar/dashboard/reports/index.html:13
  4147. #: templates/oscar/dashboard/reviews/review_delete.html:12
  4148. #: templates/oscar/dashboard/reviews/review_list.html:13
  4149. #: templates/oscar/dashboard/reviews/review_update.html:14
  4150. #: templates/oscar/dashboard/users/detail.html:14
  4151. #: templates/oscar/dashboard/users/index.html:17
  4152. #: templates/oscar/dashboard/users/alerts/delete.html:13
  4153. #: templates/oscar/dashboard/users/alerts/list.html:14
  4154. #: templates/oscar/dashboard/users/alerts/update.html:13
  4155. #: templates/oscar/dashboard/vouchers/voucher_delete.html:12
  4156. #: templates/oscar/dashboard/vouchers/voucher_detail.html:12
  4157. #: templates/oscar/dashboard/vouchers/voucher_form.html:15
  4158. #: templates/oscar/dashboard/vouchers/voucher_list.html:12
  4159. #: templates/oscar/partials/nav_accounts.html:21
  4160. msgid "Dashboard"
  4161. msgstr "ダッシュボード"
  4162. #: templates/oscar/dashboard/index.html:26
  4163. msgid "Last 24 hours"
  4164. msgstr ""
  4165. #: templates/oscar/dashboard/index.html:57
  4166. msgid "Order stats for last 24 hours"
  4167. msgstr ""
  4168. #: templates/oscar/dashboard/index.html:59
  4169. #: templates/oscar/dashboard/index.html:105
  4170. #: templates/oscar/dashboard/orders/statistics.html:43
  4171. msgid "Total orders"
  4172. msgstr "全注文件数"
  4173. #: templates/oscar/dashboard/index.html:63
  4174. #: templates/oscar/dashboard/index.html:109
  4175. #: templates/oscar/dashboard/orders/statistics.html:47
  4176. msgid "Total lines"
  4177. msgstr "総商品数"
  4178. #: templates/oscar/dashboard/index.html:67
  4179. #: templates/oscar/dashboard/index.html:113
  4180. #: templates/oscar/dashboard/orders/statistics.html:51
  4181. msgid "Total revenue"
  4182. msgstr "総売上"
  4183. #: templates/oscar/dashboard/index.html:71
  4184. msgid "Average order costs"
  4185. msgstr ""
  4186. #: templates/oscar/dashboard/index.html:81
  4187. msgid "Total customers"
  4188. msgstr ""
  4189. #: templates/oscar/dashboard/index.html:85
  4190. msgid "New customers"
  4191. msgstr ""
  4192. #: templates/oscar/dashboard/index.html:89
  4193. #: templates/oscar/dashboard/index.html:117
  4194. #: templates/oscar/dashboard/orders/order_detail.html:155
  4195. msgid "Total"
  4196. msgstr ""
  4197. #: templates/oscar/dashboard/index.html:89
  4198. #: templates/oscar/dashboard/index.html:117
  4199. msgid "open"
  4200. msgstr ""
  4201. #: templates/oscar/dashboard/index.html:89
  4202. #: templates/oscar/dashboard/index.html:117
  4203. msgid "baskets"
  4204. msgstr ""
  4205. #: templates/oscar/dashboard/index.html:97
  4206. msgid "All time"
  4207. msgstr ""
  4208. #: templates/oscar/dashboard/index.html:121
  4209. msgid "Manage orders"
  4210. msgstr ""
  4211. #: templates/oscar/dashboard/index.html:126
  4212. msgid "Catalogue and stock"
  4213. msgstr ""
  4214. #: templates/oscar/dashboard/index.html:128
  4215. msgid "Total products"
  4216. msgstr ""
  4217. #: templates/oscar/dashboard/index.html:132
  4218. #: templates/oscar/dashboard/index.html:136
  4219. msgid "stock alerts"
  4220. msgstr ""
  4221. #: templates/oscar/dashboard/index.html:140
  4222. msgid "Manage catalogue"
  4223. msgstr ""
  4224. #: templates/oscar/dashboard/index.html:141
  4225. msgid "View stock alerts"
  4226. msgstr ""
  4227. #: templates/oscar/dashboard/index.html:144
  4228. msgid "Offers, vouchers and promotions"
  4229. msgstr ""
  4230. #: templates/oscar/dashboard/layout.html:25
  4231. #: templates/oscar/partials/nav_accounts.html:23
  4232. msgid "Logout"
  4233. msgstr "ログアウト"
  4234. #: templates/oscar/dashboard/layout.html:27
  4235. msgid "Login"
  4236. msgstr ""
  4237. #: templates/oscar/dashboard/catalogue/category_delete.html:14
  4238. #: templates/oscar/dashboard/catalogue/category_delete.html:20
  4239. msgid "Delete category?"
  4240. msgstr ""
  4241. #: templates/oscar/dashboard/catalogue/category_delete.html:28
  4242. #, python-format
  4243. msgid ""
  4244. "\n"
  4245. " <p>Delete category <strong>%(name)s</strong> - are you sure?</p>\n"
  4246. "\t"
  4247. msgstr ""
  4248. #: templates/oscar/dashboard/catalogue/category_form.html:7
  4249. #: templates/oscar/dashboard/catalogue/category_list.html:8
  4250. #: templates/oscar/dashboard/catalogue/category_list.html:23
  4251. msgid "Category management"
  4252. msgstr "カテゴリマネジメント"
  4253. #: templates/oscar/dashboard/catalogue/category_list.html:29
  4254. msgid "You are editing:"
  4255. msgstr "編集対象:"
  4256. #: templates/oscar/dashboard/catalogue/category_list.html:44
  4257. msgid "Number of child categories"
  4258. msgstr "子カテゴリ数"
  4259. #: templates/oscar/dashboard/catalogue/category_list.html:55
  4260. msgid "Edit category"
  4261. msgstr "カテゴリ編集"
  4262. #: templates/oscar/dashboard/catalogue/category_list.html:56
  4263. msgid "Edit children"
  4264. msgstr "子カテゴリ編集"
  4265. #: templates/oscar/dashboard/catalogue/category_list.html:57
  4266. #: templates/oscar/dashboard/catalogue/product_list.html:84
  4267. #: templates/oscar/dashboard/catalogue/product_update.html:167
  4268. #: templates/oscar/dashboard/pages/update.html:72
  4269. msgid "View on site"
  4270. msgstr "サイトで見る"
  4271. #: templates/oscar/dashboard/catalogue/category_list.html:65
  4272. msgid "Create a new category"
  4273. msgstr "新規カテゴリ追加"
  4274. #: templates/oscar/dashboard/catalogue/product_list.html:8
  4275. msgid "Catalogue management"
  4276. msgstr "カタログ管理"
  4277. #: templates/oscar/dashboard/catalogue/product_list.html:17
  4278. msgid "Product Management"
  4279. msgstr ""
  4280. #: templates/oscar/dashboard/catalogue/product_list.html:26
  4281. msgid "Search Products"
  4282. msgstr "商品検索"
  4283. #: templates/oscar/dashboard/catalogue/product_list.html:33
  4284. msgid "Create new product"
  4285. msgstr "新商品追加"
  4286. #: templates/oscar/dashboard/catalogue/product_list.html:36
  4287. msgid "Create a new product of type"
  4288. msgstr "商品タイプ追加"
  4289. #: templates/oscar/dashboard/catalogue/product_list.html:38
  4290. msgid "Choose type"
  4291. msgstr ""
  4292. #: templates/oscar/dashboard/catalogue/product_list.html:44
  4293. msgid "New Product"
  4294. msgstr "選択"
  4295. #: templates/oscar/dashboard/catalogue/product_list.html:62
  4296. msgid "Price excl. tax"
  4297. msgstr "定価(税抜)"
  4298. #: templates/oscar/dashboard/catalogue/product_list.html:63
  4299. msgid "Price incl. tax"
  4300. msgstr "定価(税込)"
  4301. #: templates/oscar/dashboard/catalogue/product_list.html:65
  4302. msgid "Number allocated"
  4303. msgstr "出荷対象数"
  4304. #: templates/oscar/dashboard/catalogue/product_update.html:36
  4305. msgid "Product Details"
  4306. msgstr ""
  4307. #: templates/oscar/dashboard/catalogue/product_update.html:119
  4308. msgid "Upload, change or remove images"
  4309. msgstr ""
  4310. #: templates/oscar/dashboard/catalogue/product_update.html:131
  4311. msgid "Stock and price information"
  4312. msgstr ""
  4313. #: templates/oscar/dashboard/catalogue/product_update.html:152
  4314. msgid "Stock levels"
  4315. msgstr ""
  4316. #: templates/oscar/dashboard/catalogue/product_update.html:164
  4317. msgid "Save Product"
  4318. msgstr ""
  4319. #: templates/oscar/dashboard/catalogue/stockalert_list.html:29
  4320. msgid "All"
  4321. msgstr ""
  4322. #: templates/oscar/dashboard/catalogue/stockalert_list.html:43
  4323. msgid "Low stock threshold"
  4324. msgstr ""
  4325. #: templates/oscar/dashboard/catalogue/stockalert_list.html:44
  4326. msgid "Current available stock"
  4327. msgstr ""
  4328. #: templates/oscar/dashboard/catalogue/stockalert_list.html:45
  4329. msgid "Date alert raised"
  4330. msgstr ""
  4331. #: templates/oscar/dashboard/catalogue/stockalert_list.html:66
  4332. msgid "No stock alerts found."
  4333. msgstr "現在ストックアラートはありません"
  4334. #: templates/oscar/dashboard/offers/offer_delete.html:6
  4335. msgid "Delete offer"
  4336. msgstr ""
  4337. #: templates/oscar/dashboard/offers/offer_delete.html:6
  4338. #: templates/oscar/dashboard/offers/offer_list.html:6
  4339. #: templates/oscar/dashboard/offers/offer_list.html:15
  4340. #: templates/oscar/dashboard/offers/step_form.html:9
  4341. msgid "Offer management"
  4342. msgstr ""
  4343. #: templates/oscar/dashboard/offers/offer_delete.html:19
  4344. #: templates/oscar/dashboard/offers/offer_delete.html:25
  4345. msgid "Delete offer?"
  4346. msgstr ""
  4347. #: templates/oscar/dashboard/offers/offer_detail.html:6
  4348. #, python-format
  4349. msgid ""
  4350. "\n"
  4351. "'%(name)s' | Offer management\n"
  4352. msgstr ""
  4353. #: templates/oscar/dashboard/offers/offer_detail.html:29
  4354. msgid "Offer details"
  4355. msgstr ""
  4356. #: templates/oscar/dashboard/offers/offer_detail.html:40
  4357. #: templates/oscar/dashboard/vouchers/voucher_detail.html:47
  4358. msgid "Number of orders"
  4359. msgstr ""
  4360. #: templates/oscar/dashboard/offers/offer_detail.html:44
  4361. #: templates/oscar/dashboard/vouchers/voucher_detail.html:52
  4362. msgid "Recent orders"
  4363. msgstr ""
  4364. #: templates/oscar/dashboard/offers/offer_detail.html:46
  4365. msgid "No orders have been placed that use this offer."
  4366. msgstr ""
  4367. #: templates/oscar/dashboard/offers/offer_detail.html:48
  4368. msgid "We show a maximum of 20 orders sorted by recency."
  4369. msgstr ""
  4370. #: templates/oscar/dashboard/offers/offer_detail.html:53
  4371. #: templates/oscar/dashboard/orders/order_detail.html:143
  4372. #: templates/oscar/dashboard/vouchers/voucher_delete.html:39
  4373. #: templates/oscar/dashboard/vouchers/voucher_detail.html:39
  4374. #: templates/oscar/dashboard/vouchers/voucher_detail.html:60
  4375. msgid "Discount"
  4376. msgstr ""
  4377. #: templates/oscar/dashboard/offers/offer_list.html:35
  4378. msgid "Create Offer"
  4379. msgstr ""
  4380. #: templates/oscar/dashboard/offers/offer_list.html:36
  4381. #: templates/oscar/dashboard/pages/index.html:35
  4382. msgid "Create"
  4383. msgstr "登録"
  4384. #: templates/oscar/dashboard/offers/offer_list.html:59
  4385. msgid "Inactive"
  4386. msgstr ""
  4387. #: templates/oscar/dashboard/offers/offer_list.html:66
  4388. msgid "Browse"
  4389. msgstr ""
  4390. #: templates/oscar/dashboard/offers/offer_list.html:67
  4391. #: templates/oscar/dashboard/vouchers/voucher_list.html:67
  4392. msgid "Stats"
  4393. msgstr ""
  4394. #: templates/oscar/dashboard/offers/offer_list.html:79
  4395. msgid "No offers found."
  4396. msgstr ""
  4397. #: templates/oscar/dashboard/offers/preview.html:20
  4398. #: templates/oscar/dashboard/offers/step_form.html:40
  4399. msgid "Back"
  4400. msgstr ""
  4401. #: templates/oscar/dashboard/orders/line_detail.html:6
  4402. #, python-format
  4403. msgid ""
  4404. "\n"
  4405. "Order %(number)s - Line #%(id)s\n"
  4406. msgstr ""
  4407. #: templates/oscar/dashboard/orders/line_detail.html:25
  4408. #, python-format
  4409. msgid "Line #%(id)s"
  4410. msgstr ""
  4411. #: templates/oscar/dashboard/orders/line_detail.html:31
  4412. #, python-format
  4413. msgid "Order #%(number)s - Line #%(id)s"
  4414. msgstr ""
  4415. #: templates/oscar/dashboard/orders/line_detail.html:39
  4416. msgid "Product details"
  4417. msgstr ""
  4418. #: templates/oscar/dashboard/orders/line_detail.html:56
  4419. msgid "Partner details"
  4420. msgstr ""
  4421. #: templates/oscar/dashboard/orders/line_detail.html:70
  4422. msgid "Shipping details"
  4423. msgstr ""
  4424. #: templates/oscar/dashboard/orders/line_detail.html:73
  4425. msgid "Partner reference number"
  4426. msgstr ""
  4427. #: templates/oscar/dashboard/orders/line_detail.html:76
  4428. msgid "Partner notes"
  4429. msgstr ""
  4430. #: templates/oscar/dashboard/orders/line_detail.html:79
  4431. msgid "Estimate dispatch date"
  4432. msgstr ""
  4433. #: templates/oscar/dashboard/orders/order_detail.html:8
  4434. #, python-format
  4435. msgid "Order %(number)s"
  4436. msgstr ""
  4437. #: templates/oscar/dashboard/orders/order_detail.html:33
  4438. msgid "Customer Information"
  4439. msgstr ""
  4440. #: templates/oscar/dashboard/orders/order_detail.html:51
  4441. msgid "Customer checked out anonymously."
  4442. msgstr ""
  4443. #: templates/oscar/dashboard/orders/order_detail.html:53
  4444. msgid "Order information"
  4445. msgstr ""
  4446. #: templates/oscar/dashboard/orders/order_detail.html:57
  4447. msgid "Order Total"
  4448. msgstr ""
  4449. #: templates/oscar/dashboard/orders/order_detail.html:69
  4450. msgid "Time of purchase"
  4451. msgstr ""
  4452. #: templates/oscar/dashboard/orders/order_detail.html:83
  4453. msgid "Order Details"
  4454. msgstr ""
  4455. #: templates/oscar/dashboard/orders/order_detail.html:93
  4456. #: templates/oscar/dashboard/orders/order_detail.html:382
  4457. msgid "Discounts"
  4458. msgstr ""
  4459. #: templates/oscar/dashboard/orders/order_detail.html:95
  4460. #: templates/oscar/dashboard/orders/order_detail.html:234
  4461. #: templates/oscar/dashboard/orders/order_detail.html:423
  4462. msgid "Notes"
  4463. msgstr ""
  4464. #: templates/oscar/dashboard/orders/order_detail.html:102
  4465. msgid "Items ordered"
  4466. msgstr ""
  4467. #: templates/oscar/dashboard/orders/order_detail.html:109
  4468. msgid "Select"
  4469. msgstr ""
  4470. #: templates/oscar/dashboard/orders/order_detail.html:114
  4471. msgid "Supplier"
  4472. msgstr ""
  4473. #: templates/oscar/dashboard/orders/order_detail.html:115
  4474. msgid "Supplier SKU"
  4475. msgstr ""
  4476. #: templates/oscar/dashboard/orders/order_detail.html:116
  4477. msgid "Est. delivery date"
  4478. msgstr ""
  4479. #: templates/oscar/dashboard/orders/order_detail.html:117
  4480. msgid "Price (before discounts)"
  4481. msgstr ""
  4482. #: templates/oscar/dashboard/orders/order_detail.html:118
  4483. #: templates/oscar/dashboard/promotions/form.html:51
  4484. #: templates/oscar/dashboard/promotions/page_detail.html:41
  4485. #: templates/oscar/dashboard/promotions/pagepromotion_list.html:46
  4486. #: templates/oscar/dashboard/promotions/promotion_list.html:43
  4487. msgid "Actions"
  4488. msgstr "アクション"
  4489. #: templates/oscar/dashboard/orders/order_detail.html:149
  4490. msgid "Shipping charge"
  4491. msgstr ""
  4492. #: templates/oscar/dashboard/orders/order_detail.html:168
  4493. msgid "Change status to"
  4494. msgstr ""
  4495. #: templates/oscar/dashboard/orders/order_detail.html:172
  4496. msgid "choose new status"
  4497. msgstr ""
  4498. #: templates/oscar/dashboard/orders/order_detail.html:183
  4499. msgid "Create shipping event"
  4500. msgstr ""
  4501. #: templates/oscar/dashboard/orders/order_detail.html:187
  4502. #: templates/oscar/dashboard/orders/order_detail.html:205
  4503. msgid "choose event type"
  4504. msgstr ""
  4505. #: templates/oscar/dashboard/orders/order_detail.html:201
  4506. msgid "Create payment event"
  4507. msgstr ""
  4508. #: templates/oscar/dashboard/orders/order_detail.html:218
  4509. #: templates/oscar/dashboard/ranges/range_product_list.html:43
  4510. #: templates/oscar/dashboard/users/index.html:79
  4511. msgid "Go!"
  4512. msgstr ""
  4513. #: templates/oscar/dashboard/orders/order_detail.html:245
  4514. #: templates/oscar/dashboard/orders/order_detail.html:282
  4515. msgid "Product:"
  4516. msgstr ""
  4517. #: templates/oscar/dashboard/orders/order_detail.html:245
  4518. #: templates/oscar/dashboard/orders/order_detail.html:282
  4519. msgid "quantity"
  4520. msgstr ""
  4521. #: templates/oscar/dashboard/orders/order_detail.html:291
  4522. msgid "No payment events."
  4523. msgstr ""
  4524. #: templates/oscar/dashboard/orders/order_detail.html:306
  4525. msgid "Charge (incl tax)"
  4526. msgstr ""
  4527. #: templates/oscar/dashboard/orders/order_detail.html:310
  4528. msgid "Charge (excl tax)"
  4529. msgstr ""
  4530. #: templates/oscar/dashboard/orders/order_detail.html:347
  4531. msgid "Allocation"
  4532. msgstr ""
  4533. #: templates/oscar/dashboard/orders/order_detail.html:348
  4534. msgid "Amount debited"
  4535. msgstr ""
  4536. #: templates/oscar/dashboard/orders/order_detail.html:349
  4537. msgid "Amount refunded"
  4538. msgstr ""
  4539. #: templates/oscar/dashboard/orders/order_detail.html:366
  4540. msgid "No payment sources"
  4541. msgstr ""
  4542. #: templates/oscar/dashboard/orders/order_detail.html:374
  4543. msgid "No transaction data available."
  4544. msgstr ""
  4545. #: templates/oscar/dashboard/orders/order_detail.html:405
  4546. msgid "No discounts were applied in this order."
  4547. msgstr ""
  4548. #: templates/oscar/dashboard/orders/order_detail.html:416
  4549. msgid "No email data available."
  4550. msgstr ""
  4551. #: templates/oscar/dashboard/orders/order_detail.html:465
  4552. msgid "Notes are only editable for 5 minutes after being saved."
  4553. msgstr ""
  4554. #: templates/oscar/dashboard/orders/order_list.html:8
  4555. #: templates/oscar/dashboard/orders/order_list.html:17
  4556. msgid "Order management"
  4557. msgstr ""
  4558. #: templates/oscar/dashboard/orders/order_list.html:47
  4559. #: templates/oscar/dashboard/orders/order_list.html:53
  4560. msgid "Advanced Search"
  4561. msgstr ""
  4562. #: templates/oscar/dashboard/orders/order_list.html:61
  4563. msgid "Close"
  4564. msgstr ""
  4565. #: templates/oscar/dashboard/orders/order_list.html:77
  4566. msgid "All Orders"
  4567. msgstr "全注文"
  4568. #: templates/oscar/dashboard/orders/order_list.html:96
  4569. msgid "Select all"
  4570. msgstr ""
  4571. #: templates/oscar/dashboard/orders/order_list.html:103
  4572. msgid "Customer"
  4573. msgstr ""
  4574. #: templates/oscar/dashboard/orders/order_list.html:127
  4575. #: templates/oscar/dashboard/orders/order_list.html:130
  4576. msgid "Download"
  4577. msgstr "ダウンロード"
  4578. #: templates/oscar/dashboard/orders/order_list.html:128
  4579. msgid "Download selected orders as a CSV"
  4580. msgstr "選択した注文内容をCSVファイルにしてダウンロードする"
  4581. #: templates/oscar/dashboard/orders/order_list.html:140
  4582. msgid "No orders found."
  4583. msgstr ""
  4584. #: templates/oscar/dashboard/orders/shippingaddress_form.html:22
  4585. msgid "Edit shipping address"
  4586. msgstr ""
  4587. #: templates/oscar/dashboard/orders/shippingaddress_form.html:28
  4588. #, python-format
  4589. msgid "Edit shipping address for order %(order.number)s"
  4590. msgstr ""
  4591. #: templates/oscar/dashboard/orders/shippingaddress_form.html:38
  4592. msgid "Update address"
  4593. msgstr ""
  4594. #: templates/oscar/dashboard/orders/statistics.html:8
  4595. msgid "Order statistics"
  4596. msgstr ""
  4597. #: templates/oscar/dashboard/orders/statistics.html:41
  4598. msgid "Summary"
  4599. msgstr "概要"
  4600. #: templates/oscar/dashboard/orders/statistics.html:58
  4601. msgid "Order status breakdown"
  4602. msgstr "注文状況内訳"
  4603. #: templates/oscar/dashboard/orders/statistics.html:61
  4604. msgid "Frequency"
  4605. msgstr "対象数"
  4606. #: templates/oscar/dashboard/orders/partials/bulk_edit_form.html:5
  4607. msgid "Print Packaging Slips"
  4608. msgstr ""
  4609. #: templates/oscar/dashboard/orders/partials/bulk_edit_form.html:9
  4610. msgid "Mark as"
  4611. msgstr ""
  4612. #: templates/oscar/dashboard/orders/partials/bulk_edit_form.html:14
  4613. #: templates/oscar/dashboard/orders/partials/bulk_edit_form.html:19
  4614. msgid "Change order status to"
  4615. msgstr ""
  4616. #: templates/oscar/dashboard/orders/partials/bulk_edit_form.html:26
  4617. msgid "Done"
  4618. msgstr ""
  4619. #: templates/oscar/dashboard/pages/delete.html:5
  4620. #: templates/oscar/dashboard/pages/delete.html:19
  4621. #: templates/oscar/dashboard/pages/delete.html:25
  4622. #, python-format
  4623. msgid "Delete page '%(title)s'?"
  4624. msgstr ""
  4625. #: templates/oscar/dashboard/pages/delete.html:33
  4626. #, python-format
  4627. msgid "Delete page <strong>%(title)s</strong> - are you sure?"
  4628. msgstr ""
  4629. #: templates/oscar/dashboard/pages/index.html:72
  4630. msgid "No pages found."
  4631. msgstr ""
  4632. #: templates/oscar/dashboard/pages/update.html:33
  4633. msgid "Page"
  4634. msgstr ""
  4635. #: templates/oscar/dashboard/promotions/delete.html:5
  4636. #: templates/oscar/dashboard/promotions/delete.html:19
  4637. #: templates/oscar/dashboard/promotions/delete.html:25
  4638. #, python-format
  4639. msgid "Delete content block '%(name)s'?\""
  4640. msgstr ""
  4641. #: templates/oscar/dashboard/promotions/delete.html:16
  4642. #: templates/oscar/dashboard/promotions/form.html:13
  4643. #: templates/oscar/dashboard/promotions/page_detail.html:17
  4644. #: templates/oscar/dashboard/promotions/promotion_list.html:8
  4645. #: templates/oscar/dashboard/promotions/promotion_list.html:20
  4646. msgid "Content blocks"
  4647. msgstr "コンテンツブロック"
  4648. #: templates/oscar/dashboard/promotions/delete.html:33
  4649. #, python-format
  4650. msgid ""
  4651. "Delete %(object.type)s content block <strong>%(object.name)s</strong> - are "
  4652. "you sure?"
  4653. msgstr ""
  4654. #: templates/oscar/dashboard/promotions/delete_pagepromotion.html:6
  4655. msgid "Remove promotion from page?"
  4656. msgstr ""
  4657. #: templates/oscar/dashboard/promotions/delete_pagepromotion.html:13
  4658. #, python-format
  4659. msgid ""
  4660. "Remove %(object.content_object.type)s content block "
  4661. "<strong>%(object.name)s</strong> from page "
  4662. "<strong>%(object.page_url)s</strong> - are you sure?"
  4663. msgstr ""
  4664. #: templates/oscar/dashboard/promotions/form.html:44
  4665. msgid "Pages displaying this content block"
  4666. msgstr ""
  4667. #: templates/oscar/dashboard/promotions/form.html:50
  4668. msgid "Position on page"
  4669. msgstr ""
  4670. #: templates/oscar/dashboard/promotions/form.html:64
  4671. msgid "View all blocks on this page"
  4672. msgstr ""
  4673. #: templates/oscar/dashboard/promotions/form.html:65
  4674. msgid "Remove from page"
  4675. msgstr ""
  4676. #: templates/oscar/dashboard/promotions/form.html:74
  4677. msgid "This promotion is not displayed anywhere at the moment."
  4678. msgstr ""
  4679. #: templates/oscar/dashboard/promotions/form.html:79
  4680. msgid "Add to a page"
  4681. msgstr ""
  4682. #: templates/oscar/dashboard/promotions/form.html:85
  4683. msgid "Add to page"
  4684. msgstr ""
  4685. #: templates/oscar/dashboard/promotions/page_detail.html:7
  4686. #: templates/oscar/dashboard/promotions/page_detail.html:26
  4687. #, python-format
  4688. msgid "Content blocks for page %(page_url)s"
  4689. msgstr ""
  4690. #: templates/oscar/dashboard/promotions/page_detail.html:20
  4691. #, python-format
  4692. msgid "Content blocks on page '%(page_url)s'"
  4693. msgstr ""
  4694. #: templates/oscar/dashboard/promotions/page_detail.html:34
  4695. #, python-format
  4696. msgid "Edit promotions in position '%(name)s'"
  4697. msgstr ""
  4698. #: templates/oscar/dashboard/promotions/page_detail.html:39
  4699. msgid "Promotion Name"
  4700. msgstr ""
  4701. #: templates/oscar/dashboard/promotions/page_detail.html:59
  4702. msgid "No promotions in this position."
  4703. msgstr ""
  4704. #: templates/oscar/dashboard/promotions/pagepromotion_list.html:9
  4705. #: templates/oscar/dashboard/promotions/pagepromotion_list.html:23
  4706. msgid "Content block management"
  4707. msgstr "コンテンツブロック管理"
  4708. #: templates/oscar/dashboard/promotions/pagepromotion_list.html:14
  4709. msgid "Pages with content blocks"
  4710. msgstr ""
  4711. #: templates/oscar/dashboard/promotions/pagepromotion_list.html:31
  4712. msgid "View all content blocks"
  4713. msgstr ""
  4714. #: templates/oscar/dashboard/promotions/pagepromotion_list.html:32
  4715. msgid "View content blocks by page"
  4716. msgstr ""
  4717. #: templates/oscar/dashboard/promotions/pagepromotion_list.html:36
  4718. msgid "Pages with content blocks on them"
  4719. msgstr ""
  4720. #: templates/oscar/dashboard/promotions/pagepromotion_list.html:45
  4721. msgid "Number of content blocks"
  4722. msgstr ""
  4723. #: templates/oscar/dashboard/promotions/pagepromotion_list.html:65
  4724. #: templates/oscar/dashboard/promotions/promotion_list.html:64
  4725. msgid "No content blocks found."
  4726. msgstr ""
  4727. #: templates/oscar/dashboard/promotions/promotion_list.html:27
  4728. msgid "Create a new content block"
  4729. msgstr "新コンテンツブロック作成"
  4730. #: templates/oscar/dashboard/promotions/promotion_list.html:30
  4731. msgid "Create block"
  4732. msgstr "ブロック作成"
  4733. #: templates/oscar/dashboard/promotions/promotion_list.html:41
  4734. msgid "Number of times used"
  4735. msgstr "利用回数"
  4736. #: templates/oscar/dashboard/ranges/range_delete.html:6
  4737. #: templates/oscar/dashboard/ranges/range_delete.html:19
  4738. #: templates/oscar/dashboard/ranges/range_delete.html:25
  4739. #, python-format
  4740. msgid "Delete range '%(name)s'?"
  4741. msgstr ""
  4742. #: templates/oscar/dashboard/ranges/range_delete.html:6
  4743. #: templates/oscar/dashboard/ranges/range_form.html:9
  4744. #: templates/oscar/dashboard/ranges/range_list.html:6
  4745. #: templates/oscar/dashboard/ranges/range_list.html:15
  4746. msgid "Range management"
  4747. msgstr ""
  4748. #: templates/oscar/dashboard/ranges/range_form.html:40
  4749. msgid "Save and edit products"
  4750. msgstr ""
  4751. #: templates/oscar/dashboard/ranges/range_list.html:25
  4752. #: templates/oscar/dashboard/ranges/range_list.html:27
  4753. msgid "Create new range"
  4754. msgstr ""
  4755. #: templates/oscar/dashboard/ranges/range_list.html:35
  4756. msgid "Num products"
  4757. msgstr ""
  4758. #: templates/oscar/dashboard/ranges/range_list.html:49
  4759. msgid "Edit products"
  4760. msgstr ""
  4761. #: templates/oscar/dashboard/ranges/range_list.html:59
  4762. msgid "No ranges found."
  4763. msgstr ""
  4764. #: templates/oscar/dashboard/ranges/range_product_list.html:6
  4765. #, python-format
  4766. msgid "Products in range '%(name)s'"
  4767. msgstr ""
  4768. #: templates/oscar/dashboard/ranges/range_product_list.html:29
  4769. #, python-format
  4770. msgid "Products in range %(range.name)s"
  4771. msgstr ""
  4772. #: templates/oscar/dashboard/ranges/range_product_list.html:37
  4773. msgid "Add products"
  4774. msgstr ""
  4775. #: templates/oscar/dashboard/ranges/range_product_list.html:48
  4776. msgid "Upload history"
  4777. msgstr ""
  4778. #: templates/oscar/dashboard/ranges/range_product_list.html:53
  4779. msgid "Filename"
  4780. msgstr ""
  4781. #: templates/oscar/dashboard/ranges/range_product_list.html:54
  4782. msgid "New products"
  4783. msgstr ""
  4784. #: templates/oscar/dashboard/ranges/range_product_list.html:55
  4785. msgid "Duplicate products"
  4786. msgstr ""
  4787. #: templates/oscar/dashboard/ranges/range_product_list.html:56
  4788. msgid "Unknown products"
  4789. msgstr ""
  4790. #: templates/oscar/dashboard/ranges/range_product_list.html:57
  4791. msgid "Date uploaded"
  4792. msgstr ""
  4793. #: templates/oscar/dashboard/ranges/range_product_list.html:87
  4794. msgid "Is product discountable?"
  4795. msgstr ""
  4796. #: templates/oscar/dashboard/ranges/range_product_list.html:100
  4797. #: templates/oscar/reviews/_vote_bit.html:8
  4798. msgid "Yes"
  4799. msgstr ""
  4800. #: templates/oscar/dashboard/ranges/range_product_list.html:100
  4801. #: templates/oscar/reviews/_vote_bit.html:13
  4802. msgid "No"
  4803. msgstr ""
  4804. #: templates/oscar/dashboard/ranges/range_product_list.html:110
  4805. msgid "Remove selected products"
  4806. msgstr ""
  4807. #: templates/oscar/dashboard/ranges/range_product_list.html:122
  4808. msgid "Edit range"
  4809. msgstr ""
  4810. #: templates/oscar/dashboard/ranges/range_product_list.html:123
  4811. msgid "return to range list"
  4812. msgstr ""
  4813. #: templates/oscar/dashboard/reports/index.html:16
  4814. msgid "Reporting Dashboard"
  4815. msgstr "リポート概要"
  4816. #: templates/oscar/dashboard/reports/index.html:22
  4817. msgid "Reporting dashboard"
  4818. msgstr "リポート概要"
  4819. #: templates/oscar/dashboard/reports/partials/offer_report.html:23
  4820. #: templates/oscar/dashboard/reports/partials/order_report.html:31
  4821. msgid "No results found."
  4822. msgstr ""
  4823. #: templates/oscar/dashboard/reports/partials/voucher_report.html:27
  4824. msgid "No vouchers were used in this period"
  4825. msgstr ""
  4826. #: templates/oscar/dashboard/reviews/review_delete.html:6
  4827. #, python-format
  4828. msgid "Delete review '%(title)s'?"
  4829. msgstr ""
  4830. #: templates/oscar/dashboard/reviews/review_delete.html:6
  4831. msgid "Review management"
  4832. msgstr ""
  4833. #: templates/oscar/dashboard/reviews/review_delete.html:19
  4834. #: templates/oscar/dashboard/reviews/review_delete.html:25
  4835. #, python-format
  4836. msgid "Delete review \"%(title)s\"?"
  4837. msgstr ""
  4838. #: templates/oscar/dashboard/reviews/review_delete.html:35
  4839. #: templates/oscar/dashboard/reviews/review_list.html:41
  4840. msgid "Review Title"
  4841. msgstr ""
  4842. #: templates/oscar/dashboard/reviews/review_delete.html:39
  4843. msgid "Votest"
  4844. msgstr ""
  4845. #: templates/oscar/dashboard/reviews/review_list.html:26
  4846. msgid "Review Search"
  4847. msgstr ""
  4848. #: templates/oscar/dashboard/reviews/review_list.html:42
  4849. msgid "Review For Product"
  4850. msgstr ""
  4851. #: templates/oscar/dashboard/reviews/review_list.html:98
  4852. msgid "Update status of selected reviews"
  4853. msgstr ""
  4854. #: templates/oscar/dashboard/reviews/review_list.html:112
  4855. msgid "No reviews found."
  4856. msgstr ""
  4857. #: templates/oscar/dashboard/reviews/review_update.html:8
  4858. msgid "Update review"
  4859. msgstr ""
  4860. #: templates/oscar/dashboard/reviews/review_update.html:21
  4861. #: templates/oscar/dashboard/reviews/review_update.html:27
  4862. #, python-format
  4863. msgid "Review #%(review.id)s"
  4864. msgstr ""
  4865. #: templates/oscar/dashboard/reviews/review_update.html:36
  4866. msgid "Review information"
  4867. msgstr ""
  4868. #: templates/oscar/dashboard/users/detail.html:8
  4869. #: templates/oscar/dashboard/users/detail.html:21
  4870. #: templates/oscar/dashboard/users/detail.html:27
  4871. #, python-format
  4872. msgid "%(email)s"
  4873. msgstr ""
  4874. #: templates/oscar/dashboard/users/detail.html:34
  4875. #: templates/oscar/dashboard/users/detail.html:59
  4876. msgid "General"
  4877. msgstr ""
  4878. #: templates/oscar/dashboard/users/detail.html:38
  4879. msgid "First name:"
  4880. msgstr ""
  4881. #: templates/oscar/dashboard/users/detail.html:39
  4882. msgid "Last name:"
  4883. msgstr ""
  4884. #: templates/oscar/dashboard/users/detail.html:42
  4885. msgid "This customer is active"
  4886. msgstr ""
  4887. #: templates/oscar/dashboard/users/detail.html:44
  4888. msgid "This customer is inactive"
  4889. msgstr ""
  4890. #: templates/oscar/dashboard/users/detail.html:48
  4891. msgid "Superuser"
  4892. msgstr ""
  4893. #: templates/oscar/dashboard/users/detail.html:55
  4894. msgid "Detailed information"
  4895. msgstr ""
  4896. #: templates/oscar/dashboard/users/detail.html:61
  4897. msgid "Last login:"
  4898. msgstr ""
  4899. #: templates/oscar/dashboard/users/detail.html:62
  4900. msgid "Date joined:"
  4901. msgstr ""
  4902. #: templates/oscar/dashboard/users/detail.html:63
  4903. msgid "Number of viewed products:"
  4904. msgstr ""
  4905. #: templates/oscar/dashboard/users/detail.html:72
  4906. msgid "Number of orders:"
  4907. msgstr ""
  4908. #: templates/oscar/dashboard/users/detail.html:73
  4909. msgid "Number of ordered items:"
  4910. msgstr ""
  4911. #: templates/oscar/dashboard/users/detail.html:74
  4912. msgid "Total spent:"
  4913. msgstr ""
  4914. #: templates/oscar/dashboard/users/detail.html:75
  4915. msgid "Date of last order:"
  4916. msgstr ""
  4917. #: templates/oscar/dashboard/users/detail.html:84
  4918. msgid "Number of reviews:"
  4919. msgstr ""
  4920. #: templates/oscar/dashboard/users/detail.html:106
  4921. msgid "Order Number"
  4922. msgstr "注文番号"
  4923. #: templates/oscar/dashboard/users/detail.html:108
  4924. msgid "Total value"
  4925. msgstr ""
  4926. #: templates/oscar/dashboard/users/detail.html:125
  4927. msgid "This customer has not placed any orders yet."
  4928. msgstr ""
  4929. #: templates/oscar/dashboard/users/detail.html:148
  4930. msgid "This customer has not saved any addresses."
  4931. msgstr ""
  4932. #: templates/oscar/dashboard/users/detail.html:177
  4933. msgid "This customer has not written any reviews yet."
  4934. msgstr ""
  4935. #: templates/oscar/dashboard/users/index.html:49
  4936. msgid "Staff status"
  4937. msgstr ""
  4938. #: templates/oscar/dashboard/users/index.html:51
  4939. msgid "Num Orders"
  4940. msgstr "注文商品数"
  4941. #: templates/oscar/dashboard/users/index.html:71
  4942. msgid "Bulk Actions"
  4943. msgstr ""
  4944. #: templates/oscar/dashboard/users/index.html:72
  4945. msgid "With selected customers:"
  4946. msgstr ""
  4947. #: templates/oscar/dashboard/users/index.html:74
  4948. msgid "Make active"
  4949. msgstr ""
  4950. #: templates/oscar/dashboard/users/index.html:77
  4951. msgid "Make inactive"
  4952. msgstr ""
  4953. #: templates/oscar/dashboard/users/index.html:86
  4954. msgid "No customers found."
  4955. msgstr ""
  4956. #: templates/oscar/dashboard/users/alerts/delete.html:7
  4957. #: templates/oscar/dashboard/users/alerts/delete.html:20
  4958. #: templates/oscar/dashboard/users/alerts/update.html:20
  4959. #, python-format
  4960. msgid "Alert #%(id)s"
  4961. msgstr ""
  4962. #: templates/oscar/dashboard/users/alerts/delete.html:17
  4963. #: templates/oscar/dashboard/users/alerts/list.html:8
  4964. #: templates/oscar/dashboard/users/alerts/list.html:18
  4965. #: templates/oscar/dashboard/users/alerts/list.html:25
  4966. #: templates/oscar/dashboard/users/alerts/update.html:17
  4967. msgid "Product alerts"
  4968. msgstr ""
  4969. #: templates/oscar/dashboard/users/alerts/delete.html:26
  4970. #, python-format
  4971. msgid "Delete alert #%(id)s?"
  4972. msgstr ""
  4973. #: templates/oscar/dashboard/users/alerts/delete.html:35
  4974. msgid "Are you sure that you want to delete this alert?"
  4975. msgstr ""
  4976. #: templates/oscar/dashboard/users/alerts/list.html:32
  4977. msgid "Search product alerts"
  4978. msgstr "商品アラート検索"
  4979. #: templates/oscar/dashboard/users/alerts/list.html:37
  4980. msgid "reset"
  4981. msgstr "リセット"
  4982. #: templates/oscar/dashboard/users/alerts/list.html:53
  4983. #: templates/oscar/dashboard/users/alerts/partials/alert.html:39
  4984. msgid "Date alert sent"
  4985. msgstr ""
  4986. #: templates/oscar/dashboard/users/alerts/list.html:65
  4987. msgid "(Anonymous)"
  4988. msgstr ""
  4989. #: templates/oscar/dashboard/users/alerts/list.html:86
  4990. msgid "No alerts found."
  4991. msgstr "アラートはありませんでした"
  4992. #: templates/oscar/dashboard/users/alerts/update.html:7
  4993. #, python-format
  4994. msgid "Update alert #%(id)s"
  4995. msgstr ""
  4996. #: templates/oscar/dashboard/users/alerts/update.html:26
  4997. #, python-format
  4998. msgid "Product alert #%(id)s"
  4999. msgstr ""
  5000. #: templates/oscar/dashboard/users/alerts/update.html:33
  5001. msgid "Change status"
  5002. msgstr ""
  5003. #: templates/oscar/dashboard/vouchers/voucher_delete.html:6
  5004. #: templates/oscar/dashboard/vouchers/voucher_delete.html:19
  5005. #: templates/oscar/dashboard/vouchers/voucher_delete.html:25
  5006. #, python-format
  5007. msgid "Delete voucher '%(name)s'?"
  5008. msgstr ""
  5009. #: templates/oscar/dashboard/vouchers/voucher_delete.html:31
  5010. msgid "Voucher details"
  5011. msgstr ""
  5012. #: templates/oscar/dashboard/vouchers/voucher_detail.html:6
  5013. #: templates/oscar/dashboard/vouchers/voucher_detail.html:19
  5014. #: templates/oscar/dashboard/vouchers/voucher_detail.html:25
  5015. #, python-format
  5016. msgid "Voucher '%(name)s'"
  5017. msgstr ""
  5018. #: templates/oscar/dashboard/vouchers/voucher_detail.html:46
  5019. msgid "Number of basket additions"
  5020. msgstr ""
  5021. #: templates/oscar/dashboard/vouchers/voucher_detail.html:54
  5022. msgid "No orders have been placed that use this voucher."
  5023. msgstr ""
  5024. #: templates/oscar/dashboard/vouchers/voucher_list.html:36
  5025. msgid "Create a new voucher"
  5026. msgstr ""
  5027. #: templates/oscar/dashboard/vouchers/voucher_list.html:38
  5028. msgid "Create new voucher"
  5029. msgstr ""
  5030. #: templates/oscar/dashboard/vouchers/voucher_list.html:53
  5031. msgid "Num baskets"
  5032. msgstr ""
  5033. #: templates/oscar/dashboard/vouchers/voucher_list.html:54
  5034. msgid "Num orders"
  5035. msgstr "注文数"
  5036. #: templates/oscar/dashboard/vouchers/voucher_list.html:76
  5037. msgid "No vouchers found."
  5038. msgstr ""
  5039. #: templates/oscar/flatpages/style_guide.html:16
  5040. msgid "Colours"
  5041. msgstr ""
  5042. #: templates/oscar/flatpages/style_guide.html:18
  5043. msgid "Hyperlinks"
  5044. msgstr ""
  5045. #: templates/oscar/offer/detail.html:31
  5046. msgid " This offer has expired "
  5047. msgstr ""
  5048. #: templates/oscar/offer/detail.html:40
  5049. msgid "What you need to do"
  5050. msgstr ""
  5051. #: templates/oscar/partials/footer.html:5
  5052. msgid "About"
  5053. msgstr ""
  5054. #: templates/oscar/partials/footer.html:6
  5055. msgid "Top of the page"
  5056. msgstr ""
  5057. #: templates/oscar/partials/nav_accounts.html:8
  5058. msgid "Welcome"
  5059. msgstr "ようこそ"
  5060. #: templates/oscar/partials/nav_accounts.html:15
  5061. msgid "Notifications"
  5062. msgstr ""
  5063. #: templates/oscar/partials/nav_alternate.html:25
  5064. #: templates/oscar/partials/nav_alternate.html:41
  5065. #: templates/oscar/partials/nav_primary.html:25
  5066. #: templates/oscar/partials/nav_primary.html:41
  5067. msgid "Browse Store"
  5068. msgstr "カテゴリへ"
  5069. #: templates/oscar/partials/nav_alternate.html:27
  5070. #: templates/oscar/partials/nav_alternate.html:43
  5071. #: templates/oscar/partials/nav_primary.html:27
  5072. #: templates/oscar/partials/nav_primary.html:43
  5073. msgid "All Products"
  5074. msgstr "全カテゴリ"
  5075. #: templates/oscar/partials/nav_alternate.html:45
  5076. #: templates/oscar/partials/nav_primary.html:45
  5077. msgid "Contains a Submenu"
  5078. msgstr ""
  5079. #: templates/oscar/partials/nav_alternate.html:47
  5080. #: templates/oscar/partials/nav_alternate.html:48
  5081. #: templates/oscar/partials/nav_alternate.html:49
  5082. #: templates/oscar/partials/nav_alternate.html:50
  5083. #: templates/oscar/partials/nav_primary.html:47
  5084. #: templates/oscar/partials/nav_primary.html:48
  5085. #: templates/oscar/partials/nav_primary.html:49
  5086. #: templates/oscar/partials/nav_primary.html:50
  5087. msgid "Submenu Link"
  5088. msgstr ""
  5089. #: templates/oscar/partials/nav_alternate.html:53
  5090. #: templates/oscar/partials/nav_primary.html:53
  5091. msgid "Go Home!"
  5092. msgstr ""
  5093. #: templates/oscar/partials/pagination.html:11
  5094. #, python-format
  5095. msgid ""
  5096. "\n"
  5097. "\t\t\t\tPage %(page_num)s of %(total_pages)s\n"
  5098. "\t\t\t"
  5099. msgstr ""
  5100. #: templates/oscar/promotions/handpickedproductlist.html:20
  5101. msgid "See more"
  5102. msgstr ""
  5103. #: templates/oscar/promotions/home.html:13
  5104. msgid "Welcome!"
  5105. msgstr ""
  5106. #: templates/oscar/promotions/singleproduct.html:44
  5107. msgid "No rating"
  5108. msgstr ""
  5109. #: templates/oscar/registration/password_reset_complete.html:4
  5110. #: templates/oscar/registration/password_reset_complete.html:12
  5111. #: templates/oscar/registration/password_reset_complete.html:17
  5112. msgid "Password reset complete"
  5113. msgstr ""
  5114. #: templates/oscar/registration/password_reset_complete.html:18
  5115. msgid "Your password has been set. You may go ahead and log in now."
  5116. msgstr ""
  5117. #: templates/oscar/registration/password_reset_complete.html:19
  5118. msgid "Log in"
  5119. msgstr ""
  5120. #: templates/oscar/registration/password_reset_confirm.html:4
  5121. msgid "Password reset confirm"
  5122. msgstr ""
  5123. #: templates/oscar/registration/password_reset_confirm.html:12
  5124. #: templates/oscar/registration/password_reset_confirm.html:20
  5125. msgid "Enter new password"
  5126. msgstr ""
  5127. #: templates/oscar/registration/password_reset_confirm.html:22
  5128. msgid ""
  5129. "Please enter your new password twice so we can verify you typed it in "
  5130. "correctly."
  5131. msgstr ""
  5132. #: templates/oscar/registration/password_reset_confirm.html:26
  5133. msgid "New password:"
  5134. msgstr ""
  5135. #: templates/oscar/registration/password_reset_confirm.html:28
  5136. msgid "Confirm password:"
  5137. msgstr ""
  5138. #: templates/oscar/registration/password_reset_confirm.html:29
  5139. msgid "Change my password"
  5140. msgstr ""
  5141. #: templates/oscar/registration/password_reset_confirm.html:34
  5142. msgid "Password reset unsuccessful"
  5143. msgstr ""
  5144. #: templates/oscar/registration/password_reset_confirm.html:36
  5145. msgid ""
  5146. "The password reset link was invalid, possibly because it has already been "
  5147. "used. Please request a new password reset."
  5148. msgstr ""
  5149. #: templates/oscar/registration/password_reset_done.html:4
  5150. #: templates/oscar/registration/password_reset_done.html:18
  5151. msgid "Password reset successful"
  5152. msgstr ""
  5153. #: templates/oscar/registration/password_reset_done.html:12
  5154. msgid "Password reset sent"
  5155. msgstr ""
  5156. #: templates/oscar/registration/password_reset_done.html:19
  5157. msgid ""
  5158. "We've e-mailed you instructions for setting your password to the e-mail "
  5159. "address you submitted. You should be receiving it shortly."
  5160. msgstr ""
  5161. #: templates/oscar/registration/password_reset_form.html:4
  5162. #: templates/oscar/registration/password_reset_form.html:12
  5163. #: templates/oscar/registration/password_reset_form.html:19
  5164. msgid "Password reset"
  5165. msgstr ""
  5166. #: templates/oscar/registration/password_reset_form.html:25
  5167. msgid ""
  5168. "Forgotten your password? Enter your e-mail address below, and we'll e-mail "
  5169. "instructions for setting a new one."
  5170. msgstr ""
  5171. #: templates/oscar/registration/password_reset_form.html:28
  5172. msgid "E-mail address:"
  5173. msgstr ""
  5174. #: templates/oscar/registration/password_reset_form.html:40
  5175. msgid "Reset my password"
  5176. msgstr ""
  5177. #: templates/oscar/registration/password_reset_subject.txt:1
  5178. #, python-format
  5179. msgid "Password reset on %(site_name)s"
  5180. msgstr ""
  5181. #: templates/oscar/reviews/_vote_bit.html:4
  5182. msgid "Is this review helpful?"
  5183. msgstr ""
  5184. #: templates/oscar/reviews/add_review.html:8
  5185. msgid "Leave a product review"
  5186. msgstr ""
  5187. #: templates/oscar/reviews/add_review.html:12
  5188. msgid "Submit"
  5189. msgstr ""
  5190. #: templates/oscar/reviews/review.html:7
  5191. msgid "Score:"
  5192. msgstr ""
  5193. #: templates/oscar/reviews/review.html:8
  5194. msgid "Comments:"
  5195. msgstr ""
  5196. #: templates/oscar/reviews/reviews.html:8
  5197. msgid "Reviews for"
  5198. msgstr ""
  5199. #: templates/oscar/reviews/reviews.html:23
  5200. msgid "Reviews of"
  5201. msgstr ""
  5202. #: templates/oscar/reviews/reviews.html:39
  5203. msgid "Add a review"
  5204. msgstr ""
  5205. #: templates/oscar/reviews/reviews.html:42
  5206. msgid "Sort by:"
  5207. msgstr ""
  5208. #: templates/oscar/reviews/reviews.html:46
  5209. msgid "Recency"
  5210. msgstr ""
  5211. #: templates/oscar/reviews/reviews.html:60
  5212. #, python-format
  5213. msgid ""
  5214. "\n"
  5215. "\t\t\t\t\t1 customer agreed.\n"
  5216. "\t\t\t\t\t"
  5217. msgid_plural ""
  5218. "\n"
  5219. "\t\t\t\t\t%(review.num_up_votes)s customers agreed.\n"
  5220. "\t\t\t\t\t"
  5221. msgstr[0] ""
  5222. msgstr[1] ""
  5223. #: templates/oscar/reviews/reviews.html:78
  5224. #, python-format
  5225. msgid ""
  5226. "\n"
  5227. " Page %(page_obj.number)s of %(paginator.num_pages)s.\n"
  5228. "\t\t\t\t\t\t"
  5229. msgstr ""
  5230. #: templates/oscar/search/results.html:20
  5231. #, python-format
  5232. msgid "\"%(q)s\""
  5233. msgstr ""
  5234. #: templates/oscar/search/results.html:26
  5235. msgid "Search for"
  5236. msgstr "検索結果"
  5237. #: templates/oscar/search/results.html:33
  5238. msgid "Did you mean"
  5239. msgstr ""
  5240. #: templates/oscar/search/results.html:43
  5241. msgid "No search results found."
  5242. msgstr ""
  5243. #: views/decorators.py:32
  5244. msgid "You must log in to access this page"
  5245. msgstr ""
  5246. #: views/generic.py:25
  5247. msgid "Invalid form submission"
  5248. msgstr ""
  5249. #: views/generic.py:75
  5250. #, python-format
  5251. msgid "You need to select some %ss"
  5252. msgstr ""